This file is indexed.

/usr/include/GNUstep/GDLAccess/EOFaultHandler.h is in libsope-dev 3.2.6-1.

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
// $Id: EOFaultHandler.h 1 2004-08-20 10:38:46Z znek $

#ifndef __EOFaultHandler_h__
#define __EOFaultHandler_h__

#import <Foundation/NSObject.h>

@class NSInvocation, NSMethodSignature;
@class EOFault;

@interface EOFaultHandler : NSObject
{
@public
  int     faultReferences;
  void    *extraData;   /* saved ivars overridden by 'faultHandler' ivar */
  Class   targetClass;
  NSZone  *zone;
}

- (Class)targetClass;
- (void *)extraData;
- (void)setTargetClass:(Class)_class extraData:(void *)_extraData;

/* firing */

- (BOOL)shouldPerformInvocation:(NSInvocation *)_invocation;
- (void)faultWillFire:(EOFault *)_fault;
- (void)completeInitializationOfObject:(id)_object;

/* fault reflection */

- (Class)classForFault:(EOFault *)_fault;
- (BOOL)respondsToSelector:(SEL)_selector forFault:(EOFault *)_fault;
- (BOOL)conformsToProtocol:(Protocol *)_protocol forFault:(EOFault *)_fault;
- (BOOL)isKindOfClass:(Class)_class forFault:(EOFault *)_fault;
- (BOOL)isMemberOfClass:(Class)_class forFault:(EOFault *)_fault;

- (NSMethodSignature *)methodSignatureForSelector:(SEL)_selector
  forFault:(EOFault *)_fault;

/* description */

- (NSString *)descriptionForObject:(id)_fault;

@end /* EOFaultHandler */

#endif /* __EOFaultHandler_h__ */