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.h8532 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
8533 struct sqlite3_pcache_methods { struct
8534 void *pArg;
8535 int (*xInit)(void*);
8536 void (*xShutdown)(void*);
8537 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
8538 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
8539 int (*xPagecount)(sqlite3_pcache*);
8540 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
8541 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
Dbindgen_bundled_version.rs3949 pub struct sqlite3_pcache_methods { struct
3950 pub pArg: *mut ::std::os::raw::c_void,
3951 pub xInit: ::std::option::Option<
3954 pub xShutdown: ::std::option::Option<unsafe extern "C" fn(arg1: *mut ::std::os::raw::c_void)>,
3955 pub xCreate: ::std::option::Option<
3961 pub xCachesize: ::std::option::Option<
3964 pub xPagecount: ::std::option::Option<
3967 pub xFetch: ::std::option::Option<
3997 ::std::mem::size_of::<sqlite3_pcache_methods>(), in bindgen_test_layout_sqlite3_pcache_methods() argument
Dsqlite3.c9595 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
9596 struct sqlite3_pcache_methods { struct
9597 void *pArg;
9598 int (*xInit)(void*);
9599 void (*xShutdown)(void*);
9600 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
9601 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
9602 int (*xPagecount)(sqlite3_pcache*);
9603 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
9604 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
/external/sqlite/dist/
Dsqlite3.h8784 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
8785 struct sqlite3_pcache_methods { struct
8786 void *pArg;
8787 int (*xInit)(void*);
8788 void (*xShutdown)(void*);
8789 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
8790 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
8791 int (*xPagecount)(sqlite3_pcache*);
8792 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
8793 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
Dsqlite3.c9090 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
9091 struct sqlite3_pcache_methods { struct
9092 void *pArg;
9093 int (*xInit)(void*);
9094 void (*xShutdown)(void*);
9095 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
9096 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
9097 int (*xPagecount)(sqlite3_pcache*);
9098 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
9099 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
/external/sqlite/dist/orig/
Dsqlite3.h8784 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
8785 struct sqlite3_pcache_methods { struct
8786 void *pArg;
8787 int (*xInit)(void*);
8788 void (*xShutdown)(void*);
8789 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
8790 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
8791 int (*xPagecount)(sqlite3_pcache*);
8792 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
8793 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
[all …]
Dsqlite3.c9090 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
9091 struct sqlite3_pcache_methods { struct
9092 void *pArg;
9093 int (*xInit)(void*);
9094 void (*xShutdown)(void*);
9095 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
9096 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
9097 int (*xPagecount)(sqlite3_pcache*);
9098 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
9099 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