HomeSort by relevance Sort by last modified time
    Searched full:sqlite3_file (Results 26 - 45 of 45) sorted by null

12

  /external/chromium_org/third_party/sqlite/src/src/
os_win.c 97 ** The winFile structure is a subclass of sqlite3_file* specific to the win32
671 static int winClose(sqlite3_file *id){
708 sqlite3_file *id, /* File to read from */
741 sqlite3_file *id, /* File to write into */
784 static int winTruncate(sqlite3_file *id, sqlite3_int64 nByte){
826 static int winSync(sqlite3_file *id, int flags){
874 static int winFileSize(sqlite3_file *id, sqlite3_int64 *pSize){
976 static int winLock(sqlite3_file *id, int locktype){
1099 static int winCheckReservedLock(sqlite3_file *id, int *pResOut){
    [all...]
pager.h 153 sqlite3_file *sqlite3PagerFile(Pager*);
wal.h 49 int sqlite3WalOpen(sqlite3_vfs*, sqlite3_file*, const char *zName, int, Wal**);
sqlite.h.in 562 ** An [sqlite3_file] object represents an open file in the
570 typedef struct sqlite3_file sqlite3_file;
571 struct sqlite3_file {
579 ** [sqlite3_file] object (or, more commonly, a subclass of the
580 ** [sqlite3_file] object) with a pointer to an instance of this object.
582 ** against the open file represented by the [sqlite3_file] object.
584 ** If the xOpen method sets the sqlite3_file.pMethods element
588 ** is for the xOpen to set the sqlite3_file.pMethods element to NULL.
667 int (*xClose)(sqlite3_file*);
    [all...]
backup.c 301 static int backupTruncateFile(sqlite3_file *pFile, i64 iSize){
458 sqlite3_file * const pFile = sqlite3PagerFile(pDestPager);
test2.c 536 sqlite3_file *fd = 0;
pager.c 128 ** associated file-descriptor is returned. FILEHANDLEID() takes an sqlite3_file
649 sqlite3_file *fd; /* File descriptor for database */
650 sqlite3_file *jfd; /* File descriptor for main journal */
651 sqlite3_file *sjfd; /* File descriptor for sub-journal */
    [all...]
pragma.c 789 sqlite3_file *pFile = sqlite3PagerFile(pPager);
802 sqlite3_file *pFile = sqlite3PagerFile(pPager);
    [all...]
sqliteInt.h     [all...]
wal.c 412 sqlite3_file *pDbFd; /* File handle for the database file */
413 sqlite3_file *pWalFd; /* File handle for WAL file */
    [all...]
main.c     [all...]
vdbeaux.c     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 1118 typedef struct sqlite3_file sqlite3_file; typedef in typeref:struct:sqlite3_file
1119 struct sqlite3_file { struct
    [all...]
sqlite3.h 567 ** An [sqlite3_file] object represents an open file in the
575 typedef struct sqlite3_file sqlite3_file; typedef in typeref:struct:sqlite3_file
576 struct sqlite3_file { struct
584 ** [sqlite3_file] object (or, more commonly, a subclass of the
585 ** [sqlite3_file] object) with a pointer to an instance of this object.
587 ** against the open file represented by the [sqlite3_file] object.
589 ** If the xOpen method sets the sqlite3_file.pMethods element
593 ** is for the xOpen to set the sqlite3_file.pMethods element to NULL.
672 int (*xClose)(sqlite3_file*);
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 1137 typedef struct sqlite3_file sqlite3_file; typedef in typeref:struct:sqlite3_file
1138 struct sqlite3_file { struct
    [all...]
sqlite3.h 579 ** An [sqlite3_file] object represents an open file in the
587 typedef struct sqlite3_file sqlite3_file; typedef in typeref:struct:sqlite3_file
588 struct sqlite3_file { struct
596 ** [sqlite3_file] object (or, more commonly, a subclass of the
597 ** [sqlite3_file] object) with a pointer to an instance of this object.
599 ** against the open file represented by the [sqlite3_file] object.
601 ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element
605 ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element
685 int (*xClose)(sqlite3_file*);
    [all...]
  /external/sqlite/dist/
sqlite3.c 1137 typedef struct sqlite3_file sqlite3_file; typedef in typeref:struct:sqlite3_file
1138 struct sqlite3_file { struct
    [all...]
sqlite3.h 579 ** An [sqlite3_file] object represents an open file in the
587 typedef struct sqlite3_file sqlite3_file; typedef in typeref:struct:sqlite3_file
588 struct sqlite3_file { struct
596 ** [sqlite3_file] object (or, more commonly, a subclass of the
597 ** [sqlite3_file] object) with a pointer to an instance of this object.
599 ** against the open file represented by the [sqlite3_file] object.
601 ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element
605 ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element
685 int (*xClose)(sqlite3_file*);
    [all...]
  /external/chromium_org/third_party/sqlite/
preload-cache.patch 240 sqlite3_file *sqlite3PagerFile(Pager*);
  /external/chromium_org/sql/
connection.cc 431 sqlite3_file* file = NULL;
    [all...]

Completed in 413 milliseconds

12