Home
last modified time | relevance | path

Searched refs:xBusyHandler (Results 1 – 25 of 169) sorted by relevance

1234567

/dports/databases/sqlite3/sqlite-src-3350500/test/
H A Dwal5.test442 proc xBusyHandler {n} { sql2 { COMMIT } ; return 0 }
443 db busy xBusyHandler
460 proc xBusyHandler {n} { return 1 }
466 proc xBusyHandler {n} { sql2 { COMMIT } ; return 0 }
467 db busy xBusyHandler
/dports/databases/sqlcipher/sqlcipher-3.4.2/test/
H A Dwal5.test442 proc xBusyHandler {n} { sql2 { COMMIT } ; return 0 }
443 db busy xBusyHandler
460 proc xBusyHandler {n} { return 1 }
466 proc xBusyHandler {n} { sql2 { COMMIT } ; return 0 }
467 db busy xBusyHandler
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/test/
H A Dwal5.test442 proc xBusyHandler {n} { sql2 { COMMIT } ; return 0 }
443 db busy xBusyHandler
460 proc xBusyHandler {n} { return 1 }
466 proc xBusyHandler {n} { sql2 { COMMIT } ; return 0 }
467 db busy xBusyHandler
/dports/databases/sqlite3/sqlite-src-3350500/src/
H A Dpager.c687 int (*xBusyHandler)(void*); /* Function to call when busy */ member
3654 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */ in sqlite3PagerSetBusyHandler()
3658 pPager->xBusyHandler = xBusyHandler; in sqlite3PagerSetBusyHandler()
3660 ap = (void **)&pPager->xBusyHandler; in sqlite3PagerSetBusyHandler()
3661 assert( ((int(*)(void *))(ap[0]))==xBusyHandler ); in sqlite3PagerSetBusyHandler()
3889 }while( rc==SQLITE_BUSY && pPager->xBusyHandler(pPager->pBusyHandlerArg) ); in pager_wait_on_lock()
7420 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler), in sqlite3PagerCheckpoint()
H A Dmain.c1700 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0; in sqlite3InvokeBusyHandler()
1701 rc = p->xBusyHandler(p->pBusyArg, p->nBusy); in sqlite3InvokeBusyHandler()
1723 db->busyHandler.xBusyHandler = xBusy; in sqlite3_busy_handler()
H A DsqliteInt.h1039 int (*xBusyHandler)(void *,int); /* The busy callback */ member
/dports/databases/sqlcipher/sqlcipher-3.4.2/src/
H A Dpager.c689 int (*xBusyHandler)(void*); /* Function to call when busy */ member
3678 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */ in sqlite3PagerSetBusyhandler()
3681 pPager->xBusyHandler = xBusyHandler; in sqlite3PagerSetBusyhandler()
3685 void **ap = (void **)&pPager->xBusyHandler; in sqlite3PagerSetBusyhandler()
3686 assert( ((int(*)(void *))(ap[0]))==xBusyHandler ); in sqlite3PagerSetBusyhandler()
3907 }while( rc==SQLITE_BUSY && pPager->xBusyHandler(pPager->pBusyHandlerArg) ); in pager_wait_on_lock()
7322 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler), in sqlite3PagerCheckpoint()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/src/
H A Dpager.c700 int (*xBusyHandler)(void*); /* Function to call when busy */ member
3725 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */ in sqlite3PagerSetBusyHandler()
3729 pPager->xBusyHandler = xBusyHandler; in sqlite3PagerSetBusyHandler()
3731 ap = (void **)&pPager->xBusyHandler; in sqlite3PagerSetBusyHandler()
3732 assert( ((int(*)(void *))(ap[0]))==xBusyHandler ); in sqlite3PagerSetBusyHandler()
3961 }while( rc==SQLITE_BUSY && pPager->xBusyHandler(pPager->pBusyHandlerArg) ); in pager_wait_on_lock()
7542 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler), in sqlite3PagerCheckpoint()
H A Dmain.c1618 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0; in sqlite3InvokeBusyHandler()
1623 xTra = (int(*)(void*,int,sqlite3_file*))p->xBusyHandler; in sqlite3InvokeBusyHandler()
1627 rc = p->xBusyHandler(p->pBusyArg, p->nBusy); in sqlite3InvokeBusyHandler()
1650 db->busyHandler.xBusyHandler = xBusy; in sqlite3_busy_handler()
H A DsqliteInt.h979 int (*xBusyHandler)(void *,int); /* The busy callback */ member
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/src/
H A Dpager.c686 int (*xBusyHandler)(void*); /* Function to call when busy */ member
3650 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */ in sqlite3PagerSetBusyHandler()
3654 pPager->xBusyHandler = xBusyHandler; in sqlite3PagerSetBusyHandler()
3656 ap = (void **)&pPager->xBusyHandler; in sqlite3PagerSetBusyHandler()
3657 assert( ((int(*)(void *))(ap[0]))==xBusyHandler ); in sqlite3PagerSetBusyHandler()
3885 }while( rc==SQLITE_BUSY && pPager->xBusyHandler(pPager->pBusyHandlerArg) ); in pager_wait_on_lock()
7413 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler), in sqlite3PagerCheckpoint()
H A Dmain.c1700 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0; in sqlite3InvokeBusyHandler()
1701 rc = p->xBusyHandler(p->pBusyArg, p->nBusy); in sqlite3InvokeBusyHandler()
1723 db->busyHandler.xBusyHandler = xBusy; in sqlite3_busy_handler()
H A DsqliteInt.h1014 int (*xBusyHandler)(void *,int); /* The busy callback */ member
/dports/lang/php73/php-7.3.33/ext/sqlite3/libsqlite/
H A Dsqlite3.c14094 int (*xBusyHandler)(void *,int); /* The busy callback */ member
51278 int (*xBusyHandler)(void*); /* Function to call when busy */
54302 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */
54306 pPager->xBusyHandler = xBusyHandler;
54308 ap = (void **)&pPager->xBusyHandler;
54309 assert( ((int(*)(void *))(ap[0]))==xBusyHandler );
58051 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler),
156199 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0;
156204 xTra = (int(*)(void*,int,sqlite3_file*))p->xBusyHandler;
156208 rc = p->xBusyHandler(p->pBusyArg, p->nBusy);
[all …]
/dports/www/firefox-esr/firefox-91.8.0/security/nss/lib/sqlite/
H A Dsqlite3.c14139 int (*xBusyHandler)(void *,int); /* The busy callback */ member
51343 int (*xBusyHandler)(void*); /* Function to call when busy */
54367 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */
54371 pPager->xBusyHandler = xBusyHandler;
54373 ap = (void **)&pPager->xBusyHandler;
54374 assert( ((int(*)(void *))(ap[0]))==xBusyHandler );
58116 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler),
156779 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0;
156784 xTra = (int(*)(void*,int,sqlite3_file*))p->xBusyHandler;
156788 rc = p->xBusyHandler(p->pBusyArg, p->nBusy);
[all …]
/dports/databases/php73-sqlite3/php-7.3.33/ext/sqlite3/libsqlite/
H A Dsqlite3.c14094 int (*xBusyHandler)(void *,int); /* The busy callback */ member
51278 int (*xBusyHandler)(void*); /* Function to call when busy */
54302 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */
54306 pPager->xBusyHandler = xBusyHandler;
54308 ap = (void **)&pPager->xBusyHandler;
54309 assert( ((int(*)(void *))(ap[0]))==xBusyHandler );
58051 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler),
156199 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0;
156204 xTra = (int(*)(void*,int,sqlite3_file*))p->xBusyHandler;
156208 rc = p->xBusyHandler(p->pBusyArg, p->nBusy);
[all …]
/dports/security/certmgr/certmgr-3.0.3/vendor/github.com/cloudflare/cfssl/cfssl-2001f384ec4f/vendor/github.com/mattn/go-sqlite3/
H A Dsqlite3-binding.c13914 int (*xBusyHandler)(void *,int); /* The busy callback */ member
50786 int (*xBusyHandler)(void*); /* Function to call when busy */
53796 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */
53800 pPager->xBusyHandler = xBusyHandler;
53802 ap = (void **)&pPager->xBusyHandler;
53803 assert( ((int(*)(void *))(ap[0]))==xBusyHandler );
57528 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler),
153336 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0;
153341 xTra = (int(*)(void*,int,sqlite3_file*))p->xBusyHandler;
153345 rc = p->xBusyHandler(p->pBusyArg, p->nBusy);
[all …]
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/direct-sqlite-2.3.26/cbits/
H A Dsqlite3.c14094 int (*xBusyHandler)(void *,int); /* The busy callback */ member
51278 int (*xBusyHandler)(void*); /* Function to call when busy */
54302 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */
54306 pPager->xBusyHandler = xBusyHandler;
54308 ap = (void **)&pPager->xBusyHandler;
54309 assert( ((int(*)(void *))(ap[0]))==xBusyHandler );
58051 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler),
156199 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0;
156204 xTra = (int(*)(void*,int,sqlite3_file*))p->xBusyHandler;
156208 rc = p->xBusyHandler(p->pBusyArg, p->nBusy);
[all …]
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/pressly/goose/vendor/github.com/mattn/go-sqlite3/
H A Dsqlite3-binding.c13914 int (*xBusyHandler)(void *,int); /* The busy callback */ member
50786 int (*xBusyHandler)(void*); /* Function to call when busy */
53796 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */
53800 pPager->xBusyHandler = xBusyHandler;
53802 ap = (void **)&pPager->xBusyHandler;
53803 assert( ((int(*)(void *))(ap[0]))==xBusyHandler );
57528 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler),
153336 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0;
153341 xTra = (int(*)(void*,int,sqlite3_file*))p->xBusyHandler;
153345 rc = p->xBusyHandler(p->pBusyArg, p->nBusy);
[all …]
/dports/security/sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/cargo-crates/libsqlite3-sys-0.15.0/sqlite3/
H A Dsqlite3.c14094 int (*xBusyHandler)(void *,int); /* The busy callback */ member
51278 int (*xBusyHandler)(void*); /* Function to call when busy */
54302 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */
54306 pPager->xBusyHandler = xBusyHandler;
54308 ap = (void **)&pPager->xBusyHandler;
54309 assert( ((int(*)(void *))(ap[0]))==xBusyHandler );
58051 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler),
156199 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0;
156204 xTra = (int(*)(void*,int,sqlite3_file*))p->xBusyHandler;
156208 rc = p->xBusyHandler(p->pBusyArg, p->nBusy);
[all …]
/dports/audio/gonic/gonic-0.8.4/vendor/github.com/mattn/go-sqlite3/
H A Dsqlite3-binding.c13914 int (*xBusyHandler)(void *,int); /* The busy callback */ member
50786 int (*xBusyHandler)(void*); /* Function to call when busy */
53796 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */
53800 pPager->xBusyHandler = xBusyHandler;
53802 ap = (void **)&pPager->xBusyHandler;
53803 assert( ((int(*)(void *))(ap[0]))==xBusyHandler );
57528 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler),
153336 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0;
153341 xTra = (int(*)(void*,int,sqlite3_file*))p->xBusyHandler;
153345 rc = p->xBusyHandler(p->pBusyArg, p->nBusy);
[all …]
/dports/net/concourse-fly/concourse-6.7.1/vendor/github.com/mattn/go-sqlite3/
H A Dsqlite3-binding.c13914 int (*xBusyHandler)(void *,int); /* The busy callback */ member
50786 int (*xBusyHandler)(void*); /* Function to call when busy */
53796 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */
53800 pPager->xBusyHandler = xBusyHandler;
53802 ap = (void **)&pPager->xBusyHandler;
53803 assert( ((int(*)(void *))(ap[0]))==xBusyHandler );
57528 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler),
153336 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0;
153341 xTra = (int(*)(void*,int,sqlite3_file*))p->xBusyHandler;
153345 rc = p->xBusyHandler(p->pBusyArg, p->nBusy);
[all …]
/dports/www/firefox/firefox-99.0/security/nss/lib/sqlite/
H A Dsqlite3.c14139 int (*xBusyHandler)(void *,int); /* The busy callback */ member
51343 int (*xBusyHandler)(void*); /* Function to call when busy */
54367 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */
54371 pPager->xBusyHandler = xBusyHandler;
54373 ap = (void **)&pPager->xBusyHandler;
54374 assert( ((int(*)(void *))(ap[0]))==xBusyHandler );
58116 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler),
156779 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0;
156784 xTra = (int(*)(void*,int,sqlite3_file*))p->xBusyHandler;
156788 rc = p->xBusyHandler(p->pBusyArg, p->nBusy);
[all …]
/dports/security/ca_root_nss/nss-3.71/nss/lib/sqlite/
H A Dsqlite3.c14139 int (*xBusyHandler)(void *,int); /* The busy callback */ member
51343 int (*xBusyHandler)(void*); /* Function to call when busy */
54367 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */
54371 pPager->xBusyHandler = xBusyHandler;
54373 ap = (void **)&pPager->xBusyHandler;
54374 assert( ((int(*)(void *))(ap[0]))==xBusyHandler );
58116 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler),
156779 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0;
156784 xTra = (int(*)(void*,int,sqlite3_file*))p->xBusyHandler;
156788 rc = p->xBusyHandler(p->pBusyArg, p->nBusy);
[all …]
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/mattn/go-sqlite3/
H A Dsqlite3-binding.c13914 int (*xBusyHandler)(void *,int); /* The busy callback */ member
50786 int (*xBusyHandler)(void*); /* Function to call when busy */
53796 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */
53800 pPager->xBusyHandler = xBusyHandler;
53802 ap = (void **)&pPager->xBusyHandler;
53803 assert( ((int(*)(void *))(ap[0]))==xBusyHandler );
57528 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler),
153336 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0;
153341 xTra = (int(*)(void*,int,sqlite3_file*))p->xBusyHandler;
153345 rc = p->xBusyHandler(p->pBusyArg, p->nBusy);
[all …]

1234567