This file is indexed.

/usr/include/orbit-2.0/orbit/orb-core/orb-types.h is in liborbit2-dev 1:2.14.19-0.3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#ifndef ORB_TYPES_H
#define ORB_TYPES_H 1

#include <orbit/orbit-config.h>

G_BEGIN_DECLS

/*
 * The ORBIT_ALIGNOF_ defines are generated by configure
 * and reside in orbit/orbit-config.h
 *
 * Here the alignment of complex types is computed.
 */

/* alignment of the CORBA_any struct. */
#define ORBIT_ALIGNOF_CORBA_ANY    MAX(     ORBIT_ALIGNOF_CORBA_STRUCT,  \
					    ORBIT_ALIGNOF_CORBA_POINTER)

/* alignment of CORBA_any._value.     */
#define ORBIT_ALIGNOF_CORBA_TCVAL  MAX(MAX( ORBIT_ALIGNOF_CORBA_LONG,    \
					    ORBIT_ALIGNOF_CORBA_STRUCT), \
					    ORBIT_ALIGNOF_CORBA_POINTER)
/* alignment of sequence structures.  */
#define ORBIT_ALIGNOF_CORBA_SEQ    MAX(MAX( ORBIT_ALIGNOF_CORBA_STRUCT,  \
					    ORBIT_ALIGNOF_CORBA_LONG),   \
					    ORBIT_ALIGNOF_CORBA_POINTER)

/* alignment of CORBA_fixed_d_s */
#define ORBIT_ALIGNOF_CORBA_FIXED  MAX (    ORBIT_ALIGNOF_CORBA_SHORT,   \
					    ORBIT_ALIGNOF_CORBA_STRUCT);

/* typedef CORBA_char              *CORBA_ORBid; */
typedef struct CORBA_any_struct  CORBA_any;

typedef struct {
        CORBA_unsigned_short _digits;
        CORBA_short _scale;
        signed char _sign;
        signed char _value[1];
} CORBA_fixed_d_s;

struct CORBA_NVList_type {
	CORBA_unsigned_long flags; /* should be CORBA_Flags */
	GArray *list;
};

#define CORBA_OBJECT_NIL NULL

#define CORBA_ARG_IN (1<<0)
#define CORBA_ARG_OUT (1<<1)
#define CORBA_ARG_INOUT (1<<2)
#define CORBA_CTX_RESTRICT_SCOPE (1<<3)
#define CORBA_CTX_DELETE_DESCENDENTS (1<<4)
#define CORBA_OUT_LIST_MEMORY (1<<5)
#define CORBA_IN_COPY_VALUE (1<<6)
#define CORBA_DEPENDENT_LIST (1<<7)
#define CORBA_INV_NO_RESPONSE (1<<8)
#define CORBA_INV_TERM_ON_ERROR (1<<9)
#define CORBA_RESP_NO_WAIT (1<<10)

G_END_DECLS

#endif