This file is indexed.

/usr/include/thunderbird/nsIMsgFolderCacheElement.h is in thunderbird-dev 1:38.6.0+build1-0ubuntu1.

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
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/nsIMsgFolderCacheElement.idl
 */

#ifndef __gen_nsIMsgFolderCacheElement_h__
#define __gen_nsIMsgFolderCacheElement_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

/* starting interface:    nsIMsgFolderCacheElement */
#define NS_IMSGFOLDERCACHEELEMENT_IID_STR "c7392b12-f68a-46b2-af5e-d47350bb17c3"

#define NS_IMSGFOLDERCACHEELEMENT_IID \
  {0xc7392b12, 0xf68a, 0x46b2, \
    { 0xaf, 0x5e, 0xd4, 0x73, 0x50, 0xbb, 0x17, 0xc3 }}

class NS_NO_VTABLE nsIMsgFolderCacheElement : public nsISupports {
 public: 

  NS_DECLARE_STATIC_IID_ACCESSOR(NS_IMSGFOLDERCACHEELEMENT_IID)

  /* attribute ACString key; */
  NS_IMETHOD GetKey(nsACString & aKey) = 0;
  NS_IMETHOD SetKey(const nsACString & aKey) = 0;

  /* ACString getStringProperty (in string propertyName); */
  NS_IMETHOD GetStringProperty(const char * propertyName, nsACString & _retval) = 0;

  /* long getInt32Property (in string propertyName); */
  NS_IMETHOD GetInt32Property(const char * propertyName, int32_t *_retval) = 0;

  /* long long getInt64Property (in string propertyName); */
  NS_IMETHOD GetInt64Property(const char * propertyName, int64_t *_retval) = 0;

  /* void setStringProperty (in string propertyName, in ACString propertyValue); */
  NS_IMETHOD SetStringProperty(const char * propertyName, const nsACString & propertyValue) = 0;

  /* void setInt32Property (in string propertyName, in long propertyValue); */
  NS_IMETHOD SetInt32Property(const char * propertyName, int32_t propertyValue) = 0;

  /* void setInt64Property (in string propertyName, in long long propertyValue); */
  NS_IMETHOD SetInt64Property(const char * propertyName, int64_t propertyValue) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(nsIMsgFolderCacheElement, NS_IMSGFOLDERCACHEELEMENT_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIMSGFOLDERCACHEELEMENT \
  NS_IMETHOD GetKey(nsACString & aKey) override; \
  NS_IMETHOD SetKey(const nsACString & aKey) override; \
  NS_IMETHOD GetStringProperty(const char * propertyName, nsACString & _retval) override; \
  NS_IMETHOD GetInt32Property(const char * propertyName, int32_t *_retval) override; \
  NS_IMETHOD GetInt64Property(const char * propertyName, int64_t *_retval) override; \
  NS_IMETHOD SetStringProperty(const char * propertyName, const nsACString & propertyValue) override; \
  NS_IMETHOD SetInt32Property(const char * propertyName, int32_t propertyValue) override; \
  NS_IMETHOD SetInt64Property(const char * propertyName, int64_t propertyValue) override; 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIMSGFOLDERCACHEELEMENT(_to) \
  NS_IMETHOD GetKey(nsACString & aKey) override { return _to GetKey(aKey); } \
  NS_IMETHOD SetKey(const nsACString & aKey) override { return _to SetKey(aKey); } \
  NS_IMETHOD GetStringProperty(const char * propertyName, nsACString & _retval) override { return _to GetStringProperty(propertyName, _retval); } \
  NS_IMETHOD GetInt32Property(const char * propertyName, int32_t *_retval) override { return _to GetInt32Property(propertyName, _retval); } \
  NS_IMETHOD GetInt64Property(const char * propertyName, int64_t *_retval) override { return _to GetInt64Property(propertyName, _retval); } \
  NS_IMETHOD SetStringProperty(const char * propertyName, const nsACString & propertyValue) override { return _to SetStringProperty(propertyName, propertyValue); } \
  NS_IMETHOD SetInt32Property(const char * propertyName, int32_t propertyValue) override { return _to SetInt32Property(propertyName, propertyValue); } \
  NS_IMETHOD SetInt64Property(const char * propertyName, int64_t propertyValue) override { return _to SetInt64Property(propertyName, propertyValue); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIMSGFOLDERCACHEELEMENT(_to) \
  NS_IMETHOD GetKey(nsACString & aKey) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetKey(aKey); } \
  NS_IMETHOD SetKey(const nsACString & aKey) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetKey(aKey); } \
  NS_IMETHOD GetStringProperty(const char * propertyName, nsACString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStringProperty(propertyName, _retval); } \
  NS_IMETHOD GetInt32Property(const char * propertyName, int32_t *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetInt32Property(propertyName, _retval); } \
  NS_IMETHOD GetInt64Property(const char * propertyName, int64_t *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetInt64Property(propertyName, _retval); } \
  NS_IMETHOD SetStringProperty(const char * propertyName, const nsACString & propertyValue) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStringProperty(propertyName, propertyValue); } \
  NS_IMETHOD SetInt32Property(const char * propertyName, int32_t propertyValue) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetInt32Property(propertyName, propertyValue); } \
  NS_IMETHOD SetInt64Property(const char * propertyName, int64_t propertyValue) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetInt64Property(propertyName, propertyValue); } 

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

/* Header file */
class nsMsgFolderCacheElement : public nsIMsgFolderCacheElement
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIMSGFOLDERCACHEELEMENT

  nsMsgFolderCacheElement();

private:
  ~nsMsgFolderCacheElement();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS(nsMsgFolderCacheElement, nsIMsgFolderCacheElement)

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

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

/* attribute ACString key; */
NS_IMETHODIMP nsMsgFolderCacheElement::GetKey(nsACString & aKey)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsMsgFolderCacheElement::SetKey(const nsACString & aKey)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* ACString getStringProperty (in string propertyName); */
NS_IMETHODIMP nsMsgFolderCacheElement::GetStringProperty(const char * propertyName, nsACString & _retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* long getInt32Property (in string propertyName); */
NS_IMETHODIMP nsMsgFolderCacheElement::GetInt32Property(const char * propertyName, int32_t *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* long long getInt64Property (in string propertyName); */
NS_IMETHODIMP nsMsgFolderCacheElement::GetInt64Property(const char * propertyName, int64_t *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void setStringProperty (in string propertyName, in ACString propertyValue); */
NS_IMETHODIMP nsMsgFolderCacheElement::SetStringProperty(const char * propertyName, const nsACString & propertyValue)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void setInt32Property (in string propertyName, in long propertyValue); */
NS_IMETHODIMP nsMsgFolderCacheElement::SetInt32Property(const char * propertyName, int32_t propertyValue)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void setInt64Property (in string propertyName, in long long propertyValue); */
NS_IMETHODIMP nsMsgFolderCacheElement::SetInt64Property(const char * propertyName, int64_t propertyValue)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


#endif /* __gen_nsIMsgFolderCacheElement_h__ */