Home
last modified time | relevance | path

Searched refs:sqlite3_int64 (Results 1 – 4 of 4) sorted by relevance

/netbsd/src/external/public-domain/sqlite/dist/
Dsqlite3.h304 typedef sqlite_int64 sqlite3_int64; typedef
312 # define double sqlite3_int64
838 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
839 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
840 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
842 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
855 int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp);
856 int (*xUnfetch)(sqlite3_file*, sqlite3_int64 iOfst, void *p);
1489 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*);
2586 SQLITE_API sqlite3_int64 sqlite3_last_insert_rowid(sqlite3*);
[all …]
Dsqlite3ext.h174 int (*blob_open)(sqlite3*,const char*,const char*,const char*,sqlite3_int64,
182 sqlite3_int64 (*memory_highwater)(int);
183 sqlite3_int64 (*memory_used)(void);
226 sqlite3_int64 (*soft_heap_limit64)(sqlite3_int64);
234 int (*blob_reopen)(sqlite3_blob*,sqlite3_int64);
247 sqlite3_int64 (*uri_int64)(const char*,const char*,sqlite3_int64);
277 int (*status64)(int,sqlite3_int64*,sqlite3_int64*,int);
286 void (*set_last_insert_rowid)(sqlite3*,sqlite3_int64);
328 sqlite3_int64 (*hard_heap_limit64)(sqlite3_int64);
341 sqlite3_int64 (*changes64)(sqlite3*);
[all …]
Dshell.c122 typedef sqlite3_int64 i64;
1290 static sqlite3_int64 timeOfDay(void){ in timeOfDay()
1292 sqlite3_int64 t; in timeOfDay()
1300 t = (sqlite3_int64)(r*86400000.0); in timeOfDay()
1320 static sqlite3_int64 iBegin; /* Wall-clock time at start */
1343 sqlite3_int64 iEnd = timeOfDay(); in endTimer()
1363 static sqlite3_int64 ftWallBegin;
1423 sqlite3_int64 ftWallEnd = timeOfDay(); in endTimer()
1848 static sqlite3_int64 integerValue(const char *zArg){ in integerValue()
1849 sqlite3_int64 v = 0; in integerValue()
[all …]
Dsqlite3.c617 typedef sqlite_int64 sqlite3_int64; typedef
625 # define double sqlite3_int64
1151 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
1152 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
1153 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
1155 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
1168 int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp);
1169 int (*xUnfetch)(sqlite3_file*, sqlite3_int64 iOfst, void *p);
1802 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*);
2899 SQLITE_API sqlite3_int64 sqlite3_last_insert_rowid(sqlite3*);
[all …]