OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nBusy
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/sqlite/src/src/
test_superlock.c
32
int
nBusy
; /* Number of times xBusy has been invoked */
55
return pBusy->xBusy(pBusy->pBusyArg, pBusy->
nBusy
++);
210
** that the "
nBusy
" integer parameter passed to the users busy-handler
285
static int superlock_busy(void *pCtx, int
nBusy
){
292
Tcl_ListObjAppendElement(p->interp, pEval, Tcl_NewIntObj(
nBusy
));
test_thread.c
253
static int xBusy(void *pArg, int
nBusy
){
255
UNUSED_PARAMETER(
nBusy
);
main.c
933
if( NEVER(p==0) || p->xFunc==0 || p->
nBusy
<0 ) return 0;
934
rc = p->xFunc(p->pArg, p->
nBusy
);
936
p->
nBusy
= -1;
938
p->
nBusy
++;
955
db->busyHandler.
nBusy
= 0;
[
all
...]
sqliteInt.h
516
int
nBusy
; /* Incremented with each busy call */
[
all
...]
vdbe.c
584
db->busyHandler.
nBusy
= 0;
[
all
...]
/external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree.c
153
int
nBusy
; /* Current number of users of this structure */
741
pRtree->
nBusy
++;
749
pRtree->
nBusy
--;
750
if( pRtree->
nBusy
==0 ){
[
all
...]
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
[
all
...]
/external/sqlite/dist/orig/
sqlite3.c
[
all
...]
/external/sqlite/dist/
sqlite3.c
[
all
...]
Completed in 95 milliseconds