Home
last modified time | relevance | path

Searched refs:zEscaped (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c22214 char *zEscaped; in output_quoted_escaped_string() local
22217 zEscaped = sqlite3_mprintf("%Q", z); in output_quoted_escaped_string()
22219 zEscaped = sqlite3_mprintf("%#Q", z); in output_quoted_escaped_string()
22221 sqlite3_fputs(zEscaped, p->out); in output_quoted_escaped_string()
22222 sqlite3_free(zEscaped); in output_quoted_escaped_string()
H A Dsqlite3.c131117 const u8 *zEscaped = 0; /* One past the last escaped input char */
131190 zEscaped = zPattern;
131230 if( c==matchOne && zPattern!=zEscaped && c2!=0 ) continue;