Searched refs:commit_hook (Results 1 – 9 of 9) sorted by relevance
/external/rust/crates/rusqlite/src/ |
D | hooks.rs | 348 pub fn commit_hook<F>(&self, hook: Option<F>) in commit_hook() method 352 self.db.borrow_mut().commit_hook(hook); in commit_hook() 413 self.commit_hook(None::<fn() -> bool>); in remove_hooks() 419 fn commit_hook<F>(&mut self, hook: Option<F>) in commit_hook() method 695 db.commit_hook(Some(|| { in test_commit_hook() 712 db.commit_hook(Some(hook)); in test_fn_commit_hook()
|
/external/sqlite/dist/ |
D | sqlite3ext.h | 75 void * (*commit_hook)(sqlite3*,int(*)(void*),void*); member 404 #define sqlite3_commit_hook sqlite3_api->commit_hook
|
D | sqlite3.c | 123366 void * (*commit_hook)(sqlite3*,int(*)(void*),void*); 123695 #define sqlite3_commit_hook sqlite3_api->commit_hook
|
/external/sqlite/dist/orig/ |
D | sqlite3ext.h | 75 void * (*commit_hook)(sqlite3*,int(*)(void*),void*); member 404 #define sqlite3_commit_hook sqlite3_api->commit_hook
|
D | sqlite3.c | 123350 void * (*commit_hook)(sqlite3*,int(*)(void*),void*); 123679 #define sqlite3_commit_hook sqlite3_api->commit_hook
|
/external/rust/crates/libsqlite3-sys/sqlite3/ |
D | sqlite3ext.h | 75 void * (*commit_hook)(sqlite3*,int(*)(void*),void*); member 406 #define sqlite3_commit_hook sqlite3_api->commit_hook
|
D | sqlite3.c | 125454 void * (*commit_hook)(sqlite3*,int(*)(void*),void*); 125785 #define sqlite3_commit_hook sqlite3_api->commit_hook
|
/external/rust/crates/libsqlite3-sys/ |
D | README.md | 103 * `hooks` for [Commit, Rollback](http://sqlite.org/c3ref/commit_hook.html) and [Data Change](http:/…
|
/external/rust/crates/rusqlite/ |
D | README.md | 106 * `hooks` for [Commit, Rollback](http://sqlite.org/c3ref/commit_hook.html) and [Data Change](http:/…
|