• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/sqlite/

Lines Matching refs:zRight

19779 SQLITE_PRIVATE int sqlite3StrICmp(const char *zLeft, const char *zRight){
19782 b = (unsigned char *)zRight;
19786 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){
19789 b = (unsigned char *)zRight;
84424 ** Check to see if zRight and zLeft refer to a pragma that queries
84428 static int flagPragma(Parse *pParse, const char *zLeft, const char *zRight){
84475 if( zRight==0 ){
84485 if( getBoolean(zRight) ){
84572 char *zRight = 0; /* Nul-terminated UTF-8 string <value>, or NULL */
84599 zRight = sqlite3MPrintf(db, "-%T", pValue);
84601 zRight = sqlite3NameFromToken(db, pValue);
84606 if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){
84641 if( !zRight ){
84650 int size = atoi(zRight);
84672 if( !zRight ){
84679 db->nextPagesize = atoi(zRight);
84699 if( zRight ){
84700 newMax = atoi(zRight);
84720 if( zRight ){
84721 b = getBoolean(zRight);
84755 int eMode = getLockingMode(zRight);
84814 if( zRight==0 ){
84820 int n = sqlite3Strlen30(zRight);
84822 if( sqlite3StrNICmp(zRight, zMode, n)==0 ) break;
84853 if( zRight ){
84854 sqlite3Atoi64(zRight, &iLimit);
84877 if( !zRight ){
84886 int eAuto = getAutoVacuum(zRight);
84935 if( zRight==0 || !sqlite3GetInt32(zRight, &iLimit) || iLimit<=0 ){
84965 if( !zRight ){
84968 int size = atoi(zRight);
84987 if( !zRight ){
84990 changeTempStorage(pParse, zRight);
85005 if( !zRight ){
85015 if( zRight[0] ){
85018 rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res);
85031 if( zRight[0] ){
85032 sqlite3_temp_directory = sqlite3_mprintf("%s", zRight);
85057 if( !zRight ){
85075 if( zRight[0] ){
85077 zRight);
85101 if( !zRight ){
85108 pDb->safety_level = getSafetyLevel(zRight)+1;
85115 if( flagPragma(pParse, zLeft, zRight) ){
85134 if( sqlite3StrICmp(zLeft, "table_info")==0 && zRight ){
85137 pTab = sqlite3FindTable(db, zRight, zDb);
85172 if( sqlite3StrICmp(zLeft, "index_info")==0 && zRight ){
85176 pIdx = sqlite3FindIndex(db, zRight, zDb);
85196 if( sqlite3StrICmp(zLeft, "index_list")==0 && zRight ){
85200 pTab = sqlite3FindTable(db, zRight, zDb);
85259 if( sqlite3StrICmp(zLeft, "foreign_key_list")==0 && zRight ){
85263 pTab = sqlite3FindTable(db, zRight, zDb);
85306 if( zRight ){
85307 if( getBoolean(zRight) ){
85320 if( zRight ){
85321 sqlite3RegisterLikeFunctions(db, getBoolean(zRight));
85360 if( zRight ){
85361 mxErr = atoi(zRight);
85531 if( !zRight ){ /* "PRAGMA encoding" */
85552 if( 0==sqlite3StrICmp(zRight, pEnc->zName) ){
85558 sqlite3ErrorMsg(pParse, "unsupported encoding: %s", zRight);
85609 if( zRight && iCookie!=BTREE_FREE_PAGE_COUNT ){
85618 sqlite3VdbeChangeP1(v, addr+1, atoi(zRight));
85678 if( zRight ){
85679 int nAuto = atoi(zRight);
85723 if( sqlite3StrICmp(zLeft, "key")==0 && zRight ){
85724 sqlite3_key(db, zRight, sqlite3Strlen30(zRight));
85726 if( sqlite3StrICmp(zLeft, "rekey")==0 && zRight ){
85727 sqlite3_rekey(db, zRight, sqlite3Strlen30(zRight));
85729 if( zRight && (sqlite3StrICmp(zLeft, "hexkey")==0 ||
85733 for(i=0; (h1 = zRight[i])!=0 && (h2 = zRight[i+1])!=0; i+=2){
85748 if( sqlite3StrNICmp(zRight, "see-", 4)==0 ){
85749 sqlite3_activate_see(&zRight[4]);
85753 if( sqlite3StrNICmp(zRight, "cerod-", 6)==0 ){
85754 sqlite3_activate_cerod(&zRight[6]);
85775 sqlite3DbFree(db, zRight);
119260 const void *zRight
119264 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);