OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sharable
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/sqlite/src/src/
btmutex.c
55
** If the object is not
sharable
, then no mutex is ever required
79
assert( p->
sharable
|| (p->pNext==0 && p->pPrev==0) );
83
assert( p->
sharable
|| p->wantToLock==0 );
88
/* Unless the database is
sharable
and unlocked, then BtShared.db
90
assert( (p->locked==0 && p->
sharable
) || p->pBt->db==p->db );
92
if( !p->
sharable
) return;
112
assert( pLater->
sharable
);
131
if( p->
sharable
){
143
** B-Tree is not marked as
sharable
.
148
assert( p->
sharable
==0 || p->locked==0 || p->wantToLock>0 )
[
all
...]
btreeInt.h
344
BtShared *pBt; /*
Sharable
content of this btree */
346
u8
sharable
; /* True if we can share pBt with another db */
member in struct:Btree
350
Btree *pNext; /* List of other
sharable
Btrees from the same db */
433
BtShared *pNext; /* Next on a list of
sharable
BtShared structs */
btree.c
110
** When writing to an index that resides in a
sharable
database, the
135
if( (pBtree->
sharable
==0)
239
if( !p->
sharable
){
284
** (a) The specified Btree object p is connected to a
sharable
285
** database (one with the BtShared.
sharable
flag set), and
309
/* This function should only be called on a
sharable
b-tree after it
311
assert( p->
sharable
);
363
assert( p->
sharable
|| 0==*ppIter );
[
all
...]
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
46548
u8
sharable
; \/* True if we can share pBt with another db *\/
member in struct:Btree
[
all
...]
Completed in 65 milliseconds