Home | History | Annotate | Download | only in dist

Lines Matching defs:sqlite3_file_control

526 #define SQLITE_NOTFOUND    12   /* Unknown opcode in sqlite3_file_control() */
786 ** [sqlite3_file_control()] interface. The second "op" argument is an
870 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()]
892 ** by the user. The fourth argument to [sqlite3_file_control()] should
901 ** connection. See the [sqlite3_file_control()] documentation for
918 ** should not call [sqlite3_file_control()] with this opcode as doing so may
926 ** [sqlite3_file_control()] with this opcode as doing so may disrupt the
956 ** [sqlite3_file_control()] for this opcode should be a pointer to an integer.
966 ** [sqlite3_file_control()] for this opcode should be a pointer to an integer.
982 ** that the fourth parameter of [sqlite3_file_control()] points to.
6202 ** ^The [sqlite3_file_control()] interface makes a direct call to the
6231 SQLITE_API int sqlite3_file_control(sqlite3*, const char *zDbName, int op, void*);
30559 ** sqlite3_file_control(db, dbname, SQLITE_SET_LOCKPROXYFILE,
30561 ** sqlite3_file_control(db, dbname, SQLITE_GET_LOCKPROXYFILE, &<proxy_path>);
31476 ** This routine handles sqlite3_file_control() calls that are specific
74418 sqlite3_file_control(db, db->aDb[i].zName, SQLITE_FCNTL_TRACE, zTrace);
97395 #define sqlite3_file_control sqlite3_api->file_control
97755 sqlite3_file_control,
98985 rc = sqlite3_file_control(db, zDb, SQLITE_FCNTL_PRAGMA, (void*)aFcntl);
99410 rc = sqlite3_file_control(db, zDb, SQLITE_FCNTL_MMAP_SIZE, &sz);
100519 }else if( sqlite3_file_control(db, i ? db->aDb[i].zName : 0,
125219 SQLITE_API int sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg){