Searched refs:xDel (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dtest5.c135 void (*xDel)(void *p) = SQLITE_STATIC;
145 xDel = sqlite3_free;
160 sqlite3ValueSetStr(pVal, -1, z, enc_from, xDel);
168 sqlite3ValueSetStr(pVal, -1, z, enc_from, xDel);
H A Dvdbeapi.c197 void (*xDel)(void*) /* Destructor function */
199 if( sqlite3VdbeMemSetStr(&pCtx->s, z, n, enc, xDel)==SQLITE_TOOBIG ){
207 void (*xDel)(void *)
211 setResultStrOrError(pCtx, z, n, 0, xDel);
245 void (*xDel)(void *)
248 setResultStrOrError(pCtx, z, n, SQLITE_UTF8, xDel);
255 void (*xDel)(void *)
258 setResultStrOrError(pCtx, z, n, SQLITE_UTF16NATIVE, xDel);
264 void (*xDel)(void *)
267 setResultStrOrError(pCtx, z, n, SQLITE_UTF16BE, xDel);
1024 bindText( sqlite3_stmt *pStmt, int i, const void *zData, int nData, void (*xDel)(void*), u8 encoding ) argument
[all...]
H A Dvdbemem.c73 ** This function sets the MEM_Dyn flag and clears any xDel callback.
80 (((pMem->flags&MEM_Dyn)&&pMem->xDel) ? 1 : 0) +
100 if( pMem->flags&MEM_Dyn && pMem->xDel ){
101 pMem->xDel((void *)(pMem->z));
110 pMem->xDel = 0;
259 assert( 0==(pMem->flags&MEM_Dyn) && !pMem->xDel );
283 }else if( p->flags&MEM_Dyn && p->xDel ){
285 p->xDel((void *)p->z);
286 p->xDel = 0;
305 p->xDel
[all...]
H A Dmain.c759 if( pColl[j].xDel ){
760 pColl[j].xDel(pColl[j].pUser);
1619 void(*xDel)(void*)
1657 ** Also, collation destructor - CollSeq.xDel() - function may need
1666 if( p->xDel ){
1667 p->xDel(p->pUser);
1679 pColl->xDel = xDel;
2130 void(*xDel)(void*)
2135 rc = createCollation(db, zName, (u8)enc, SQLITE_COLL_USER, pCtx, xCompare, xDel);
[all...]
H A DvdbeInt.h156 void (*xDel)(void *); /* If not null, call this function to delete Mem.z */ member in struct:Mem
H A Dcallback.c61 pColl->xDel = 0; /* Do not copy the destructor */
H A Dvdbeaux.c1665 ** The final parameter, xDel, must be one of SQLITE_DYNAMIC, SQLITE_STATIC
1674 void (*xDel)(void*) /* Memory management strategy for zName */
1681 assert( !zName || xDel!=SQLITE_DYNAMIC );
1686 rc = sqlite3VdbeMemSetStr(pColName, zName, -1, SQLITE_UTF8, xDel);
2778 pMem->xDel = 0;
H A Dvdbe.c1379 ctx.s.xDel = 0;
2513 pOut->xDel = 0;
5186 ctx.s.xDel = 0;
H A DsqliteInt.h1135 void (*xDel)(void*); /* Destructor for pUser */ member in struct:CollSeq
H A Dtest1.c3210 void (*xDel)() = (objc==6?SQLITE_STATIC:SQLITE_TRANSIENT);
3227 rc = sqlite3_bind_text16(pStmt, idx, (void *)value, bytes, xDel);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9480 void (*xDel)(void*); /* Destructor for pUser */ member in struct:CollSeq
12370 void (*xDel)(void *); /* If not null, call this function to delete Mem.z */ member in struct:Mem
61358 bindText( sqlite3_stmt *pStmt, int i, const void *zData, int nData, void (*xDel)(void*), u8 encoding ) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c10805 void (*xDel)(void*); /* Destructor for pUser */ member in struct:CollSeq
14039 void (*xDel)(void *); /* If not null, call this function to delete Mem.z */ member in struct:Mem
14074 #define MEM_Dyn 0x0400 /* Need to call Mem.xDel() on Mem.z */
67318 bindText( sqlite3_stmt *pStmt, int i, const void *zData, int nData, void (*xDel)(void*), u8 encoding ) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c10805 void (*xDel)(void*); /* Destructor for pUser */ member in struct:CollSeq
14039 void (*xDel)(void *); /* If not null, call this function to delete Mem.z */ member in struct:Mem
14074 #define MEM_Dyn 0x0400 /* Need to call Mem.xDel() on Mem.z */
67338 bindText( sqlite3_stmt *pStmt, int i, const void *zData, int nData, void (*xDel)(void*), u8 encoding ) argument
[all...]

Completed in 3567 milliseconds