OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:xBusy
(Results
1 - 2
of
2
) 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
...]
test_thread.c
253
static int
xBusy
(void *pArg, int nBusy){
286
sqlite3_busy_handler(db,
xBusy
, 0);
Completed in 86 milliseconds