Home
last modified time | relevance | path

Searched defs:sqlite3_pcache_methods (Results 1 – 11 of 11) sorted by relevance

/external/rust/crates/libsqlite3-sys/sqlite3/
Dsqlite3.h8465 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
8466 struct sqlite3_pcache_methods { struct
8467 void *pArg;
8468 int (*xInit)(void*);
8469 void (*xShutdown)(void*);
8470 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
8471 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
8472 int (*xPagecount)(sqlite3_pcache*);
8473 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
8474 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
Dbindgen_bundled_version.rs3937 pub struct sqlite3_pcache_methods { struct
3938 pub pArg: *mut ::std::os::raw::c_void,
3939 pub xInit: ::std::option::Option<
3942 pub xShutdown: ::std::option::Option<unsafe extern "C" fn(arg1: *mut ::std::os::raw::c_void)>,
3943 pub xCreate: ::std::option::Option<
3949 pub xCachesize: ::std::option::Option<
3952 pub xPagecount: ::std::option::Option<
3955 pub xFetch: ::std::option::Option<
3985 ::std::mem::size_of::<sqlite3_pcache_methods>(), in bindgen_test_layout_sqlite3_pcache_methods() argument
Dsqlite3.c9513 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
9514 struct sqlite3_pcache_methods { struct
9515 void *pArg;
9516 int (*xInit)(void*);
9517 void (*xShutdown)(void*);
9518 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
9519 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
9520 int (*xPagecount)(sqlite3_pcache*);
9521 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
9522 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
/external/sqlite/dist/
Dsqlite3.h8459 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
8460 struct sqlite3_pcache_methods { struct
8461 void *pArg;
8462 int (*xInit)(void*);
8463 void (*xShutdown)(void*);
8464 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
8465 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
8466 int (*xPagecount)(sqlite3_pcache*);
8467 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
8468 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
Dsqlite3.c9498 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
9499 struct sqlite3_pcache_methods { struct
9500 void *pArg;
9501 int (*xInit)(void*);
9502 void (*xShutdown)(void*);
9503 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
9504 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
9505 int (*xPagecount)(sqlite3_pcache*);
9506 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
9507 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
/external/sqlite/dist/orig/
Dsqlite3.h8459 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
8460 struct sqlite3_pcache_methods { struct
8461 void *pArg;
8462 int (*xInit)(void*);
8463 void (*xShutdown)(void*);
8464 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
8465 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
8466 int (*xPagecount)(sqlite3_pcache*);
8467 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
8468 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
Dsqlite3.c9498 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
9499 struct sqlite3_pcache_methods { struct
9500 void *pArg;
9501 int (*xInit)(void*);
9502 void (*xShutdown)(void*);
9503 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
9504 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
9505 int (*xPagecount)(sqlite3_pcache*);
9506 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
9507 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
/external/rust/crates/libsqlite3-sys/bindgen-bindings/
Dbindgen_3.6.8.rs1767 pub struct sqlite3_pcache_methods { struct
1768 pub pArg: *mut ::std::os::raw::c_void,
1769 pub xInit: ::std::option::Option<unsafe extern "C" fn(arg1:
1772 pub xShutdown: ::std::option::Option<unsafe extern "C" fn(arg1:
1774 pub xCreate: ::std::option::Option<unsafe extern "C" fn(szPage:
1779 pub xCachesize: ::std::option::Option<unsafe extern "C" fn(arg1:
1783 pub xPagecount: ::std::option::Option<unsafe extern "C" fn(arg1:
1786 pub xFetch: ::std::option::Option<unsafe extern "C" fn(arg1:
1816 assert_eq!(::std::mem::size_of::<sqlite3_pcache_methods>() , 88usize); in bindgen_test_layout_sqlite3_pcache_methods() argument
1819 impl Clone for sqlite3_pcache_methods { implementation
Dbindgen_3.6.23.rs1785 pub struct sqlite3_pcache_methods { struct
1786 pub pArg: *mut ::std::os::raw::c_void,
1787 pub xInit: ::std::option::Option<unsafe extern "C" fn(arg1:
1790 pub xShutdown: ::std::option::Option<unsafe extern "C" fn(arg1:
1792 pub xCreate: ::std::option::Option<unsafe extern "C" fn(szPage:
1797 pub xCachesize: ::std::option::Option<unsafe extern "C" fn(arg1:
1801 pub xPagecount: ::std::option::Option<unsafe extern "C" fn(arg1:
1804 pub xFetch: ::std::option::Option<unsafe extern "C" fn(arg1:
1834 assert_eq!(::std::mem::size_of::<sqlite3_pcache_methods>() , 88usize); in bindgen_test_layout_sqlite3_pcache_methods() argument
1837 impl Clone for sqlite3_pcache_methods { implementation
Dbindgen_3.7.7.rs1950 pub struct sqlite3_pcache_methods { struct
1951 pub pArg: *mut ::std::os::raw::c_void,
1952 pub xInit: ::std::option::Option<unsafe extern "C" fn(arg1:
1955 pub xShutdown: ::std::option::Option<unsafe extern "C" fn(arg1:
1957 pub xCreate: ::std::option::Option<unsafe extern "C" fn(szPage:
1962 pub xCachesize: ::std::option::Option<unsafe extern "C" fn(arg1:
1966 pub xPagecount: ::std::option::Option<unsafe extern "C" fn(arg1:
1969 pub xFetch: ::std::option::Option<unsafe extern "C" fn(arg1:
1999 assert_eq!(::std::mem::size_of::<sqlite3_pcache_methods>() , 88usize); in bindgen_test_layout_sqlite3_pcache_methods() argument
2002 impl Clone for sqlite3_pcache_methods { implementation
Dbindgen_3.7.16.rs2097 pub struct sqlite3_pcache_methods { struct
2098 pub pArg: *mut ::std::os::raw::c_void,
2099 pub xInit: ::std::option::Option<unsafe extern "C" fn(arg1:
2102 pub xShutdown: ::std::option::Option<unsafe extern "C" fn(arg1:
2104 pub xCreate: ::std::option::Option<unsafe extern "C" fn(szPage:
2109 pub xCachesize: ::std::option::Option<unsafe extern "C" fn(arg1:
2113 pub xPagecount: ::std::option::Option<unsafe extern "C" fn(arg1:
2116 pub xFetch: ::std::option::Option<unsafe extern "C" fn(arg1:
2146 assert_eq!(::std::mem::size_of::<sqlite3_pcache_methods>() , 88usize); in bindgen_test_layout_sqlite3_pcache_methods() argument
2149 impl Clone for sqlite3_pcache_methods { implementation