This file is indexed.

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

#include <glib.h>

G_BEGIN_DECLS

CORBA_Environment *CORBA_exception__alloc (void);
CORBA_Environment *CORBA_exception__copy  (const CORBA_Environment *ev);

void               CORBA_exception_set    (CORBA_Environment    *ev,
					   CORBA_exception_type  major,
					   const CORBA_char     *except_repos_id,
					   void                 *param);

CORBA_char        *CORBA_exception_id     (CORBA_Environment *ev);
void              *CORBA_exception_value  (CORBA_Environment *ev);
void               CORBA_exception_init   (CORBA_Environment *ev);
void               CORBA_exception_free   (CORBA_Environment *ev);
CORBA_any         *CORBA_exception_as_any (CORBA_Environment *ev);

void           CORBA_exception_set_system (CORBA_Environment       *ev,
					   const CORBA_char        *except_repos_id,
					   CORBA_completion_status  completed);

#ifdef ORBIT2_INTERNAL_API

typedef struct {
	const CORBA_TypeCode tc;

	void (*marshal) (GIOPSendBuffer *, CORBA_Environment *);
} ORBit_exception_marshal_info;

typedef struct {
	const CORBA_TypeCode tc;

	void (*demarshal) (GIOPRecvBuffer *, CORBA_Environment *);
} ORBit_exception_demarshal_info;

void ORBit_handle_system_exception (CORBA_Environment       *ev,
				    const CORBA_char        *nom,
				    CORBA_completion_status  status,
				    GIOPRecvBuffer          *buf,
				    GIOPSendBuffer          *sendbuf);

void ORBit_handle_exception        (GIOPRecvBuffer    *buf,
				    CORBA_Environment *ev,
				    const ORBit_exception_demarshal_info *ex_info,
				    CORBA_ORB          orb);
GIOPConnection *
     ORBit_handle_location_forward (GIOPRecvBuffer *buf,
				    CORBA_Object   obj);

void ORBit_send_system_exception   (GIOPSendBuffer    *buf,
				    CORBA_Environment *ev);

void ORBit_send_user_exception     (GIOPSendBuffer    *send_buffer,
				    CORBA_Environment *ev,
				    const ORBit_exception_marshal_info *user_exceptions);

#endif /* ORBIT2_INTERNAL_API */

G_END_DECLS

#endif