OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:createFlag
(Results
1 - 13
of
13
) sorted by null
/libcore/luni/src/test/java/libcore/java/util/zip/
OldZipInputStreamTest.java
148
boolean
createFlag
= false;
155
return
createFlag
;
159
createFlag
= true;
/external/chromium_org/third_party/sqlite/src/src/
pcache.h
88
int sqlite3PcacheFetch(PCache*, Pgno, int
createFlag
, PgHdr**);
test_pcache.c
187
int
createFlag
207
/* If
createFlag
is 0, never allocate a new page */
208
if(
createFlag
==0 ){
217
/* Do not allocate the last TESTPCACHE_RESERVE pages unless
createFlag
is 2 */
218
if( p->nPinned>=TESTPCACHE_NPAGE-TESTPCACHE_RESERVE &&
createFlag
<2 ){
222
/* Do not allocate if highStress is enabled and
createFlag
is not 2.
227
if( testpcacheGlobal.highStress &&
createFlag
<2 ){
232
** Withhold TESTPCACHE_RESERVE free pages until
createFlag
is 2.
234
if( p->nFree>TESTPCACHE_RESERVE || (
createFlag
==2 && p->nFree>0) ){
callback.c
311
** If the
createFlag
argument is true, then a new (blank) FuncDef
313
** no matching function previously existed. When
createFlag
is true
317
** If
createFlag
is false and nArg is -1, then the first valid
321
** If
createFlag
is false, then a function with the required name and
331
int
createFlag
/* Create new entry if true and does not otherwise exist */
360
** Except, if
createFlag
is true, that means that we are trying to
366
if( !
createFlag
&& (pBest==0 || (db->flags & SQLITE_PreferBuiltin)!=0) ){
380
/* If the
createFlag
parameter is true and the search did not reveal an
384
if(
createFlag
&& (bestScore<6 || pBest->nArg!=nArg) &&
394
if( pBest && (pBest->xStep || pBest->xFunc ||
createFlag
) ){
[
all
...]
pcache.c
207
int
createFlag
, /* If true, create page if it does not exist already */
214
assert(
createFlag
==1 ||
createFlag
==0 );
220
if( !pCache->pCache &&
createFlag
){
232
eCreate =
createFlag
* (1 + (!pCache->bPurgeable || !pCache->pDirty));
pcache1.c
634
** the value of the
createFlag
argument. 0 means do not allocate a new
639
** database) there is really no difference between
createFlag
1 and 2. So
640
** the calling function (pcache.c) will never have a
createFlag
of 1 on
644
** depending on the value of parameter
createFlag
(which may be 0, 1 or 2).
646
** 1. Regardless of the value of
createFlag
, the cache is searched for a
649
** 2. If
createFlag
==0 and the page is not already in the cache, NULL is
652
** 3. If
createFlag
is 1, and the page is not already in the cache, then
682
static void *pcache1Fetch(sqlite3_pcache *p, unsigned int iKey, int
createFlag
){
688
assert( pCache->bPurgeable ||
createFlag
!=1 );
700
/* Step 2: Abort if no existing page is found and
createFlag
is 0 *
[
all
...]
sqlite.h.in
[
all
...]
/external/sqlite/dist/orig/
sqlite3.h
[
all
...]
sqlite3.c
[
all
...]
/external/sqlite/dist/
sqlite3.h
[
all
...]
sqlite3.c
[
all
...]
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.h
[
all
...]
sqlite3.c
[
all
...]
Completed in 1171 milliseconds