OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:xBusy
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/sqlite/src/src/
test_superlock.c
30
int (*
xBusy
)(void*,int); /* Pointer to busy-handler function */
31
void *pBusyArg; /* First arg to pass to
xBusy
*/
32
int nBusy; /* Number of times
xBusy
has been invoked */
54
if( pBusy->
xBusy
==0 ) return 0;
55
return pBusy->
xBusy
(pBusy->pBusyArg, pBusy->nBusy++);
176
** If a required lock cannot be obtained immediately and the
xBusy
parameter
177
** to this function is not NULL, then
xBusy
is invoked in the same way
185
int (*
xBusy
)(void*,int), /* Busy handler callback */
216
busy.
xBusy
=
xBusy
;
[
all
...]
wal.h
90
int (*
xBusy
)(void*), /* Function to call when busy */
wal.c
[
all
...]
test_thread.c
253
static int
xBusy
(void *pArg, int nBusy){
286
sqlite3_busy_handler(db,
xBusy
, 0);
main.c
949
int (*
xBusy
)(void*,int),
953
db->busyHandler.xFunc =
xBusy
;
[
all
...]
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
[
all
...]
Completed in 2533 milliseconds