/external/llvm/test/CodeGen/X86/ |
2009-04-29-RegAllocAssert.ll | 43 %struct.Pager = type { %struct.sqlite3_vfs*, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, %struct.Bitvec*, %struct.Bitvec*, i8*, i8*, i8*, i8*, %struct.sqlite3_file*, %struct.sqlite3_file*, %struct.sqlite3_file*, %struct.BusyHandler*, %struct.PagerLruList, %struct.DbPage*, %struct.DbPage*, %struct.DbPage*, i64, i64, i64, i64, i64, i32, void (%struct.DbPage*, i32)*, void (%struct.DbPage*, i32)*, i32, %struct.DbPage**, i8*, [16 x i8] } 61 %struct.sqlite3_file = type { %struct.sqlite3_io_methods* } 65 %struct.sqlite3_io_methods = type { i32, i32 (%struct.sqlite3_file*)*, i32 (%struct.sqlite3_file*, i8*, i32, i64)*, i32 (%struct.sqlite3_file*, i8*, i32, i64)*, i32 (%struct.sqlite3_file*, i64)*, i32 (%struct.sqlite3_file*, i32)*, i32 (%struct.sqlite3_file*, i64*)*, i32 (%struct.sqlite3_file*, i32)*, i32 (%struct.sqlite3_file*, i32)*, i32 (%struct.sqlit (…) [all...] |
/external/llvm/test/Transforms/GVN/ |
2009-01-22-SortInvalidation.ll | 40 %struct.Pager = type { %struct.sqlite3_vfs*, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, %struct.Bitvec*, %struct.Bitvec*, i8*, i8*, i8*, i8*, %struct.sqlite3_file*, %struct.sqlite3_file*, %struct.sqlite3_file*, %struct.BusyHandler*, %struct.PagerLruList, %struct.PgHdr*, %struct.PgHdr*, %struct.PgHdr*, i64, i64, i64, i64, i64, i32, void (%struct.PgHdr*, i32)*, void (%struct.PgHdr*, i32)*, i32, %struct.PgHdr**, i8*, [16 x i8] } 63 %struct.sqlite3_file = type { %struct.sqlite3_io_methods* } 67 %struct.sqlite3_io_methods = type { i32, i32 (%struct.sqlite3_file*)*, i32 (%struct.sqlite3_file*, i8*, i32, i64)*, i32 (%struct.sqlite3_file*, i8*, i32, i64)*, i32 (%struct.sqlite3_file*, i64)*, i32 (%struct.sqlite3_file*, i32)*, i32 (%struct.sqlite3_file*, i64*)*, i32 (%struct.sqlite3_file*, i32)*, i32 (%struct.sqlite3_file*, i32)*, i32 (%struct.sqlit (…) [all...] |
/external/webkit/Source/WebCore/platform/sql/chromium/ |
SQLiteFileSystemChromiumPosix.cpp | 45 void chromium_sqlite3_initialize_unix_sqlite3_file(sqlite3_file* file); 46 int chromium_sqlite3_fill_in_unix_sqlite3_file(sqlite3_vfs* vfs, int fd, int dirfd, sqlite3_file* file, const char* fileName, int noLock); 47 int chromium_sqlite3_get_reusable_file_handle(sqlite3_file* file, const char* fileName, int flags, int* fd); 48 void chromium_sqlite3_update_reusable_file_handle(sqlite3_file* file, int fd, int flags); 49 void chromium_sqlite3_destroy_reusable_file_handle(sqlite3_file* file); 63 sqlite3_file* id, int desiredFlags, int* usedFlags)
|
SQLiteFileSystemChromiumWin.cpp | 42 int chromium_sqlite3_initialize_win_sqlite3_file(sqlite3_file* file, HANDLE handle); 56 sqlite3_file* id, int desiredFlags, int* usedFlags)
|
/external/sqlite/dist/ |
sqlite3.c | 1123 typedef struct sqlite3_file sqlite3_file; typedef in typeref:struct:sqlite3_file 1124 struct sqlite3_file { struct [all...] |
sqlite3.c.orig | [all...] |
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.h.orig | 565 ** An [sqlite3_file] object represents an open file in the 573 typedef struct sqlite3_file sqlite3_file; 574 struct sqlite3_file { 582 ** [sqlite3_file] object (or, more commonly, a subclass of the 583 ** [sqlite3_file] object) with a pointer to an instance of this object. 585 ** against the open file represented by the [sqlite3_file] object. 587 ** If the xOpen method sets the sqlite3_file.pMethods element 591 ** is for the xOpen to set the sqlite3_file.pMethods element to NULL. 668 int (*xClose)(sqlite3_file*); [all...] |
/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...] |