This file is indexed.

/usr/include/thunderbird/nsIImportABDescriptor.h is in thunderbird-dev 1:52.8.0-1~deb8u1.

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
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/nsIImportABDescriptor.idl
 */

#ifndef __gen_nsIImportABDescriptor_h__
#define __gen_nsIImportABDescriptor_h__


#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif

/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIFile; /* forward declaration */


/* starting interface:    nsIImportABDescriptor */
#define NS_IIMPORTABDESCRIPTOR_IID_STR "2d8983b2-cea6-4ae2-9145-eb772481fa18"

#define NS_IIMPORTABDESCRIPTOR_IID \
  {0x2d8983b2, 0xcea6, 0x4ae2, \
    { 0x91, 0x45, 0xeb, 0x77, 0x24, 0x81, 0xfa, 0x18 }}

class NS_NO_VTABLE nsIImportABDescriptor : public nsISupports {
 public:

  NS_DECLARE_STATIC_IID_ACCESSOR(NS_IIMPORTABDESCRIPTOR_IID)

  /* attribute unsigned long identifier; */
  NS_IMETHOD GetIdentifier(uint32_t *aIdentifier) = 0;
  NS_IMETHOD SetIdentifier(uint32_t aIdentifier) = 0;

  /* attribute unsigned long ref; */
  NS_IMETHOD GetRef(uint32_t *aRef) = 0;
  NS_IMETHOD SetRef(uint32_t aRef) = 0;

  /* attribute unsigned long size; */
  NS_IMETHOD GetSize(uint32_t *aSize) = 0;
  NS_IMETHOD SetSize(uint32_t aSize) = 0;

  /* attribute AString preferredName; */
  NS_IMETHOD GetPreferredName(nsAString & aPreferredName) = 0;
  NS_IMETHOD SetPreferredName(const nsAString & aPreferredName) = 0;

  /* attribute nsIFile abFile; */
  NS_IMETHOD GetAbFile(nsIFile * *aAbFile) = 0;
  NS_IMETHOD SetAbFile(nsIFile *aAbFile) = 0;

  /* attribute boolean import; */
  NS_IMETHOD GetImport(bool *aImport) = 0;
  NS_IMETHOD SetImport(bool aImport) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(nsIImportABDescriptor, NS_IIMPORTABDESCRIPTOR_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIIMPORTABDESCRIPTOR \
  NS_IMETHOD GetIdentifier(uint32_t *aIdentifier) override; \
  NS_IMETHOD SetIdentifier(uint32_t aIdentifier) override; \
  NS_IMETHOD GetRef(uint32_t *aRef) override; \
  NS_IMETHOD SetRef(uint32_t aRef) override; \
  NS_IMETHOD GetSize(uint32_t *aSize) override; \
  NS_IMETHOD SetSize(uint32_t aSize) override; \
  NS_IMETHOD GetPreferredName(nsAString & aPreferredName) override; \
  NS_IMETHOD SetPreferredName(const nsAString & aPreferredName) override; \
  NS_IMETHOD GetAbFile(nsIFile * *aAbFile) override; \
  NS_IMETHOD SetAbFile(nsIFile *aAbFile) override; \
  NS_IMETHOD GetImport(bool *aImport) override; \
  NS_IMETHOD SetImport(bool aImport) override; 

/* Use this macro when declaring the members of this interface when the
   class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_NSIIMPORTABDESCRIPTOR \
  NS_METHOD GetIdentifier(uint32_t *aIdentifier); \
  NS_METHOD SetIdentifier(uint32_t aIdentifier); \
  NS_METHOD GetRef(uint32_t *aRef); \
  NS_METHOD SetRef(uint32_t aRef); \
  NS_METHOD GetSize(uint32_t *aSize); \
  NS_METHOD SetSize(uint32_t aSize); \
  NS_METHOD GetPreferredName(nsAString & aPreferredName); \
  NS_METHOD SetPreferredName(const nsAString & aPreferredName); \
  NS_METHOD GetAbFile(nsIFile * *aAbFile); \
  NS_METHOD SetAbFile(nsIFile *aAbFile); \
  NS_METHOD GetImport(bool *aImport); \
  NS_METHOD SetImport(bool aImport); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIIMPORTABDESCRIPTOR(_to) \
  NS_IMETHOD GetIdentifier(uint32_t *aIdentifier) override { return _to GetIdentifier(aIdentifier); } \
  NS_IMETHOD SetIdentifier(uint32_t aIdentifier) override { return _to SetIdentifier(aIdentifier); } \
  NS_IMETHOD GetRef(uint32_t *aRef) override { return _to GetRef(aRef); } \
  NS_IMETHOD SetRef(uint32_t aRef) override { return _to SetRef(aRef); } \
  NS_IMETHOD GetSize(uint32_t *aSize) override { return _to GetSize(aSize); } \
  NS_IMETHOD SetSize(uint32_t aSize) override { return _to SetSize(aSize); } \
  NS_IMETHOD GetPreferredName(nsAString & aPreferredName) override { return _to GetPreferredName(aPreferredName); } \
  NS_IMETHOD SetPreferredName(const nsAString & aPreferredName) override { return _to SetPreferredName(aPreferredName); } \
  NS_IMETHOD GetAbFile(nsIFile * *aAbFile) override { return _to GetAbFile(aAbFile); } \
  NS_IMETHOD SetAbFile(nsIFile *aAbFile) override { return _to SetAbFile(aAbFile); } \
  NS_IMETHOD GetImport(bool *aImport) override { return _to GetImport(aImport); } \
  NS_IMETHOD SetImport(bool aImport) override { return _to SetImport(aImport); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIIMPORTABDESCRIPTOR(_to) \
  NS_IMETHOD GetIdentifier(uint32_t *aIdentifier) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIdentifier(aIdentifier); } \
  NS_IMETHOD SetIdentifier(uint32_t aIdentifier) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetIdentifier(aIdentifier); } \
  NS_IMETHOD GetRef(uint32_t *aRef) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRef(aRef); } \
  NS_IMETHOD SetRef(uint32_t aRef) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetRef(aRef); } \
  NS_IMETHOD GetSize(uint32_t *aSize) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSize(aSize); } \
  NS_IMETHOD SetSize(uint32_t aSize) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSize(aSize); } \
  NS_IMETHOD GetPreferredName(nsAString & aPreferredName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPreferredName(aPreferredName); } \
  NS_IMETHOD SetPreferredName(const nsAString & aPreferredName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPreferredName(aPreferredName); } \
  NS_IMETHOD GetAbFile(nsIFile * *aAbFile) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAbFile(aAbFile); } \
  NS_IMETHOD SetAbFile(nsIFile *aAbFile) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetAbFile(aAbFile); } \
  NS_IMETHOD GetImport(bool *aImport) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetImport(aImport); } \
  NS_IMETHOD SetImport(bool aImport) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetImport(aImport); } 

#if 0
/* Use the code below as a template for the implementation class for this interface. */

/* Header file */
class nsImportABDescriptor : public nsIImportABDescriptor
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIIMPORTABDESCRIPTOR

  nsImportABDescriptor();

private:
  ~nsImportABDescriptor();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS(nsImportABDescriptor, nsIImportABDescriptor)

nsImportABDescriptor::nsImportABDescriptor()
{
  /* member initializers and constructor code */
}

nsImportABDescriptor::~nsImportABDescriptor()
{
  /* destructor code */
}

/* attribute unsigned long identifier; */
NS_IMETHODIMP nsImportABDescriptor::GetIdentifier(uint32_t *aIdentifier)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsImportABDescriptor::SetIdentifier(uint32_t aIdentifier)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute unsigned long ref; */
NS_IMETHODIMP nsImportABDescriptor::GetRef(uint32_t *aRef)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsImportABDescriptor::SetRef(uint32_t aRef)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute unsigned long size; */
NS_IMETHODIMP nsImportABDescriptor::GetSize(uint32_t *aSize)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsImportABDescriptor::SetSize(uint32_t aSize)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute AString preferredName; */
NS_IMETHODIMP nsImportABDescriptor::GetPreferredName(nsAString & aPreferredName)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsImportABDescriptor::SetPreferredName(const nsAString & aPreferredName)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute nsIFile abFile; */
NS_IMETHODIMP nsImportABDescriptor::GetAbFile(nsIFile * *aAbFile)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsImportABDescriptor::SetAbFile(nsIFile *aAbFile)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute boolean import; */
NS_IMETHODIMP nsImportABDescriptor::GetImport(bool *aImport)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsImportABDescriptor::SetImport(bool aImport)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* End of implementation class template. */
#endif


#endif /* __gen_nsIImportABDescriptor_h__ */