Lines Matching refs:pArg
919 static int multiplexFileControl(sqlite3_file *pConn, int op, void *pArg){ in multiplexFileControl() argument
928 if( pArg ) { in multiplexFileControl()
929 int bEnabled = *(int *)pArg; in multiplexFileControl()
935 if( pArg ) { in multiplexFileControl()
936 unsigned int szChunk = *(unsigned*)pArg; in multiplexFileControl()
957 char **aFcntl = (char**)pArg; in multiplexFileControl()
1045 rc = pSubOpen->pMethods->xFileControl(pSubOpen, op, pArg); in multiplexFileControl()
1047 *(char**)pArg = sqlite3_mprintf("multiplex/%z", *(char**)pArg); in multiplexFileControl()
1306 void *pArg = 0; in test_multiplex_control() local
1342 pArg = (void *)&iValue; in test_multiplex_control()
1349 rc = sqlite3_file_control(db, Tcl_GetString(objv[2]), aSub[idx].op, pArg); in test_multiplex_control()