Lines Matching refs:sqlite3_file_control
1473 #define SQLITE_NOTFOUND 12 /* Unknown opcode in sqlite3_file_control() */
1762 ** [sqlite3_file_control()] interface. The second "op" argument is an
1850 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()]
1883 ** by the user. The fourth argument to [sqlite3_file_control()] should
1914 ** should not call [sqlite3_file_control()] with this opcode as doing so may
1922 ** [sqlite3_file_control()] with this opcode as doing so may disrupt the
1953 ** [sqlite3_file_control()] for this opcode should be a pointer to an integer.
1963 ** [sqlite3_file_control()] for this opcode should be a pointer to an integer.
1979 ** that the fourth parameter of [sqlite3_file_control()] points to.
1989 ** sqlite3_file_control(db,SQLITE_FCNTL_VFS_POINTER,X) must be
3060 ** [SQLITE_FCNTL_SIZE_LIMIT] [sqlite3_file_control|file-control]. If this
8652 ** ^The [sqlite3_file_control()] interface makes a direct call to the
8665 ** A few opcodes for [sqlite3_file_control()] are handled directly
8688 SQLITE_API int sqlite3_file_control(sqlite3*, const char *zDbName, int op, void*);
40136 ** sqlite3_file_control(db, dbname, SQLITE_FCNTL_SET_LOCKPROXYFILE,
40138 ** sqlite3_file_control(db, dbname, SQLITE_FCNTL_GET_LOCKPROXYFILE,
41059 ** This routine handles sqlite3_file_control() calls that are specific
48196 int rc = sqlite3_file_control(db, zSchema, SQLITE_FCNTL_FILE_POINTER, &p);
92900 sqlite3_file_control(db, db->aDb[j].zDbSName, SQLITE_FCNTL_TRACE, zTrace);
123691 #define sqlite3_file_control sqlite3_api->file_control
124131 sqlite3_file_control,
125789 rc = sqlite3_file_control(db, zDb, SQLITE_FCNTL_PRAGMA, (void*)aFcntl);
126251 rc = sqlite3_file_control(db, zDb, SQLITE_FCNTL_MMAP_SIZE, &sz);
127557 }else if( sqlite3_file_control(db, i ? db->aDb[i].zDbSName : 0,
163954 SQLITE_API int sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg){
197724 sqlite3_file_control(p->dbRbu, "main", SQLITE_FCNTL_RBUCNT, (void*)p);
197784 rc = sqlite3_file_control(p->dbRbu, "main", SQLITE_FCNTL_RBUCNT, (void*)p);
197858 p->rc = sqlite3_file_control(p->dbMain, "main", SQLITE_FCNTL_RBU, (void*)p);
197866 p->rc = sqlite3_file_control(p->dbMain, "main", SQLITE_FCNTL_RBU, (void*)p);
199029 int frc = sqlite3_file_control(db, "main", SQLITE_FCNTL_ZIPVFS, 0);