Home
last modified time | relevance | path

Searched refs:xDestructor (Results 1 – 5 of 5) sorted by relevance

/external/sqlite/dist/
Dsqlite3.h7450 void (*xDestructor)(void*)
Dsqlite3.c7565 void (*xDestructor)(void*)
145066 void (*xDestructor)(void*);
148097 if( pInfo->xDestructor ) pInfo->xDestructor(pInfo->pContext);
148156 pGeomCtx->xDestructor = 0;
148172 void (*xDestructor)(void*) /* Destructor for the extra data */
148181 pGeomCtx->xDestructor = xDestructor;
/external/sqlite/dist/orig/
Dsqlite3.h7450 void (*xDestructor)(void*)
Dsqlite3.c7565 void (*xDestructor)(void*)
145034 void (*xDestructor)(void*);
148065 if( pInfo->xDestructor ) pInfo->xDestructor(pInfo->pContext);
148124 pGeomCtx->xDestructor = 0;
148140 void (*xDestructor)(void*) /* Destructor for the extra data */
148149 pGeomCtx->xDestructor = xDestructor;
/external/chromium_org/third_party/sqlite/src/src/
Dtest1.c3256 sqlite3_destructor_type xDestructor = SQLITE_TRANSIENT; in test_bind_blob() local
3265 xDestructor = SQLITE_STATIC; in test_bind_blob()
3274 rc = sqlite3_bind_blob(pStmt, idx, value, bytes, xDestructor); in test_bind_blob()