Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c1747 static void qrfEncodeText(Qrf *p, sqlite3_str *pOut, const char *zTxt){ in qrfEncodeText() argument
1751 if( qrfRelaxable(p, zTxt) ){ in qrfEncodeText()
1752 sqlite3_str_appendall(pOut, zTxt); in qrfEncodeText()
1758 sqlite3_str_appendf(pOut, "%Q", zTxt); in qrfEncodeText()
1760 sqlite3_str_appendf(pOut, "%#Q", zTxt); in qrfEncodeText()
1766 for(i=0; zTxt[i]; i++){ in qrfEncodeText()
1767 if( qrfCsvQuote[((const unsigned char*)zTxt)[i]] ){ in qrfEncodeText()
1772 if( i==0 || strstr(zTxt, p->spec.zColumnSep)!=0 ){ in qrfEncodeText()
1773 sqlite3_str_appendf(pOut, "\"%w\"", zTxt); in qrfEncodeText()
1775 sqlite3_str_appendall(pOut, zTxt); in qrfEncodeText()
[all …]
H A Dsqlite3.c39626 const char *zTxt, /* Text encoding. Zero-terminated */ in kvvfsDecodeJournal() argument
39633 while( (c = zTxt[i++])>='a' && c<='z' ){ in kvvfsDecodeJournal()
39644 n = kvvfsDecode(zTxt+i, pFile->aJrnl, pFile->nJrnl); in kvvfsDecodeJournal()