Home
last modified time | relevance | path

Searched defs:sqlite3_mutex_methods (Results 1 – 15 of 15) sorted by relevance

/external/sqlite/dist/sqlite-autoconf-3420000/
Dsqlite3.h7969 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
7970 struct sqlite3_mutex_methods { struct
7971 int (*xMutexInit)(void);
7972 int (*xMutexEnd)(void);
7973 sqlite3_mutex *(*xMutexAlloc)(int);
7974 void (*xMutexFree)(sqlite3_mutex *);
7975 void (*xMutexEnter)(sqlite3_mutex *);
7976 int (*xMutexTry)(sqlite3_mutex *);
7977 void (*xMutexLeave)(sqlite3_mutex *);
7978 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
Dsqlite3.c8279 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8280 struct sqlite3_mutex_methods { struct
8281 int (*xMutexInit)(void);
8282 int (*xMutexEnd)(void);
8283 sqlite3_mutex *(*xMutexAlloc)(int);
8284 void (*xMutexFree)(sqlite3_mutex *);
8285 void (*xMutexEnter)(sqlite3_mutex *);
8286 int (*xMutexTry)(sqlite3_mutex *);
8287 void (*xMutexLeave)(sqlite3_mutex *);
8288 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
/external/sqlite/dist/sqlite-autoconf-3440300/orig/
Dsqlite3.h8143 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8144 struct sqlite3_mutex_methods { struct
8145 int (*xMutexInit)(void);
8146 int (*xMutexEnd)(void);
8147 sqlite3_mutex *(*xMutexAlloc)(int);
8148 void (*xMutexFree)(sqlite3_mutex *);
8149 void (*xMutexEnter)(sqlite3_mutex *);
8150 int (*xMutexTry)(sqlite3_mutex *);
8151 void (*xMutexLeave)(sqlite3_mutex *);
8152 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
Dsqlite3.c8456 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8457 struct sqlite3_mutex_methods { struct
8458 int (*xMutexInit)(void);
8459 int (*xMutexEnd)(void);
8460 sqlite3_mutex *(*xMutexAlloc)(int);
8461 void (*xMutexFree)(sqlite3_mutex *);
8462 void (*xMutexEnter)(sqlite3_mutex *);
8463 int (*xMutexTry)(sqlite3_mutex *);
8464 void (*xMutexLeave)(sqlite3_mutex *);
8465 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
/external/rust/crates/libsqlite3-sys/sqlite3/
Dsqlite3.h7589 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
7590 struct sqlite3_mutex_methods { struct
7591 int (*xMutexInit)(void);
7592 int (*xMutexEnd)(void);
7593 sqlite3_mutex *(*xMutexAlloc)(int);
7594 void (*xMutexFree)(sqlite3_mutex *);
7595 void (*xMutexEnter)(sqlite3_mutex *);
7596 int (*xMutexTry)(sqlite3_mutex *);
7597 void (*xMutexLeave)(sqlite3_mutex *);
7598 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
Dbindgen_bundled_version.rs3451 pub struct sqlite3_mutex_methods { struct
3473 ::std::mem::size_of::<sqlite3_mutex_methods>(), in bindgen_test_layout_sqlite3_mutex_methods() argument
Dsqlite3.c8652 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8653 struct sqlite3_mutex_methods { struct
8654 int (*xMutexInit)(void);
8655 int (*xMutexEnd)(void);
8656 sqlite3_mutex *(*xMutexAlloc)(int);
8657 void (*xMutexFree)(sqlite3_mutex *);
8658 void (*xMutexEnter)(sqlite3_mutex *);
8659 int (*xMutexTry)(sqlite3_mutex *);
8660 void (*xMutexLeave)(sqlite3_mutex *);
8661 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
/external/sqlite/dist/sqlite-autoconf-3440300/
Dsqlite3.h8143 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8144 struct sqlite3_mutex_methods { struct
8145 int (*xMutexInit)(void);
8146 int (*xMutexEnd)(void);
8147 sqlite3_mutex *(*xMutexAlloc)(int);
8148 void (*xMutexFree)(sqlite3_mutex *);
8149 void (*xMutexEnter)(sqlite3_mutex *);
8150 int (*xMutexTry)(sqlite3_mutex *);
8151 void (*xMutexLeave)(sqlite3_mutex *);
8152 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
Dsqlite3.c8456 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8457 struct sqlite3_mutex_methods { struct
8458 int (*xMutexInit)(void);
8459 int (*xMutexEnd)(void);
8460 sqlite3_mutex *(*xMutexAlloc)(int);
8461 void (*xMutexFree)(sqlite3_mutex *);
8462 void (*xMutexEnter)(sqlite3_mutex *);
8463 int (*xMutexTry)(sqlite3_mutex *);
8464 void (*xMutexLeave)(sqlite3_mutex *);
8465 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
/external/sqlite/dist/sqlite-autoconf-3420000/orig/
Dsqlite3.h7969 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
7970 struct sqlite3_mutex_methods { struct
7971 int (*xMutexInit)(void);
7972 int (*xMutexEnd)(void);
7973 sqlite3_mutex *(*xMutexAlloc)(int);
7974 void (*xMutexFree)(sqlite3_mutex *);
7975 void (*xMutexEnter)(sqlite3_mutex *);
7976 int (*xMutexTry)(sqlite3_mutex *);
7977 void (*xMutexLeave)(sqlite3_mutex *);
7978 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
Dsqlite3.c8279 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8280 struct sqlite3_mutex_methods { struct
8281 int (*xMutexInit)(void);
8282 int (*xMutexEnd)(void);
8283 sqlite3_mutex *(*xMutexAlloc)(int);
8284 void (*xMutexFree)(sqlite3_mutex *);
8285 void (*xMutexEnter)(sqlite3_mutex *);
8286 int (*xMutexTry)(sqlite3_mutex *);
8287 void (*xMutexLeave)(sqlite3_mutex *);
8288 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
/external/rust/crates/libsqlite3-sys/bindgen-bindings/
Dbindgen_3.6.8.rs1688 pub struct sqlite3_mutex_methods { struct
1689 pub xMutexInit: ::std::option::Option<unsafe extern "C" fn()
1714 assert_eq!(::std::mem::size_of::<sqlite3_mutex_methods>() , 72usize); in bindgen_test_layout_sqlite3_mutex_methods() argument
1717 impl Clone for sqlite3_mutex_methods { implementation
Dbindgen_3.6.23.rs1706 pub struct sqlite3_mutex_methods { struct
1707 pub xMutexInit: ::std::option::Option<unsafe extern "C" fn()
1732 assert_eq!(::std::mem::size_of::<sqlite3_mutex_methods>() , 72usize); in bindgen_test_layout_sqlite3_mutex_methods() argument
1735 impl Clone for sqlite3_mutex_methods { implementation
Dbindgen_3.7.7.rs1871 pub struct sqlite3_mutex_methods { struct
1872 pub xMutexInit: ::std::option::Option<unsafe extern "C" fn()
1897 assert_eq!(::std::mem::size_of::<sqlite3_mutex_methods>() , 72usize); in bindgen_test_layout_sqlite3_mutex_methods() argument
1900 impl Clone for sqlite3_mutex_methods { implementation
Dbindgen_3.7.16.rs1942 pub struct sqlite3_mutex_methods { struct
1943 pub xMutexInit: ::std::option::Option<unsafe extern "C" fn()
1968 assert_eq!(::std::mem::size_of::<sqlite3_mutex_methods>() , 72usize); in bindgen_test_layout_sqlite3_mutex_methods() argument
1971 impl Clone for sqlite3_mutex_methods { implementation