This file is indexed.

/usr/include/orbit-2.0/orbit/poa/poa-basics.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#ifndef _POA_BASICS_H_
#define _POA_BASICS_H_ 1

#include <glib.h>

G_BEGIN_DECLS

#if !defined(_PortableServer_Servant_defined)
#define _PortableServer_Servant_defined 1
	typedef gpointer PortableServer_Servant;
#else
#error "Include mixup: poa-defs.h included before poa-basics.h"
#endif

#if !defined(ORBIT_DECL_PortableServer_POA) && !defined(_PortableServer_POA_defined)
#define ORBIT_DECL_PortableServer_POA 1
#define _PortableServer_POA_defined 1
	typedef struct PortableServer_POA_type *PortableServer_POA;
#endif

typedef struct {
	void                *_private;
	void               (*finalize)      (PortableServer_Servant,
					     CORBA_Environment *);
	PortableServer_POA (*default_POA)   (PortableServer_Servant,
					     CORBA_Environment *);
	void               (*add_ref)       (PortableServer_Servant,
					     CORBA_Environment *);
	void               (*remove_ref)    (PortableServer_Servant,
					     CORBA_Environment *);
	CORBA_InterfaceDef (*get_interface) (PortableServer_Servant,
                                             CORBA_Environment *);
	CORBA_boolean      (*is_a)          (PortableServer_Servant,
					     const char *,
					     CORBA_Environment *);
	CORBA_boolean      (*non_existent)  (PortableServer_Servant,
					     CORBA_Environment *);
} PortableServer_ServantBase__epv;

typedef PortableServer_ServantBase__epv *PortableServer_ServantBase__vepv;

typedef struct {
	void                             *_private;
	PortableServer_ServantBase__vepv *vepv;
} PortableServer_ServantBase;

typedef PortableServer_ServantBase__epv  PortableServer_RefCountServantBase__epv;
typedef PortableServer_ServantBase__epv *PortableServer_RefCountServantBase__vepv;
typedef PortableServer_ServantBase       PortableServer_RefCountServantBase;

#if defined(ORBIT2_INTERNAL_API) || defined (ORBIT2_STUBS_API)

typedef struct ORBit_POAObject_type *ORBit_POAObject;
typedef struct ORBit_OAObject_type  *ORBit_OAObject;

typedef gshort ORBit_VepvIdx;

typedef void               (*ORBitSmallSkeleton) (PortableServer_ServantBase *servant,
						  gpointer                    ret,
						  gpointer                   *args,
						  gpointer                    ctx,
						  CORBA_Environment          *ev,
						  gpointer                    implementation);

typedef ORBitSmallSkeleton (*ORBit_impl_finder)
						 (PortableServer_ServantBase *servant,
						  const char                 *method,
						  gpointer                   *m_data,
						  gpointer                   *implementation);
/* stub compatibility */
typedef ORBit_impl_finder ORBit_small_impl_finder;

#endif /* defined(ORBIT2_INTERNAL_API) || defined (ORBIT2_STUBS_API) */

G_END_DECLS

#endif /* _POA_BASICS_H_ 1 */