Lines Matching refs:zStr
7023 const unsigned char *zStr;/* String being searched */ in re_sql_func() local
7044 zStr = (const unsigned char*)sqlite3_value_text(argv[1]); in re_sql_func()
7045 if( zStr!=0 ){ in re_sql_func()
7046 sqlite3_result_int(context, re_match(pRe, zStr, -1)); in re_sql_func()
16787 static int recoverStrlen(const char *zStr){ in recoverStrlen() argument
16788 if( zStr==0 ) return 0; in recoverStrlen()
16789 return (int)(strlen(zStr)&0x7fffffff); in recoverStrlen()
19816 char *zStr = sqlite3_malloc(nBlob*2 + 1); in output_hex_blob() local
19817 shell_check_oom(zStr); in output_hex_blob()
19824 zStr[i*2] = aHex[ (aBlob[i] >> 4) ]; in output_hex_blob()
19825 zStr[i*2+1] = aHex[ (aBlob[i] & 0x0F) ]; in output_hex_blob()
19827 zStr[i*2] = '\0'; in output_hex_blob()
19829 oputf("X'%s'", zStr); in output_hex_blob()
19830 sqlite3_free(zStr); in output_hex_blob()
21426 static int str_in_array(const char *zStr, const char **azArray){ in str_in_array() argument
21429 if( 0==cli_strcmp(zStr, azArray[i]) ) return 1; in str_in_array()
24542 static int optionMatch(const char *zStr, const char *zOpt){ in optionMatch() argument
24543 if( zStr[0]!='-' ) return 0; in optionMatch()
24544 zStr++; in optionMatch()
24545 if( zStr[0]=='-' ) zStr++; in optionMatch()
24546 return cli_strcmp(zStr, zOpt)==0; in optionMatch()