Lines Matching defs:sqlite3_str_appendall
8794 ** zero-terminated string in its entirety, use the [sqlite3_str_appendall()]
8797 ** ^The [sqlite3_str_appendall(X,S)] method appends the complete content of
8814 SQLITE_API void sqlite3_str_appendall(sqlite3_str*, const char *zIn);
31966 sqlite3_str_appendall(pAccum, (const char*)pExpr->u.zToken);
31987 sqlite3_str_appendall(pAccum, pItem->zAlias);
31990 sqlite3_str_appendall(pAccum, pItem->zDatabase);
31993 sqlite3_str_appendall(pAccum, pItem->zName);
31995 sqlite3_str_appendall(pAccum, pItem->zAlias);
32181 SQLITE_API void sqlite3_str_appendall(sqlite3_str *p, const char *z){
86593 sqlite3_str_appendall(&x, zP4);
86596 sqlite3_str_appendall(&x, pOp->zComment);
86642 sqlite3_str_appendall(&x, pOp->zComment);
86836 if( zP4 ) sqlite3_str_appendall(&x, zP4);
126744 sqlite3_str_appendall(&errMsg, pTab->zName);
126746 sqlite3_str_appendall(&errMsg, zCol);
137081 #define sqlite3_str_appendall sqlite3_api->str_appendall
137584 sqlite3_str_appendall,
141528 sqlite3_str_appendall(&acc, "CREATE TABLE x");
141539 sqlite3_str_appendall(&acc, ",arg HIDDEN");
141543 sqlite3_str_appendall(&acc, ",schema HIDDEN");
141700 sqlite3_str_appendall(&acc, "PRAGMA ");
141704 sqlite3_str_appendall(&acc, pTab->pName->zName);
157470 sqlite3_str_appendall(pStr, explainIndexColumnName(pIdx, iTerm+i));
208457 sqlite3_str_appendall(pOut," <-- ");
208459 case JSONB_NULL: sqlite3_str_appendall(pOut,"null"); break;
208460 case JSONB_TRUE: sqlite3_str_appendall(pOut,"true"); break;
208461 case JSONB_FALSE: sqlite3_str_appendall(pOut,"false"); break;
208462 case JSONB_INT: sqlite3_str_appendall(pOut,"int"); break;
208463 case JSONB_INT5: sqlite3_str_appendall(pOut,"int5"); break;
208464 case JSONB_FLOAT: sqlite3_str_appendall(pOut,"float"); break;
208465 case JSONB_FLOAT5: sqlite3_str_appendall(pOut,"float5"); break;
208466 case JSONB_TEXT: sqlite3_str_appendall(pOut,"text"); break;
208467 case JSONB_TEXTJ: sqlite3_str_appendall(pOut,"textj"); break;
208468 case JSONB_TEXT5: sqlite3_str_appendall(pOut,"text5"); break;
208469 case JSONB_TEXTRAW: sqlite3_str_appendall(pOut,"textraw"); break;
208483 sqlite3_str_appendall(pOut, "ERROR: unknown node type\n");
208493 sqlite3_str_appendall(pOut, ": \"");