Lines Matching refs:zTxt

1747 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()
1780 const unsigned char *z = (const unsigned char*)zTxt; in qrfEncodeText()
1806 const unsigned char *z = (const unsigned char*)zTxt; in qrfEncodeText()
1838 sqlite3_str_appendall(pOut, zTxt); in qrfEncodeText()
1987 const char *zTxt = (const char*)sqlite3_column_text(p->pStmt,iCol); in qrfRenderValue() local
1988 sqlite3_str_appendall(pOut, zTxt); in qrfRenderValue()
2070 const char *zTxt = (const char*)sqlite3_column_text(p->pStmt,iCol); in qrfRenderValue() local
2071 qrfEncodeText(p, pOut, zTxt); in qrfRenderValue()
2081 const char *zTxt = (const char*)sqlite3_column_text(p->pStmt,iCol); in qrfRenderValue() local
2082 qrfEncodeText(p, pOut, zTxt); in qrfRenderValue()
24488 char *zTxt; /* The text */ member
24500 sqlite3_free(p->zTxt); in freeText()
24525 if( p->zTxt==0 || p->n+len>=p->nAlloc ){ in appendText()
24527 p->zTxt = sqlite3_realloc64(p->zTxt, p->nAlloc); in appendText()
24528 shell_check_oom(p->zTxt); in appendText()
24532 char *zCsr = p->zTxt+p->n; in appendText()
24539 p->n = (i64)(zCsr - p->zTxt); in appendText()
24542 memcpy(p->zTxt+p->n, zAppend, nAppend); in appendText()
24544 p->zTxt[p->n] = '\0'; in appendText()
24612 s.zTxt = 0; in shellFakeSchema()
24614 return s.zTxt; in shellFakeSchema()
26985 rc = shell_exec(p, sSelect.zTxt, 0); in dump_callback()
26989 shell_exec(p, sSelect.zTxt, 0); in dump_callback()
34568 str.zTxt[0] = 0; in do_meta_command()
34572 cli_printf(p->out, "Result: %s\n", str.zTxt); in do_meta_command()
34579 }else if( cli_strcmp(zAns,str.zTxt)!=0 ){ in do_meta_command()
34583 cli_printf(p->out, "%d: Got: [%s]\n", tno, str.zTxt); in do_meta_command()
34697 appendText(&sSql, sQuery.zTxt, '\''); in do_meta_command()
34709 sSql.zTxt, iSize); in do_meta_command()
34715 sSql.zTxt, iSize); in do_meta_command()