Searched refs:azCompileOpt (Results 1 - 2 of 2) sorted by relevance

/freebsd-10-stable/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c12151 static const char * const azCompileOpt[] = { variable
12504 /* Since ArraySize(azCompileOpt) is normally in single digits, a
12506 for(i=0; i<ArraySize(azCompileOpt); i++){
12507 if( (sqlite3StrNICmp(zOptName, azCompileOpt[i], n)==0)
12508 && ( (azCompileOpt[i][n]==0) || (azCompileOpt[i][n]=='=') ) ) return 1;
12518 if( N>=0 && N<ArraySize(azCompileOpt) ){
12519 return azCompileOpt[N];
[all...]
/freebsd-10-stable/contrib/sqlite3/
H A Dsqlite3.c17179 static const char * const azCompileOpt[] = { variable
17578 /* Since ArraySize(azCompileOpt) is normally in single digits, a
17580 for(i=0; i<ArraySize(azCompileOpt); i++){
17581 if( sqlite3StrNICmp(zOptName, azCompileOpt[i], n)==0
17582 && sqlite3IsIdChar((unsigned char)azCompileOpt[i][n])==0
17595 if( N>=0 && N<ArraySize(azCompileOpt) ){
17596 return azCompileOpt[N];
[all...]

Completed in 538 milliseconds