Lines Matching refs:zStr
6229 const unsigned char *zStr;/* String being searched */ in re_sql_func() local
6250 zStr = (const unsigned char*)sqlite3_value_text(argv[1]); in re_sql_func()
6251 if( zStr!=0 ){ in re_sql_func()
6252 sqlite3_result_int(context, re_match(pRe, zStr, -1)); in re_sql_func()
14799 static int recoverStrlen(const char *zStr){ in recoverStrlen() argument
14800 if( zStr==0 ) return 0; in recoverStrlen()
14801 return (int)(strlen(zStr)&0x7fffffff); in recoverStrlen()
17828 char *zStr = sqlite3_malloc(nBlob*2 + 1); in output_hex_blob() local
17829 shell_check_oom(zStr); in output_hex_blob()
17836 zStr[i*2] = aHex[ (aBlob[i] >> 4) ]; in output_hex_blob()
17837 zStr[i*2+1] = aHex[ (aBlob[i] & 0x0F) ]; in output_hex_blob()
17839 zStr[i*2] = '\0'; in output_hex_blob()
17841 raw_printf(out,"X'%s'", zStr); in output_hex_blob()
17842 sqlite3_free(zStr); in output_hex_blob()
19402 static int str_in_array(const char *zStr, const char **azArray){ in str_in_array() argument
19405 if( 0==cli_strcmp(zStr, azArray[i]) ) return 1; in str_in_array()
22513 static int optionMatch(const char *zStr, const char *zOpt){ in optionMatch() argument
22514 if( zStr[0]!='-' ) return 0; in optionMatch()
22515 zStr++; in optionMatch()
22516 if( zStr[0]=='-' ) zStr++; in optionMatch()
22517 return cli_strcmp(zStr, zOpt)==0; in optionMatch()