Lines Matching defs:xDelete
1783 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
12852 ** xSetAuxdata(pFts5, pAux, xDelete)
12865 ** invoked, then it is replaced by the new pointer. If an xDelete callback
12869 ** The xDelete callback, if one is specified, is also invoked on the
12874 ** xDelete parameter was not NULL, it is invoked on the auxiliary data
12884 ** (set to NULL) before this function returns. In this case the xDelete,
12985 int (*xSetAuxdata)(Fts5Context*, void *pAux, void(*xDelete)(void*));
13026 ** xDelete:
13195 void (*xDelete)(Fts5Tokenizer*);
25099 return pVfs->xDelete!=0 ? pVfs->xDelete(pVfs, zPath, dirSync) : SQLITE_OK;
35895 kvvfsDelete, /* xDelete */
36091 int (*xDelete)(const char *zClass, const char *zKey);
36448 sqlite3KvvfsMethods.xDelete(pFile->zClass, "jrnl");
36467 sqlite3KvvfsMethods.xDelete(pFile->zClass, zKey);
36646 sqlite3KvvfsMethods.xDelete("local", "jrnl");
36649 sqlite3KvvfsMethods.xDelete("session", "jrnl");
43266 sqlite3_vfs *NotUsed, /* VFS containing this as the xDelete method */
44964 unixDelete, /* xDelete */ \
51127 winDelete, /* xDelete */
51152 winDelete, /* xDelete */
51177 winDelete, /* xDelete */
51202 winDelete, /* xDelete */
51416 0, /* memdbDelete, */ /* xDelete */
58846 ** between the xAccess() below and an xDelete() being executed by some
88948 void (*xDelete)(void*)
88978 pAuxData->xDeleteAux = xDelete;
88982 if( xDelete ){
88983 xDelete(pAux);
212644 pVfs->xDelete(pVfs, zOal, 0);
213933 return pRealVfs->xDelete(pRealVfs, zPath, dirSync);
214100 rbuVfsDelete, /* xDelete */
221513 ** xSetAuxdata(pFts5, pAux, xDelete)
221526 ** invoked, then it is replaced by the new pointer. If an xDelete callback
221530 ** The xDelete callback, if one is specified, is also invoked on the
221535 ** xDelete parameter was not NULL, it is invoked on the auxiliary data
221545 ** (set to NULL) before this function returns. In this case the xDelete,
221646 int (*xSetAuxdata)(Fts5Context*, void *pAux, void(*xDelete)(void*));
221687 ** xDelete:
221856 void (*xDelete)(Fts5Tokenizer*);
226053 pConfig->pTokApi->xDelete(pConfig->pTok);
237070 void(*xDelete)(void*); /* Destructor */
237591 if( pData->xDelete ) pData->xDelete(pData->pPtr);
238929 void(*xDelete)(void*) /* Destructor for pPtr (or NULL) */
238941 if( pData->xDelete ){
238942 pData->xDelete(pData->pPtr);
238948 if( xDelete ) xDelete(pPtr);
238956 pData->xDelete = xDelete;
238974 pData->xDelete = 0;
241488 p->tokenizer.xDelete(p->pTokenizer);