This file is indexed.

/usr/include/thunderbird-11.0.1/inISearchProcess.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
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM /build/buildd/thunderbird-11.0.1+build1/build-tree/mozilla/mozilla/layout/inspector/public/inISearchProcess.idl
 */

#ifndef __gen_inISearchProcess_h__
#define __gen_inISearchProcess_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 nsAString; /* forward declaration */

class inISearchObserver; /* forward declaration */


/* starting interface:    inISearchProcess */
#define INISEARCHPROCESS_IID_STR "d5fa765b-2448-4686-b7c1-5ff13acb0fc9"

#define INISEARCHPROCESS_IID \
  {0xd5fa765b, 0x2448, 0x4686, \
    { 0xb7, 0xc1, 0x5f, 0xf1, 0x3a, 0xcb, 0x0f, 0xc9 }}

class NS_NO_VTABLE NS_SCRIPTABLE inISearchProcess : public nsISupports {
 public: 

  NS_DECLARE_STATIC_IID_ACCESSOR(INISEARCHPROCESS_IID)

  /* readonly attribute boolean isActive; */
  NS_SCRIPTABLE NS_IMETHOD GetIsActive(bool *aIsActive) = 0;

  /* readonly attribute long resultCount; */
  NS_SCRIPTABLE NS_IMETHOD GetResultCount(PRInt32 *aResultCount) = 0;

  /* attribute boolean holdResults; */
  NS_SCRIPTABLE NS_IMETHOD GetHoldResults(bool *aHoldResults) = 0;
  NS_SCRIPTABLE NS_IMETHOD SetHoldResults(bool aHoldResults) = 0;

  /* void searchSync (); */
  NS_SCRIPTABLE NS_IMETHOD SearchSync(void) = 0;

  /* void searchAsync (in inISearchObserver aObserver); */
  NS_SCRIPTABLE NS_IMETHOD SearchAsync(inISearchObserver *aObserver) = 0;

  /* void searchStop (); */
  NS_SCRIPTABLE NS_IMETHOD SearchStop(void) = 0;

  /* boolean searchStep (); */
  NS_SCRIPTABLE NS_IMETHOD SearchStep(bool *_retval NS_OUTPARAM) = 0;

  /* AString getStringResultAt (in long aIndex); */
  NS_SCRIPTABLE NS_IMETHOD GetStringResultAt(PRInt32 aIndex, nsAString & _retval NS_OUTPARAM) = 0;

  /* long getIntResultAt (in long aIndex); */
  NS_SCRIPTABLE NS_IMETHOD GetIntResultAt(PRInt32 aIndex, PRInt32 *_retval NS_OUTPARAM) = 0;

  /* unsigned long getUIntResultAt (in long aIndex); */
  NS_SCRIPTABLE NS_IMETHOD GetUIntResultAt(PRInt32 aIndex, PRUint32 *_retval NS_OUTPARAM) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(inISearchProcess, INISEARCHPROCESS_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_INISEARCHPROCESS \
  NS_SCRIPTABLE NS_IMETHOD GetIsActive(bool *aIsActive); \
  NS_SCRIPTABLE NS_IMETHOD GetResultCount(PRInt32 *aResultCount); \
  NS_SCRIPTABLE NS_IMETHOD GetHoldResults(bool *aHoldResults); \
  NS_SCRIPTABLE NS_IMETHOD SetHoldResults(bool aHoldResults); \
  NS_SCRIPTABLE NS_IMETHOD SearchSync(void); \
  NS_SCRIPTABLE NS_IMETHOD SearchAsync(inISearchObserver *aObserver); \
  NS_SCRIPTABLE NS_IMETHOD SearchStop(void); \
  NS_SCRIPTABLE NS_IMETHOD SearchStep(bool *_retval NS_OUTPARAM); \
  NS_SCRIPTABLE NS_IMETHOD GetStringResultAt(PRInt32 aIndex, nsAString & _retval NS_OUTPARAM); \
  NS_SCRIPTABLE NS_IMETHOD GetIntResultAt(PRInt32 aIndex, PRInt32 *_retval NS_OUTPARAM); \
  NS_SCRIPTABLE NS_IMETHOD GetUIntResultAt(PRInt32 aIndex, PRUint32 *_retval NS_OUTPARAM); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_INISEARCHPROCESS(_to) \
  NS_SCRIPTABLE NS_IMETHOD GetIsActive(bool *aIsActive) { return _to GetIsActive(aIsActive); } \
  NS_SCRIPTABLE NS_IMETHOD GetResultCount(PRInt32 *aResultCount) { return _to GetResultCount(aResultCount); } \
  NS_SCRIPTABLE NS_IMETHOD GetHoldResults(bool *aHoldResults) { return _to GetHoldResults(aHoldResults); } \
  NS_SCRIPTABLE NS_IMETHOD SetHoldResults(bool aHoldResults) { return _to SetHoldResults(aHoldResults); } \
  NS_SCRIPTABLE NS_IMETHOD SearchSync(void) { return _to SearchSync(); } \
  NS_SCRIPTABLE NS_IMETHOD SearchAsync(inISearchObserver *aObserver) { return _to SearchAsync(aObserver); } \
  NS_SCRIPTABLE NS_IMETHOD SearchStop(void) { return _to SearchStop(); } \
  NS_SCRIPTABLE NS_IMETHOD SearchStep(bool *_retval NS_OUTPARAM) { return _to SearchStep(_retval); } \
  NS_SCRIPTABLE NS_IMETHOD GetStringResultAt(PRInt32 aIndex, nsAString & _retval NS_OUTPARAM) { return _to GetStringResultAt(aIndex, _retval); } \
  NS_SCRIPTABLE NS_IMETHOD GetIntResultAt(PRInt32 aIndex, PRInt32 *_retval NS_OUTPARAM) { return _to GetIntResultAt(aIndex, _retval); } \
  NS_SCRIPTABLE NS_IMETHOD GetUIntResultAt(PRInt32 aIndex, PRUint32 *_retval NS_OUTPARAM) { return _to GetUIntResultAt(aIndex, _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_INISEARCHPROCESS(_to) \
  NS_SCRIPTABLE NS_IMETHOD GetIsActive(bool *aIsActive) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsActive(aIsActive); } \
  NS_SCRIPTABLE NS_IMETHOD GetResultCount(PRInt32 *aResultCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetResultCount(aResultCount); } \
  NS_SCRIPTABLE NS_IMETHOD GetHoldResults(bool *aHoldResults) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHoldResults(aHoldResults); } \
  NS_SCRIPTABLE NS_IMETHOD SetHoldResults(bool aHoldResults) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetHoldResults(aHoldResults); } \
  NS_SCRIPTABLE NS_IMETHOD SearchSync(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->SearchSync(); } \
  NS_SCRIPTABLE NS_IMETHOD SearchAsync(inISearchObserver *aObserver) { return !_to ? NS_ERROR_NULL_POINTER : _to->SearchAsync(aObserver); } \
  NS_SCRIPTABLE NS_IMETHOD SearchStop(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->SearchStop(); } \
  NS_SCRIPTABLE NS_IMETHOD SearchStep(bool *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->SearchStep(_retval); } \
  NS_SCRIPTABLE NS_IMETHOD GetStringResultAt(PRInt32 aIndex, nsAString & _retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStringResultAt(aIndex, _retval); } \
  NS_SCRIPTABLE NS_IMETHOD GetIntResultAt(PRInt32 aIndex, PRInt32 *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIntResultAt(aIndex, _retval); } \
  NS_SCRIPTABLE NS_IMETHOD GetUIntResultAt(PRInt32 aIndex, PRUint32 *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetUIntResultAt(aIndex, _retval); } 

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

/* Header file */
class inSearchProcess : public inISearchProcess
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_INISEARCHPROCESS

  inSearchProcess();

private:
  ~inSearchProcess();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS1(inSearchProcess, inISearchProcess)

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

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

/* readonly attribute boolean isActive; */
NS_IMETHODIMP inSearchProcess::GetIsActive(bool *aIsActive)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* readonly attribute long resultCount; */
NS_IMETHODIMP inSearchProcess::GetResultCount(PRInt32 *aResultCount)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute boolean holdResults; */
NS_IMETHODIMP inSearchProcess::GetHoldResults(bool *aHoldResults)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP inSearchProcess::SetHoldResults(bool aHoldResults)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void searchSync (); */
NS_IMETHODIMP inSearchProcess::SearchSync()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void searchAsync (in inISearchObserver aObserver); */
NS_IMETHODIMP inSearchProcess::SearchAsync(inISearchObserver *aObserver)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void searchStop (); */
NS_IMETHODIMP inSearchProcess::SearchStop()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* boolean searchStep (); */
NS_IMETHODIMP inSearchProcess::SearchStep(bool *_retval NS_OUTPARAM)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* AString getStringResultAt (in long aIndex); */
NS_IMETHODIMP inSearchProcess::GetStringResultAt(PRInt32 aIndex, nsAString & _retval NS_OUTPARAM)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* long getIntResultAt (in long aIndex); */
NS_IMETHODIMP inSearchProcess::GetIntResultAt(PRInt32 aIndex, PRInt32 *_retval NS_OUTPARAM)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* unsigned long getUIntResultAt (in long aIndex); */
NS_IMETHODIMP inSearchProcess::GetUIntResultAt(PRInt32 aIndex, PRUint32 *_retval NS_OUTPARAM)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


#endif /* __gen_inISearchProcess_h__ */