HomeSort by relevance Sort by last modified time
    Searched defs:sqlite3_file (Results 1 - 3 of 3) sorted by null

  /external/webkit/WebKitLibraries/WebCoreSQLite3/
sqlite3.h 477 ** An [sqlite3_file] object represents an open file in the OS
484 typedef struct sqlite3_file sqlite3_file; typedef in typeref:struct:sqlite3_file
485 struct sqlite3_file { struct
493 ** [sqlite3_file] object (or, more commonly, a subclass of the
494 ** [sqlite3_file] object) with a pointer to an instance of this object.
496 ** against the open file represented by the [sqlite3_file] object.
573 int (*xClose)(sqlite3_file*);
574 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
575 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst)
    [all...]
  /external/sqlite/dist/
sqlite3.h 568 ** An [sqlite3_file] object represents an open file in the
576 typedef struct sqlite3_file sqlite3_file; typedef in typeref:struct:sqlite3_file
577 struct sqlite3_file { struct
585 ** [sqlite3_file] object (or, more commonly, a subclass of the
586 ** [sqlite3_file] object) with a pointer to an instance of this object.
588 ** against the open file represented by the [sqlite3_file] object.
590 ** If the xOpen method sets the sqlite3_file.pMethods element
594 ** is for the xOpen to set the sqlite3_file.pMethods element to NULL.
671 int (*xClose)(sqlite3_file*);
    [all...]
sqlite3.c 1123 typedef struct sqlite3_file sqlite3_file; typedef in typeref:struct:sqlite3_file
1124 struct sqlite3_file { struct
    [all...]

Completed in 98 milliseconds