Lines Matching refs:pArg
1728 void *pArg in sqlite3_busy_handler() argument
1735 db->busyHandler.pBusyArg = pArg; in sqlite3_busy_handler()
1752 void *pArg in sqlite3_progress_handler() argument
1764 db->pProgressArg = pArg; in sqlite3_progress_handler()
1961 FuncDestructor *pArg = 0; in createFunctionApi() local
1970 pArg = (FuncDestructor *)sqlite3Malloc(sizeof(FuncDestructor)); in createFunctionApi()
1971 if( !pArg ){ in createFunctionApi()
1976 pArg->nRef = 0; in createFunctionApi()
1977 pArg->xDestroy = xDestroy; in createFunctionApi()
1978 pArg->pUserData = p; in createFunctionApi()
1981 xSFunc, xStep, xFinal, xValue, xInverse, pArg in createFunctionApi()
1983 if( pArg && pArg->nRef==0 ){ in createFunctionApi()
1986 sqlite3_free(pArg); in createFunctionApi()
2137 void *sqlite3_trace(sqlite3 *db, void(*xTrace)(void*,const char*), void *pArg){ in sqlite3_trace() argument
2150 db->pTraceArg = pArg; in sqlite3_trace()
2162 void *pArg /* Context */ in sqlite3_trace_v2() argument
2174 db->pTraceArg = pArg; in sqlite3_trace_v2()
2191 void *pArg in sqlite3_profile() argument
2204 db->pProfileArg = pArg; in sqlite3_profile()
2221 void *pArg /* Argument to the function */ in sqlite3_commit_hook() argument
2234 db->pCommitArg = pArg; in sqlite3_commit_hook()
2246 void *pArg /* Argument to the function */ in sqlite3_update_hook() argument
2259 db->pUpdateArg = pArg; in sqlite3_update_hook()
2271 void *pArg /* Argument to the function */ in sqlite3_rollback_hook() argument
2284 db->pRollbackArg = pArg; in sqlite3_rollback_hook()
2298 void *pArg /* First callback argument */ in sqlite3_preupdate_hook() argument
2304 db->pPreUpdateArg = pArg; in sqlite3_preupdate_hook()
2317 void *pArg, /* Argument to the function */ in sqlite3_autovacuum_pages() argument
2322 if( xDestructor ) xDestructor(pArg); in sqlite3_autovacuum_pages()
2331 db->pAutovacPagesArg = pArg; in sqlite3_autovacuum_pages()
2395 void *pArg /* First argument passed to xCallback() */ in sqlite3_wal_hook() argument
2408 db->pWalArg = pArg; in sqlite3_wal_hook()
3504 void *pArg = sqlite3GlobalConfig.pSqllogArg; in openDatabase() local
3505 sqlite3GlobalConfig.xSqllog(pArg, db, zFilename, 0); in openDatabase()
3917 int sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg){ in sqlite3_file_control() argument
3935 *(sqlite3_file**)pArg = fd; in sqlite3_file_control()
3938 *(sqlite3_vfs**)pArg = sqlite3PagerVfs(pPager); in sqlite3_file_control()
3941 *(sqlite3_file**)pArg = sqlite3PagerJrnlFile(pPager); in sqlite3_file_control()
3944 *(unsigned int*)pArg = sqlite3PagerDataVersion(pPager); in sqlite3_file_control()
3947 int iNew = *(int*)pArg; in sqlite3_file_control()
3948 *(int*)pArg = sqlite3BtreeGetRequestedReserve(pBtree); in sqlite3_file_control()
3955 rc = sqlite3OsFileControl(fd, op, pArg); in sqlite3_file_control()