Searched refs:aResult (Results 1 – 4 of 4) sorted by relevance
/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | test1.c | 208 char **aResult; in test_get_table_printf() local 218 rc = sqlite_get_table_printf(db, argv[2], &aResult, &nRow, &nCol, in test_get_table_printf() 228 Tcl_AppendElement(interp, aResult[i] ? aResult[i] : "NULL"); in test_get_table_printf() 233 sqlite_free_table(aResult); in test_get_table_printf()
|
H A D | test3.c | 922 int aResult[8]; in btree_cursor_dump() local 931 rc = sqliteBtreeCursorDump(pCur, aResult); in btree_cursor_dump() 937 for(i=0; i<sizeof(aResult)/sizeof(aResult[0]); i++){ in btree_cursor_dump() 938 sprintf(&zBuf[j]," %d", aResult[i]); in btree_cursor_dump()
|
H A D | btree.h | 150 #define sqliteBtreeCursorDump(pCur, aResult)\ argument 151 (btCOps(pCur)->CursorDump(pCur, aResult))
|
H A D | btree.c | 3128 static int fileBtreeCursorDump(BtCursor *pCur, int *aResult){ in fileBtreeCursorDump() argument 3132 aResult[0] = sqlitepager_pagenumber(pPage); in fileBtreeCursorDump() 3133 aResult[1] = pCur->idx; in fileBtreeCursorDump() 3134 aResult[2] = pPage->nCell; in fileBtreeCursorDump() 3136 aResult[3] = cellSize(pBt, pPage->apCell[pCur->idx]); in fileBtreeCursorDump() 3137 aResult[6] = SWAB32(pBt, pPage->apCell[pCur->idx]->h.leftChild); in fileBtreeCursorDump() 3139 aResult[3] = 0; in fileBtreeCursorDump() 3140 aResult[6] = 0; in fileBtreeCursorDump() 3142 aResult[4] = pPage->nFree; in fileBtreeCursorDump() 3149 aResult[5] = cnt; in fileBtreeCursorDump() [all …]
|