Searched refs:aResult (Results 1 – 2 of 2) sorted by relevance
| /sqlite-3.40.0/ext/misc/ |
| H A D | nextchar.c | 71 unsigned int *aResult; /* Array of next characters */ member 83 if( p->aResult[i]==c ) return; in nextCharAppend() 88 aNew = sqlite3_realloc64(p->aResult, n*sizeof(unsigned int)); in nextCharAppend() 93 p->aResult = aNew; in nextCharAppend() 97 p->aResult[p->nUsed++] = c; in nextCharAppend() 279 n += writeUtf8(pRes+n, c.aResult[i]); in nextCharFunc() 286 sqlite3_free(c.aResult); in nextCharFunc()
|
| /sqlite-3.40.0/src/ |
| H A D | test1.c | 576 char **aResult; in test_get_table_printf() local 593 rc = sqlite3_get_table(db, zSql, &aResult, 0, 0, &zErr); in test_get_table_printf() 595 rc = sqlite3_get_table(db, zSql, &aResult, &nRow, &nCol, &zErr); in test_get_table_printf() 609 Tcl_AppendElement(interp, aResult[i] ? aResult[i] : "NULL"); in test_get_table_printf() 614 sqlite3_free_table(aResult); in test_get_table_printf()
|