Home | History | Annotate | Download | only in orig

Lines Matching defs:JsonString

163644 typedef struct JsonString JsonString;
163652 struct JsonString {
163720 ** Utility routines for dealing with JsonString objects
163723 /* Set the JsonString object to an empty string
163725 static void jsonZero(JsonString *p){
163732 /* Initialize the JsonString object
163734 static void jsonInit(JsonString *p, sqlite3_context *pCtx){
163741 /* Free all allocated memory and reset the JsonString object back to its
163744 static void jsonReset(JsonString *p){
163752 static void jsonOom(JsonString *p){
163761 static int jsonGrow(JsonString *p, u32 N){
163786 /* Append N bytes from zIn onto the end of the JsonString string.
163788 static void jsonAppendRaw(JsonString *p, const char *zIn, u32 N){
163794 /* Append formatted text (not to exceed N bytes) to the JsonString.
163796 static void jsonPrintf(int N, JsonString *p, const char *zFormat, ...){
163807 static void jsonAppendChar(JsonString *p, char c){
163815 static void jsonAppendSeparator(JsonString *p){
163822 /* Append the N-byte string in zIn to the end of the JsonString string
163827 static void jsonAppendString(JsonString *p, const char *zIn, u32 N){
163848 JsonString *p, /* Append to this JSON string */
163887 static void jsonResult(JsonString *p){
163934 JsonString *pOut, /* Write JSON here */
164021 JsonString s;
164693 JsonString s; /* Output string - not real JSON */
164751 JsonString jx;
164818 JsonString jx;
164860 JsonString jx;
165227 JsonString *pStr, /* Write the path here */
165304 JsonString x;
165325 JsonString x;