Lines Matching refs:zArg

1414 static sqlite3_int64 integerValue(const char *zArg){  in integerValue()  argument
1429 if( zArg[0]=='-' ){ in integerValue()
1431 zArg++; in integerValue()
1432 }else if( zArg[0]=='+' ){ in integerValue()
1433 zArg++; in integerValue()
1435 if( zArg[0]=='0' && zArg[1]=='x' ){ in integerValue()
1437 zArg += 2; in integerValue()
1438 while( (x = hexDigitValue(zArg[0]))>=0 ){ in integerValue()
1440 zArg++; in integerValue()
1443 while( IsDigit(zArg[0]) ){ in integerValue()
1444 v = v*10 + zArg[0] - '0'; in integerValue()
1445 zArg++; in integerValue()
1449 if( sqlite3_stricmp(aMult[i].zSuffix, zArg)==0 ){ in integerValue()
16792 const u8 *zArg = (const u8*)a[2]; in vfstraceFileControl() local
16793 if( zArg[0]>='0' && zArg[0]<='9' ){ in vfstraceFileControl()
16833 while( zArg[0] ){ in vfstraceFileControl()
16835 while( zArg[0]!=0 && zArg[0]!='-' && zArg[0]!='+' in vfstraceFileControl()
16836 && !isalpha(zArg[0]) ) zArg++; in vfstraceFileControl()
16837 if( zArg[0]==0 ) break; in vfstraceFileControl()
16838 if( zArg[0]=='-' ){ in vfstraceFileControl()
16840 zArg++; in vfstraceFileControl()
16841 }else if( zArg[0]=='+' ){ in vfstraceFileControl()
16843 zArg++; in vfstraceFileControl()
16845 while( !isalpha(zArg[0]) ){ in vfstraceFileControl()
16846 if( zArg[0]==0 ) break; in vfstraceFileControl()
16847 zArg++; in vfstraceFileControl()
16849 if( zArg[0]=='x' && isalpha(zArg[1]) ) zArg++; in vfstraceFileControl()
16850 for(n=0; isalpha(zArg[n]); n++){} in vfstraceFileControl()
16852 if( sqlite3_strnicmp(aKw[jj].z,(const char*)zArg,n)==0 ){ in vfstraceFileControl()
16861 zArg += n; in vfstraceFileControl()
19644 const char *zArg = (const char*)sqlite3_column_text(p1, 0); in recoverTransferSettings() local
19645 char *z2 = recoverMPrintf(p, "PRAGMA %s = %Q", zPrag, zArg); in recoverTransferSettings()
19649 if( zArg==0 ){ in recoverTransferSettings()
21525 const char *zArg = (const char*)pArg; in sqlite3_recover_config() local
21527 if( zArg ){ in sqlite3_recover_config()
21528 p->zLostAndFound = recoverMPrintf(p, "%s", zArg); in sqlite3_recover_config()
26324 static int booleanValue(const char *zArg){ in booleanValue() argument
26326 if( zArg[0]=='0' && zArg[1]=='x' ){ in booleanValue()
26327 for(i=2; hexDigitValue(zArg[i])>=0; i++){} in booleanValue()
26329 for(i=0; zArg[i]>='0' && zArg[i]<='9'; i++){} in booleanValue()
26331 if( i>0 && zArg[i]==0 ) return (int)(integerValue(zArg) & 0xffffffff); in booleanValue()
26332 if( sqlite3_stricmp(zArg, "on")==0 || sqlite3_stricmp(zArg,"yes")==0 ){ in booleanValue()
26335 if( sqlite3_stricmp(zArg, "off")==0 || sqlite3_stricmp(zArg,"no")==0 ){ in booleanValue()
26339 "ERROR: Not a boolean value: \"%s\". Assuming \"no\".\n", zArg); in booleanValue()
26346 static void setOrClearFlag(ShellState *p, unsigned mFlag, const char *zArg){ in setOrClearFlag() argument
26347 if( booleanValue(zArg) ){ in setOrClearFlag()
27724 static int arProcessSwitch(ArCommand *pAr, int eSwitch, const char *zArg){ in arProcessSwitch() argument
27752 pAr->zFile = zArg; in arProcessSwitch()
27755 pAr->zDir = zArg; in arProcessSwitch()
27806 const char *zArg = 0; in arParseCommand() local
27818 zArg = azArg[iArg++]; in arParseCommand()
27820 if( arProcessSwitch(pAr, pOpt->eSwitch, zArg) ) return SQLITE_ERROR; in arParseCommand()
27844 const char *zArg = 0; in arParseCommand() local
27854 zArg = &z[i+1]; in arParseCommand()
27861 zArg = azArg[++iArg]; in arParseCommand()
27864 if( arProcessSwitch(pAr, pOpt->eSwitch, zArg) ) return SQLITE_ERROR; in arParseCommand()
27874 const char *zArg = 0; /* Argument for option, if any */ in arParseCommand() local
27895 zArg = azArg[++iArg]; in arParseCommand()
27897 if( arProcessSwitch(pAr, pMatch->eSwitch, zArg) ) return SQLITE_ERROR; in arParseCommand()