/usr/include/thunderbird-11.0.1/nsIIDBIndex.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /build/buildd/thunderbird-11.0.1+build1/build-tree/mozilla/mozilla/dom/indexedDB/nsIIDBIndex.idl
*/
#ifndef __gen_nsIIDBIndex_h__
#define __gen_nsIIDBIndex_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#include "jspubtd.h"
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIIDBObjectStore; /* forward declaration */
class nsIIDBRequest; /* forward declaration */
/* starting interface: nsIIDBIndex */
#define NS_IIDBINDEX_IID_STR "233ec586-7b34-4263-b27e-a4991b757597"
#define NS_IIDBINDEX_IID \
{0x233ec586, 0x7b34, 0x4263, \
{ 0xb2, 0x7e, 0xa4, 0x99, 0x1b, 0x75, 0x75, 0x97 }}
class NS_NO_VTABLE NS_SCRIPTABLE nsIIDBIndex : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IIDBINDEX_IID)
/* readonly attribute DOMString name; */
NS_SCRIPTABLE NS_IMETHOD GetName(nsAString & aName) = 0;
/* readonly attribute DOMString storeName; */
NS_SCRIPTABLE NS_IMETHOD GetStoreName(nsAString & aStoreName) = 0;
/* [implicit_jscontext] readonly attribute jsval keyPath; */
NS_SCRIPTABLE NS_IMETHOD GetKeyPath(JSContext* cx, JS::Value *aKeyPath) = 0;
/* readonly attribute boolean unique; */
NS_SCRIPTABLE NS_IMETHOD GetUnique(bool *aUnique) = 0;
/* readonly attribute boolean multiEntry; */
NS_SCRIPTABLE NS_IMETHOD GetMultiEntry(bool *aMultiEntry) = 0;
/* readonly attribute nsIIDBObjectStore objectStore; */
NS_SCRIPTABLE NS_IMETHOD GetObjectStore(nsIIDBObjectStore * *aObjectStore) = 0;
/* [implicit_jscontext] nsIIDBRequest get (in jsval key); */
NS_SCRIPTABLE NS_IMETHOD Get(const JS::Value & key, JSContext* cx, nsIIDBRequest * *_retval NS_OUTPARAM) = 0;
/* [implicit_jscontext] nsIIDBRequest getKey (in jsval key); */
NS_SCRIPTABLE NS_IMETHOD GetKey(const JS::Value & key, JSContext* cx, nsIIDBRequest * *_retval NS_OUTPARAM) = 0;
/* [implicit_jscontext,optional_argc] nsIIDBRequest getAll ([optional] in jsval key, [optional] in unsigned long limit); */
NS_SCRIPTABLE NS_IMETHOD GetAll(const JS::Value & key, PRUint32 limit, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM) = 0;
/* [implicit_jscontext,optional_argc] nsIIDBRequest getAllKeys ([optional] in jsval key, [optional] in unsigned long limit); */
NS_SCRIPTABLE NS_IMETHOD GetAllKeys(const JS::Value & key, PRUint32 limit, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM) = 0;
/* [implicit_jscontext,optional_argc] nsIIDBRequest openCursor ([optional] in jsval key, [optional] in unsigned short direction); */
NS_SCRIPTABLE NS_IMETHOD OpenCursor(const JS::Value & key, PRUint16 direction, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM) = 0;
/* [implicit_jscontext,optional_argc] nsIIDBRequest openKeyCursor ([optional] in jsval key, [optional] in unsigned short direction); */
NS_SCRIPTABLE NS_IMETHOD OpenKeyCursor(const JS::Value & key, PRUint16 direction, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM) = 0;
/* [implicit_jscontext,optional_argc] nsIIDBRequest count ([optional] in jsval key); */
NS_SCRIPTABLE NS_IMETHOD Count(const JS::Value & key, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIIDBIndex, NS_IIDBINDEX_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIIDBINDEX \
NS_SCRIPTABLE NS_IMETHOD GetName(nsAString & aName); \
NS_SCRIPTABLE NS_IMETHOD GetStoreName(nsAString & aStoreName); \
NS_SCRIPTABLE NS_IMETHOD GetKeyPath(JSContext* cx, JS::Value *aKeyPath); \
NS_SCRIPTABLE NS_IMETHOD GetUnique(bool *aUnique); \
NS_SCRIPTABLE NS_IMETHOD GetMultiEntry(bool *aMultiEntry); \
NS_SCRIPTABLE NS_IMETHOD GetObjectStore(nsIIDBObjectStore * *aObjectStore); \
NS_SCRIPTABLE NS_IMETHOD Get(const JS::Value & key, JSContext* cx, nsIIDBRequest * *_retval NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD GetKey(const JS::Value & key, JSContext* cx, nsIIDBRequest * *_retval NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD GetAll(const JS::Value & key, PRUint32 limit, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD GetAllKeys(const JS::Value & key, PRUint32 limit, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD OpenCursor(const JS::Value & key, PRUint16 direction, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD OpenKeyCursor(const JS::Value & key, PRUint16 direction, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD Count(const JS::Value & key, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIIDBINDEX(_to) \
NS_SCRIPTABLE NS_IMETHOD GetName(nsAString & aName) { return _to GetName(aName); } \
NS_SCRIPTABLE NS_IMETHOD GetStoreName(nsAString & aStoreName) { return _to GetStoreName(aStoreName); } \
NS_SCRIPTABLE NS_IMETHOD GetKeyPath(JSContext* cx, JS::Value *aKeyPath) { return _to GetKeyPath(cx, aKeyPath); } \
NS_SCRIPTABLE NS_IMETHOD GetUnique(bool *aUnique) { return _to GetUnique(aUnique); } \
NS_SCRIPTABLE NS_IMETHOD GetMultiEntry(bool *aMultiEntry) { return _to GetMultiEntry(aMultiEntry); } \
NS_SCRIPTABLE NS_IMETHOD GetObjectStore(nsIIDBObjectStore * *aObjectStore) { return _to GetObjectStore(aObjectStore); } \
NS_SCRIPTABLE NS_IMETHOD Get(const JS::Value & key, JSContext* cx, nsIIDBRequest * *_retval NS_OUTPARAM) { return _to Get(key, cx, _retval); } \
NS_SCRIPTABLE NS_IMETHOD GetKey(const JS::Value & key, JSContext* cx, nsIIDBRequest * *_retval NS_OUTPARAM) { return _to GetKey(key, cx, _retval); } \
NS_SCRIPTABLE NS_IMETHOD GetAll(const JS::Value & key, PRUint32 limit, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM) { return _to GetAll(key, limit, cx, _argc, _retval); } \
NS_SCRIPTABLE NS_IMETHOD GetAllKeys(const JS::Value & key, PRUint32 limit, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM) { return _to GetAllKeys(key, limit, cx, _argc, _retval); } \
NS_SCRIPTABLE NS_IMETHOD OpenCursor(const JS::Value & key, PRUint16 direction, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM) { return _to OpenCursor(key, direction, cx, _argc, _retval); } \
NS_SCRIPTABLE NS_IMETHOD OpenKeyCursor(const JS::Value & key, PRUint16 direction, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM) { return _to OpenKeyCursor(key, direction, cx, _argc, _retval); } \
NS_SCRIPTABLE NS_IMETHOD Count(const JS::Value & key, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM) { return _to Count(key, cx, _argc, _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_NSIIDBINDEX(_to) \
NS_SCRIPTABLE NS_IMETHOD GetName(nsAString & aName) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetName(aName); } \
NS_SCRIPTABLE NS_IMETHOD GetStoreName(nsAString & aStoreName) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStoreName(aStoreName); } \
NS_SCRIPTABLE NS_IMETHOD GetKeyPath(JSContext* cx, JS::Value *aKeyPath) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetKeyPath(cx, aKeyPath); } \
NS_SCRIPTABLE NS_IMETHOD GetUnique(bool *aUnique) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetUnique(aUnique); } \
NS_SCRIPTABLE NS_IMETHOD GetMultiEntry(bool *aMultiEntry) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMultiEntry(aMultiEntry); } \
NS_SCRIPTABLE NS_IMETHOD GetObjectStore(nsIIDBObjectStore * *aObjectStore) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetObjectStore(aObjectStore); } \
NS_SCRIPTABLE NS_IMETHOD Get(const JS::Value & key, JSContext* cx, nsIIDBRequest * *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->Get(key, cx, _retval); } \
NS_SCRIPTABLE NS_IMETHOD GetKey(const JS::Value & key, JSContext* cx, nsIIDBRequest * *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetKey(key, cx, _retval); } \
NS_SCRIPTABLE NS_IMETHOD GetAll(const JS::Value & key, PRUint32 limit, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAll(key, limit, cx, _argc, _retval); } \
NS_SCRIPTABLE NS_IMETHOD GetAllKeys(const JS::Value & key, PRUint32 limit, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAllKeys(key, limit, cx, _argc, _retval); } \
NS_SCRIPTABLE NS_IMETHOD OpenCursor(const JS::Value & key, PRUint16 direction, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->OpenCursor(key, direction, cx, _argc, _retval); } \
NS_SCRIPTABLE NS_IMETHOD OpenKeyCursor(const JS::Value & key, PRUint16 direction, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->OpenKeyCursor(key, direction, cx, _argc, _retval); } \
NS_SCRIPTABLE NS_IMETHOD Count(const JS::Value & key, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->Count(key, cx, _argc, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsIDBIndex : public nsIIDBIndex
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIIDBINDEX
nsIDBIndex();
private:
~nsIDBIndex();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsIDBIndex, nsIIDBIndex)
nsIDBIndex::nsIDBIndex()
{
/* member initializers and constructor code */
}
nsIDBIndex::~nsIDBIndex()
{
/* destructor code */
}
/* readonly attribute DOMString name; */
NS_IMETHODIMP nsIDBIndex::GetName(nsAString & aName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute DOMString storeName; */
NS_IMETHODIMP nsIDBIndex::GetStoreName(nsAString & aStoreName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext] readonly attribute jsval keyPath; */
NS_IMETHODIMP nsIDBIndex::GetKeyPath(JSContext* cx, JS::Value *aKeyPath)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean unique; */
NS_IMETHODIMP nsIDBIndex::GetUnique(bool *aUnique)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean multiEntry; */
NS_IMETHODIMP nsIDBIndex::GetMultiEntry(bool *aMultiEntry)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIIDBObjectStore objectStore; */
NS_IMETHODIMP nsIDBIndex::GetObjectStore(nsIIDBObjectStore * *aObjectStore)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext] nsIIDBRequest get (in jsval key); */
NS_IMETHODIMP nsIDBIndex::Get(const JS::Value & key, JSContext* cx, nsIIDBRequest * *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext] nsIIDBRequest getKey (in jsval key); */
NS_IMETHODIMP nsIDBIndex::GetKey(const JS::Value & key, JSContext* cx, nsIIDBRequest * *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext,optional_argc] nsIIDBRequest getAll ([optional] in jsval key, [optional] in unsigned long limit); */
NS_IMETHODIMP nsIDBIndex::GetAll(const JS::Value & key, PRUint32 limit, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext,optional_argc] nsIIDBRequest getAllKeys ([optional] in jsval key, [optional] in unsigned long limit); */
NS_IMETHODIMP nsIDBIndex::GetAllKeys(const JS::Value & key, PRUint32 limit, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext,optional_argc] nsIIDBRequest openCursor ([optional] in jsval key, [optional] in unsigned short direction); */
NS_IMETHODIMP nsIDBIndex::OpenCursor(const JS::Value & key, PRUint16 direction, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext,optional_argc] nsIIDBRequest openKeyCursor ([optional] in jsval key, [optional] in unsigned short direction); */
NS_IMETHODIMP nsIDBIndex::OpenKeyCursor(const JS::Value & key, PRUint16 direction, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext,optional_argc] nsIIDBRequest count ([optional] in jsval key); */
NS_IMETHODIMP nsIDBIndex::Count(const JS::Value & key, JSContext* cx, PRUint8 _argc, nsIIDBRequest * *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIIDBIndex_h__ */
|