This file is indexed.

/usr/include/GNUstep/GDLAccess/EOFault.h is in libsope-dev 3.2.10-1build1.

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

#ifndef __EOFault_h__
#define __EOFault_h__

#import <Foundation/NSObject.h>

@class NSArray, NSDictionary, NSString, NSMethodSignature;

@class EOFaultHandler;

#ifndef __has_attribute
#define __has_attribute(x) 0
#endif

#if __has_attribute(objc_root_class)
__attribute__((objc_root_class))
#endif
@interface EOFault
{
  Class          isa;
  EOFaultHandler *faultResolver;
}

+ (void)makeObjectIntoFault:(id)_object withHandler:(EOFaultHandler *)_handler;
+ (EOFaultHandler *)handlerForFault:(id)_fault;

/* Inquire about a fault */

+ (BOOL)isFault:(id)object;
+ (BOOL)isFault;
- (BOOL)isFault;
+ (void)clearFault:(id)fault;

+ (Class)targetClassForFault:fault;

/* Non-Faulting Instance methods */

- (Class)superclass;
- (Class)class;
+ (Class)class;
- (BOOL)isKindOfClass:(Class)aClass;
- (BOOL)isMemberOfClass:(Class)aClass;
- (BOOL)conformsToProtocol:(Protocol *)aProtocol;
- (BOOL)respondsToSelector:(SEL)aSelector;

+ (id)self;

- (void)dealloc;
- retain;
- (void)release;
- autorelease;
- (NSUInteger)retainCount;
- (NSZone*)zone;

- (BOOL)isProxy;
- (BOOL)isGarbageCollectable;
- (NSString *)description;

- (NSMethodSignature *)methodSignatureForSelector:(SEL)_selector;

@end /* EOFault */

#include <GDLAccess/EOFaultHandler.h>

#endif  /* __EOFault_h__ */