This file is indexed.

/usr/include/orbit-2.0/orbit/orb-core/corba-any.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
#ifndef CORBA_ANY_H
#define CORBA_ANY_H 1

#include <glib.h>

G_BEGIN_DECLS

void       CORBA_any__copy     (CORBA_any       *out,
				const CORBA_any *in);
CORBA_any *CORBA_any__alloc    (void);

#define    CORBA_any_alloc     CORBA_any__alloc

gpointer   CORBA_any__freekids (gpointer mem,
				gpointer data);

#define CORBA_any_set_release(a, r) (a)->_release = r
#define CORBA_any_get_release(a)    (a)->_release

gpointer ORBit_copy_value       (gconstpointer  value,
				 CORBA_TypeCode tc);

CORBA_boolean
	 ORBit_any_equivalent   (CORBA_any         *obj,
				 CORBA_any         *any,
				 CORBA_Environment *ev);

#ifdef ORBIT2_INTERNAL_API

void     ORBit_marshal_arg      (GIOPSendBuffer *buf,
				 gconstpointer   val,
				 CORBA_TypeCode  tc);

void     ORBit_marshal_any      (GIOPSendBuffer  *buf,
				 const CORBA_any *val);

gpointer ORBit_demarshal_arg    (GIOPRecvBuffer *buf,
				 CORBA_TypeCode  tc,
				 CORBA_ORB       orb);

gboolean ORBit_demarshal_any    (GIOPRecvBuffer *buf,
				 CORBA_any      *retval,
				 CORBA_ORB       orb);

gboolean ORBit_demarshal_value  (CORBA_TypeCode  tc,
				 gpointer       *val,
				 GIOPRecvBuffer *buf,
				 CORBA_ORB       orb);

void     ORBit_marshal_value    (GIOPSendBuffer *buf,
				 gconstpointer  *val,
				 CORBA_TypeCode  tc);

CORBA_boolean
	 ORBit_value_equivalent (gpointer          *a,
				 gpointer          *b,
				 CORBA_TypeCode     tc,
				 CORBA_Environment *ev);

size_t  ORBit_gather_alloc_info (CORBA_TypeCode tc);

#endif /* ORBIT2_INTERNAL_API */

G_END_DECLS

#endif