Lines Matching defs:str

124997   StrAccum str;
125006 sqlite3StrAccumInit(&str, db, 0, 0, db->aLimit[SQLITE_LIMIT_LENGTH]);
125007 str.printfFlags = SQLITE_PRINTF_SQLFUNC;
125008 sqlite3_str_appendf(&str, zFormat, &x);
125009 n = str.nChar;
125010 sqlite3_result_text(context, sqlite3StrAccumFinish(&str), n,
125843 sqlite3_str str;
125847 sqlite3StrAccumInit(&str, db, 0, 0, db->aLimit[SQLITE_LIMIT_LENGTH]);
125848 sqlite3QuoteValue(&str,argv[0]);
125849 sqlite3_result_text(context, sqlite3StrAccumFinish(&str), str.nChar,
125851 if( str.accError!=SQLITE_OK ){
125853 sqlite3_result_error_code(context, str.accError);
126475 StrAccum str; /* The accumulated concatenation */
126502 int firstTerm = pGCC->str.mxAlloc==0;
126503 pGCC->str.mxAlloc = db->aLimit[SQLITE_LIMIT_LENGTH];
126506 sqlite3_str_appendchar(&pGCC->str, 1, ',');
126517 sqlite3_str_append(&pGCC->str, zSep, nSep);
126541 sqlite3StrAccumSetError(&pGCC->str, SQLITE_NOMEM);
126554 if( zVal ) sqlite3_str_append(&pGCC->str, zVal, nVal);
126589 if( nVS>=(int)pGCC->str.nChar ){
126590 pGCC->str.nChar = 0;
126592 pGCC->str.nChar -= nVS;
126593 memmove(pGCC->str.zText, &pGCC->str.zText[nVS], pGCC->str.nChar);
126595 if( pGCC->str.nChar==0 ){
126596 pGCC->str.mxAlloc = 0;
126609 sqlite3ResultStrAccum(context, &pGCC->str);
126620 StrAccum *pAccum = &pGCC->str;
152065 StrAccum str; /* EQP output string */
152076 sqlite3StrAccumInit(&str, db, zBuf, sizeof(zBuf), SQLITE_MAX_LENGTH);
152077 str.printfFlags = SQLITE_PRINTF_INTERNAL;
152078 sqlite3_str_appendf(&str, "%s %S", isSearch ? "SEARCH" : "SCAN", pItem);
152100 sqlite3_str_append(&str, " USING ", 7);
152101 sqlite3_str_appendf(&str, zFmt, pIdx->zName);
152102 explainIndexRange(&str, pLoop);
152113 sqlite3_str_appendf(&str, " USING INTEGER PRIMARY KEY (%s", zRowid);
152117 sqlite3_str_appendf(&str, ">? AND %s", zRowid);
152125 sqlite3_str_appendf(&str, "%c?)", cRangeOp);
152129 sqlite3_str_appendf(&str, " VIRTUAL TABLE INDEX %d:%s",
152134 sqlite3_str_appendf(&str, " LEFT-JOIN");
152138 sqlite3_str_appendf(&str, " (~%llu rows)",
152141 sqlite3_str_append(&str, " (~1 row)", 9);
152144 zMsg = sqlite3StrAccumFinish(&str);
152174 StrAccum str; /* EQP output string */
152177 sqlite3StrAccumInit(&str, db, zBuf, sizeof(zBuf), SQLITE_MAX_LENGTH);
152178 str.printfFlags = SQLITE_PRINTF_INTERNAL;
152179 sqlite3_str_appendf(&str, "BLOOM FILTER ON %S (", pItem);
152184 sqlite3_str_appendf(&str, "%s=?", pTab->aCol[pTab->iPKey].zCnName);
152186 sqlite3_str_appendf(&str, "rowid=?");
152191 if( i>pLoop->nSkip ) sqlite3_str_append(&str, " AND ", 5);
152192 sqlite3_str_appendf(&str, "%s=?", z);
152195 sqlite3_str_append(&str, ")", 1);
152196 zMsg = sqlite3StrAccumFinish(&str);
225827 char **pzOut, /* OUT: malloc'd buffer containing str/bw */