Lines Matching refs:function

93 alias sqlite3_callback = int function (void*,int,char**, char**);
101 int function (void*,int,char**,char**) callback, /** Callback function */
292 int function (sqlite3_file*) xClose;
293 int function (sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst) xRead;
294 int function (sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst) xWrite;
295 int function (sqlite3_file*, sqlite3_int64 size) xTruncate;
296 int function (sqlite3_file*, int flags) xSync;
297 int function (sqlite3_file*, sqlite3_int64 *pSize) xFileSize;
298 int function (sqlite3_file*, int) xLock;
299 int function (sqlite3_file*, int) xUnlock;
300 int function (sqlite3_file*, int *pResOut) xCheckReservedLock;
301 int function (sqlite3_file*, int op, void *pArg) xFileControl;
302 int function (sqlite3_file*) xSectorSize;
303 int function (sqlite3_file*) xDeviceCharacteristics;
305 int function (sqlite3_file*, int iPg, int pgsz, int, void **) xShmMap;
306 int function (sqlite3_file*, int offset, int n, int flags) xShmLock;
307 void function (sqlite3_file*) xShmBarrier;
308 int function (sqlite3_file*, int deleteFlag) xShmUnmap;
311 int function (sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp) xFetch;
312 int function (sqlite3_file*, sqlite3_int64 iOfst, void *p) xUnfetch;
357 alias xDlSymReturn = void * function();
359 alias sqlite3_syscall_ptr = void function();
369 int function (sqlite3_vfs*, const char *zName, sqlite3_file*,
371 int function (sqlite3_vfs*, const char *zName, int syncDir) xDelete;
372 int function (sqlite3_vfs*, const char *zName, int flags, int *pResOut) xAccess;
373 int function (sqlite3_vfs*, const char *zName, int nOut, char *zOut) xFullPathname;
374 void* function (sqlite3_vfs*, const char *zFilename) xDlOpen;
375 void function (sqlite3_vfs*, int nByte, char *zErrMsg) xDlError;
376 xDlSymReturn function (sqlite3_vfs*,void*, const char *zSymbol) *xDlSym;
377 void function (sqlite3_vfs*, void*) xDlClose;
378 int function (sqlite3_vfs*, int nByte, char *zOut) xRandomness;
379 int function (sqlite3_vfs*, int microseconds) xSleep;
380 int function (sqlite3_vfs*, double*) xCurrentTime;
381 int function (sqlite3_vfs*, int, char *) xGetLastError;
386 int function (sqlite3_vfs*, sqlite3_int64*) xCurrentTimeInt64;
391 int function(sqlite3_vfs*, const char * zName, sqlite3_syscall_ptr) xSetSystemCall;
392 sqlite3_syscall_ptr function(sqlite3_vfs*, const char * zName) xGetSystemCall;
393 const(char)* function(sqlite3_vfs*, const char * zName) xNextSystemCall;
455 void* function (int) xMalloc; /** Memory allocation function */
456 void function (void*) xFree; /** Free a prior allocation */
457 void* function (void*,int) xRealloc; /** Resize an allocation */
458 int function (void*) xSize; /** Return the size of an allocation */
459 int function (int) xRoundup; /** Round up request size to allocation size */
460 int function (void*) xInit; /** Initialize the memory allocator */
461 void function (void*) xShutdown; /** Deinitialize the memory allocator */
543 int sqlite3_busy_handler(sqlite3*, int function (void*,int), void*);
603 int function (void*,int,const char*,const char*,const char*,const char*) xAuth,
661 void *sqlite3_trace(sqlite3*, void function (void*,const char*) xTrace, void*);
663 void *sqlite3_profile(sqlite3*, void function (void*,const char*,sqlite3_uint64) xProfile, void*);
668 void sqlite3_progress_handler(sqlite3*, int, int function (void*), void*);
805 int sqlite3_bind_blob(sqlite3_stmt*, int, const void*, int n, void function (void*));
807 int sqlite3_bind_blob64(sqlite3_stmt*, int, const void*, sqlite3_uint64,void function (void*));
817 int sqlite3_bind_text(sqlite3_stmt*, int, const char*, int n, void function (void*));
819 int sqlite3_bind_text16(sqlite3_stmt*, int, const void*, int, void function (void*));
821 int sqlite3_bind_text64(sqlite3_stmt*, int, const char*, sqlite3_uint64,void function (void*), ubyt…
947 void function (sqlite3_context*,int,sqlite3_value**) xFunc,
948 void function (sqlite3_context*,int,sqlite3_value**) xStep,
949 void function (sqlite3_context*) xFinal
958 void function (sqlite3_context*,int,sqlite3_value**) xFunc,
959 void function (sqlite3_context*,int,sqlite3_value**) xStep,
960 void function (sqlite3_context*) xFinal
969 void function (sqlite3_context*,int,sqlite3_value**) xFunc,
970 void function (sqlite3_context*,int,sqlite3_value**) xStep,
971 void function (sqlite3_context*) xFinal,
972 void function (void*) xDestroy
1008 deprecated int sqlite3_memory_alarm(void function(void*,sqlite3_int64,int),void*,sqlite3_int64);
1068 void sqlite3_set_auxdata(sqlite3_context*, int N, void*, void function (void*));
1074 alias sqlite3_destructor_type = void function (void*);
1085 void sqlite3_result_blob(sqlite3_context*, const void*, int, void function(void*));
1087 void sqlite3_result_blob64(sqlite3_context*,const void*,sqlite3_uint64,void function(void*));
1107 void sqlite3_result_text(sqlite3_context*, const char*, int, void function(void*));
1109 void sqlite3_result_text64(sqlite3_context*, const char*,sqlite3_uint64,void function(void*), ubyte…
1111 void sqlite3_result_text16(sqlite3_context*, const void*, int, void function(void*));
1113 void sqlite3_result_text16le(sqlite3_context*, const void*, int, void function(void*));
1115 void sqlite3_result_text16be(sqlite3_context*, const void*, int, void function(void*));
1136 int function (void*,int,const void*,int,const void*) xCompare
1144 int function (void*,int,const void*,int,const void*) xCompare,
1145 void function (void*) xDestroy
1153 int function (void*,int,const void*,int,const void*) xCompare
1162 void function (void*,sqlite3*,int eTextRep,const char*)
1168 void function (void*,sqlite3*,int eTextRep,const void*)
1260 void *sqlite3_commit_hook(sqlite3*, int function (void*), void*);
1262 void *sqlite3_rollback_hook(sqlite3*, void function (void *), void*);
1269 void function (void *,int ,char *, char *, sqlite3_int64),
1331 int sqlite3_auto_extension(void function () xEntryPoint);
1336 int sqlite3_cancel_auto_extension(void function() xEntryPoint);
1356 alias mapFunction = void function (sqlite3_context*,int,sqlite3_value**);
1362 int function (sqlite3*, void *pAux,
1365 int function (sqlite3*, void *pAux,
1368 int function (sqlite3_vtab *pVTab, sqlite3_index_info*) xBestIndex;
1369 int function (sqlite3_vtab *pVTab) xDisconnect;
1370 int function (sqlite3_vtab *pVTab) xDestroy;
1371 int function (sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor) xOpen;
1372 int function (sqlite3_vtab_cursor*) xClose;
1373 int function (sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
1375 int function (sqlite3_vtab_cursor*) xNext;
1376 int function (sqlite3_vtab_cursor*) xEof;
1377 int function (sqlite3_vtab_cursor*, sqlite3_context*, int) xColumn;
1378 int function (sqlite3_vtab_cursor*, sqlite3_int64 *pRowid) xRowid;
1379 int function (sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *) xUpdate;
1380 int function (sqlite3_vtab *pVTab) xBegin;
1381 int function (sqlite3_vtab *pVTab) xSync;
1382 int function (sqlite3_vtab *pVTab) xCommit;
1383 int function (sqlite3_vtab *pVTab) xRollback;
1384 int function (sqlite3_vtab *pVtab, int nArg, const char *zName,
1387 int function (sqlite3_vtab *pVtab, const char *zNew) xRename;
1388 int function (sqlite3_vtab *pVTab, int) xSavepoint;
1389 int function (sqlite3_vtab *pVTab, int) xRelease;
1390 int function (sqlite3_vtab *pVTab, int) xRollbackTo;
1464 void function (void*) xDestroy /* Module destructor function */
1577 int function () xMutexInit;
1578 int function () xMutexEnd;
1579 sqlite3_mutex* function (int) xMutexAlloc;
1580 void function (sqlite3_mutex *) xMutexFree;
1581 void function (sqlite3_mutex *) xMutexEnter;
1582 int function (sqlite3_mutex *) xMutexTry;
1583 void function (sqlite3_mutex *) xMutexLeave;
1584 int function (sqlite3_mutex *) xMutexHeld;
1585 int function (sqlite3_mutex *) xMutexNotheld;
1751 int function(void*) xInit;
1752 void function(void*) xShutdown;
1753 sqlite3_pcache * function(int szPage, int szExtra, int bPurgeable) xCreate;
1754 void function(sqlite3_pcache*, int nCachesize) xCachesize;
1755 int function(sqlite3_pcache*) xPagecount;
1756 sqlite3_pcache_page * function(sqlite3_pcache*, uint key, int createFlag) xFetch;
1757 void function(sqlite3_pcache*, sqlite3_pcache_page*, int discard) xUnpin;
1758 void function(sqlite3_pcache*, sqlite3_pcache_page*,
1760 void function(sqlite3_pcache*, uint iLimit) xTruncate;
1761 void function(sqlite3_pcache*) xDestroy;
1762 void function(sqlite3_pcache*) xShrink;
1768 int function (void*) xInit;
1769 void function (void*) xShutdown;
1770 sqlite3_pcache* function (int szPage, int bPurgeable) xCreate;
1771 void function (sqlite3_pcache*, int nCachesize) xCachesize;
1772 int function (sqlite3_pcache*) xPagecount;
1773 void* function (sqlite3_pcache*, uint key, int createFlag) xFetch;
1774 void function (sqlite3_pcache*, void*, int discard) xUnpin;
1775 void function (sqlite3_pcache*, void*, uint oldKey, uint newKey) xRekey;
1776 void function (sqlite3_pcache*, uint iLimit) xTruncate;
1777 void function (sqlite3_pcache*) xDestroy;
1808 void function (void **apArg, int nArg) xNotify, /** Callback function to invoke */
1839 int function (void *,sqlite3*,const char*,int),
1971 int function (sqlite3_rtree_geometry *, int nCoord, double *aCoord, int *pRes) xGeom,
1985 void function (void *) xDelUser; /** Called by SQLite to clean up pUser */
1991 int function(sqlite3_rtree_query_info*) xQueryFunc,
1993 void function(void*) xDestructor
2002 void function(void*) xDelUser; /* function to free pUser */
2028 alias fts5_extension_function = void function(
2045 void* function(Fts5Context*) xUserData;
2046 int function(Fts5Context*) xColumnCount;
2047 int function(Fts5Context*, sqlite3_int64 *pnRow) xRowCount;
2048 int function(Fts5Context*, int iCol, sqlite3_int64 *pnToken) xColumnTotalSize;
2049 int function(Fts5Context*,
2052 int function(void*, int, const char*, int, int, int) xToken
2054 int function(Fts5Context*) xPhraseCount;
2055 int function(Fts5Context*, int iPhrase) xPhraseSize;
2056 int function(Fts5Context*, int *pnInst) xInstCount;
2057 int function(Fts5Context*, int iIdx, int *piPhrase, int *piCol, int *piOff) xInst;
2058 sqlite3_int64 function(Fts5Context*) xRowid;
2059 int function(Fts5Context*, int iCol, const char **pz, int *pn) xColumnText;
2060 int function(Fts5Context*, int iCol, int *pnToken) xColumnSize;
2061 int function(Fts5Context*, int iPhrase, void *pUserData,
2062 int function(const Fts5ExtensionApi*,Fts5Context*,void*)
2064 int function(Fts5Context*, void *pAux, void function(void*) xDelete) xSetAuxdata;
2065 void* function(Fts5Context*, int bClear) xGetAuxdata;
2066 void function(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*, int*) xPhraseFirst;
2067 void function(Fts5Context*, Fts5PhraseIter*, int *piCol, int *piOff) xPhraseNext;
2073 int function(void*, const char **azArg, int nArg, Fts5Tokenizer **ppOut) xCreate;
2074 void function(Fts5Tokenizer*) xDelete;
2075 int function(Fts5Tokenizer*,
2079 int function(
2104 int function(
2109 void function(void*) xDestroy
2112 int function(
2119 int function(
2124 void function(void*) xDestroy