Searched refs:aFcntl (Results 1 – 2 of 2) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | test_multiplex.c | 957 char **aFcntl = (char**)pArg; in multiplexFileControl() local 965 if( aFcntl[1] && sqlite3_strnicmp(aFcntl[1],"multiplex_",10)==0 ){ in multiplexFileControl() 977 if( aFcntl[2] && aFcntl[2][0] ){ in multiplexFileControl() 978 if( sqlite3_stricmp(aFcntl[2], "on")==0 in multiplexFileControl() 979 || sqlite3_stricmp(aFcntl[2], "1")==0 ){ in multiplexFileControl() 982 if( sqlite3_stricmp(aFcntl[2], "off")==0 in multiplexFileControl() 983 || sqlite3_stricmp(aFcntl[2], "0")==0 ){ in multiplexFileControl() 1003 if( sqlite3_stricmp(aFcntl[1],"multiplex_enabled")==0 ){ in multiplexFileControl() 1014 if( sqlite3_stricmp(aFcntl[1],"multiplex_chunksize")==0 in multiplexFileControl() 1017 aFcntl[0] = sqlite3_mprintf("%u", pGroup->szChunk); in multiplexFileControl() [all …]
|
| H A D | pragma.c | 392 char *aFcntl[4]; /* Argument to SQLITE_FCNTL_PRAGMA */ in sqlite3Pragma() local 446 aFcntl[0] = 0; in sqlite3Pragma() 447 aFcntl[1] = zLeft; in sqlite3Pragma() 448 aFcntl[2] = zRight; in sqlite3Pragma() 449 aFcntl[3] = 0; in sqlite3Pragma() 451 rc = sqlite3_file_control(db, zDb, SQLITE_FCNTL_PRAGMA, (void*)aFcntl); in sqlite3Pragma() 455 returnSingleText(v, aFcntl[0]); in sqlite3Pragma() 456 sqlite3_free(aFcntl[0]); in sqlite3Pragma() 460 if( aFcntl[0] ){ in sqlite3Pragma() 461 sqlite3ErrorMsg(pParse, "%s", aFcntl[0]); in sqlite3Pragma() [all …]
|