This file is indexed.

/usr/include/thunderbird-11.0.1/nsIImapHeaderXferInfo.h is in thunderbird-dev 11.0.1+build1-0ubuntu2.

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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM /build/buildd/thunderbird-11.0.1+build1/build-tree/mozilla/mailnews/imap/public/nsIImapHeaderXferInfo.idl
 */

#ifndef __gen_nsIImapHeaderXferInfo_h__
#define __gen_nsIImapHeaderXferInfo_h__


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

#ifndef __gen_MailNewsTypes2_h__
#include "MailNewsTypes2.h"
#endif

/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif

/* starting interface:    nsIImapHeaderInfo */
#define NS_IIMAPHEADERINFO_IID_STR "38f8f784-b092-11d6-ba4b-00108335942a"

#define NS_IIMAPHEADERINFO_IID \
  {0x38f8f784, 0xb092, 0x11d6, \
    { 0xba, 0x4b, 0x00, 0x10, 0x83, 0x35, 0x94, 0x2a }}

class NS_NO_VTABLE NS_SCRIPTABLE nsIImapHeaderInfo : public nsISupports {
 public: 

  NS_DECLARE_STATIC_IID_ACCESSOR(NS_IIMAPHEADERINFO_IID)

  /* attribute nsMsgKey msgUid; */
  NS_SCRIPTABLE NS_IMETHOD GetMsgUid(nsMsgKey *aMsgUid) = 0;
  NS_SCRIPTABLE NS_IMETHOD SetMsgUid(nsMsgKey aMsgUid) = 0;

  /* attribute long msgSize; */
  NS_SCRIPTABLE NS_IMETHOD GetMsgSize(PRInt32 *aMsgSize) = 0;
  NS_SCRIPTABLE NS_IMETHOD SetMsgSize(PRInt32 aMsgSize) = 0;

  /* [noscript] void getMsgHdrs ([shared] out string aMsgHdrs); */
  NS_IMETHOD GetMsgHdrs(const char * *aMsgHdrs NS_OUTPARAM) = 0;

  /* void cacheLine (in string line, in unsigned long uid); */
  NS_SCRIPTABLE NS_IMETHOD CacheLine(const char * line, PRUint32 uid) = 0;

  /* void resetCache (); */
  NS_SCRIPTABLE NS_IMETHOD ResetCache(void) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(nsIImapHeaderInfo, NS_IIMAPHEADERINFO_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIIMAPHEADERINFO \
  NS_SCRIPTABLE NS_IMETHOD GetMsgUid(nsMsgKey *aMsgUid); \
  NS_SCRIPTABLE NS_IMETHOD SetMsgUid(nsMsgKey aMsgUid); \
  NS_SCRIPTABLE NS_IMETHOD GetMsgSize(PRInt32 *aMsgSize); \
  NS_SCRIPTABLE NS_IMETHOD SetMsgSize(PRInt32 aMsgSize); \
  NS_IMETHOD GetMsgHdrs(const char * *aMsgHdrs NS_OUTPARAM); \
  NS_SCRIPTABLE NS_IMETHOD CacheLine(const char * line, PRUint32 uid); \
  NS_SCRIPTABLE NS_IMETHOD ResetCache(void); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIIMAPHEADERINFO(_to) \
  NS_SCRIPTABLE NS_IMETHOD GetMsgUid(nsMsgKey *aMsgUid) { return _to GetMsgUid(aMsgUid); } \
  NS_SCRIPTABLE NS_IMETHOD SetMsgUid(nsMsgKey aMsgUid) { return _to SetMsgUid(aMsgUid); } \
  NS_SCRIPTABLE NS_IMETHOD GetMsgSize(PRInt32 *aMsgSize) { return _to GetMsgSize(aMsgSize); } \
  NS_SCRIPTABLE NS_IMETHOD SetMsgSize(PRInt32 aMsgSize) { return _to SetMsgSize(aMsgSize); } \
  NS_IMETHOD GetMsgHdrs(const char * *aMsgHdrs NS_OUTPARAM) { return _to GetMsgHdrs(aMsgHdrs); } \
  NS_SCRIPTABLE NS_IMETHOD CacheLine(const char * line, PRUint32 uid) { return _to CacheLine(line, uid); } \
  NS_SCRIPTABLE NS_IMETHOD ResetCache(void) { return _to ResetCache(); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIIMAPHEADERINFO(_to) \
  NS_SCRIPTABLE NS_IMETHOD GetMsgUid(nsMsgKey *aMsgUid) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMsgUid(aMsgUid); } \
  NS_SCRIPTABLE NS_IMETHOD SetMsgUid(nsMsgKey aMsgUid) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMsgUid(aMsgUid); } \
  NS_SCRIPTABLE NS_IMETHOD GetMsgSize(PRInt32 *aMsgSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMsgSize(aMsgSize); } \
  NS_SCRIPTABLE NS_IMETHOD SetMsgSize(PRInt32 aMsgSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMsgSize(aMsgSize); } \
  NS_IMETHOD GetMsgHdrs(const char * *aMsgHdrs NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMsgHdrs(aMsgHdrs); } \
  NS_SCRIPTABLE NS_IMETHOD CacheLine(const char * line, PRUint32 uid) { return !_to ? NS_ERROR_NULL_POINTER : _to->CacheLine(line, uid); } \
  NS_SCRIPTABLE NS_IMETHOD ResetCache(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->ResetCache(); } 

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

/* Header file */
class nsImapHeaderInfo : public nsIImapHeaderInfo
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIIMAPHEADERINFO

  nsImapHeaderInfo();

private:
  ~nsImapHeaderInfo();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS1(nsImapHeaderInfo, nsIImapHeaderInfo)

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

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

/* attribute nsMsgKey msgUid; */
NS_IMETHODIMP nsImapHeaderInfo::GetMsgUid(nsMsgKey *aMsgUid)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsImapHeaderInfo::SetMsgUid(nsMsgKey aMsgUid)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute long msgSize; */
NS_IMETHODIMP nsImapHeaderInfo::GetMsgSize(PRInt32 *aMsgSize)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsImapHeaderInfo::SetMsgSize(PRInt32 aMsgSize)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* [noscript] void getMsgHdrs ([shared] out string aMsgHdrs); */
NS_IMETHODIMP nsImapHeaderInfo::GetMsgHdrs(const char * *aMsgHdrs NS_OUTPARAM)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void cacheLine (in string line, in unsigned long uid); */
NS_IMETHODIMP nsImapHeaderInfo::CacheLine(const char * line, PRUint32 uid)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void resetCache (); */
NS_IMETHODIMP nsImapHeaderInfo::ResetCache()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


/* starting interface:    nsIImapHeaderXferInfo */
#define NS_IIMAPHEADERXFERINFO_IID_STR "f0842eda-af29-4ecd-82e1-fba91bd65d66"

#define NS_IIMAPHEADERXFERINFO_IID \
  {0xf0842eda, 0xaf29, 0x4ecd, \
    { 0x82, 0xe1, 0xfb, 0xa9, 0x1b, 0xd6, 0x5d, 0x66 }}

class NS_NO_VTABLE NS_SCRIPTABLE nsIImapHeaderXferInfo : public nsISupports {
 public: 

  NS_DECLARE_STATIC_IID_ACCESSOR(NS_IIMAPHEADERXFERINFO_IID)

  /* readonly attribute long numHeaders; */
  NS_SCRIPTABLE NS_IMETHOD GetNumHeaders(PRInt32 *aNumHeaders) = 0;

  /* nsIImapHeaderInfo getHeader (in long hdrIndex); */
  NS_SCRIPTABLE NS_IMETHOD GetHeader(PRInt32 hdrIndex, nsIImapHeaderInfo * *_retval NS_OUTPARAM) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(nsIImapHeaderXferInfo, NS_IIMAPHEADERXFERINFO_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIIMAPHEADERXFERINFO \
  NS_SCRIPTABLE NS_IMETHOD GetNumHeaders(PRInt32 *aNumHeaders); \
  NS_SCRIPTABLE NS_IMETHOD GetHeader(PRInt32 hdrIndex, nsIImapHeaderInfo * *_retval NS_OUTPARAM); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIIMAPHEADERXFERINFO(_to) \
  NS_SCRIPTABLE NS_IMETHOD GetNumHeaders(PRInt32 *aNumHeaders) { return _to GetNumHeaders(aNumHeaders); } \
  NS_SCRIPTABLE NS_IMETHOD GetHeader(PRInt32 hdrIndex, nsIImapHeaderInfo * *_retval NS_OUTPARAM) { return _to GetHeader(hdrIndex, _retval); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIIMAPHEADERXFERINFO(_to) \
  NS_SCRIPTABLE NS_IMETHOD GetNumHeaders(PRInt32 *aNumHeaders) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNumHeaders(aNumHeaders); } \
  NS_SCRIPTABLE NS_IMETHOD GetHeader(PRInt32 hdrIndex, nsIImapHeaderInfo * *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHeader(hdrIndex, _retval); } 

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

/* Header file */
class nsImapHeaderXferInfo : public nsIImapHeaderXferInfo
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIIMAPHEADERXFERINFO

  nsImapHeaderXferInfo();

private:
  ~nsImapHeaderXferInfo();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS1(nsImapHeaderXferInfo, nsIImapHeaderXferInfo)

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

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

/* readonly attribute long numHeaders; */
NS_IMETHODIMP nsImapHeaderXferInfo::GetNumHeaders(PRInt32 *aNumHeaders)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* nsIImapHeaderInfo getHeader (in long hdrIndex); */
NS_IMETHODIMP nsImapHeaderXferInfo::GetHeader(PRInt32 hdrIndex, nsIImapHeaderInfo * *_retval NS_OUTPARAM)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


#endif /* __gen_nsIImapHeaderXferInfo_h__ */