Home
last modified time | relevance | path

Searched refs:aResult (Results 1 – 4 of 4) sorted by relevance

/titanic_41/usr/src/lib/libsqlite/src/
H A Dtest1.c211 char **aResult; in test_get_table_printf() local
221 rc = sqlite_get_table_printf(db, argv[2], &aResult, &nRow, &nCol, in test_get_table_printf()
231 Tcl_AppendElement(interp, aResult[i] ? aResult[i] : "NULL"); in test_get_table_printf()
236 sqlite_free_table(aResult); in test_get_table_printf()
H A Dtest3.c925 int aResult[8]; in btree_cursor_dump() local
934 rc = sqliteBtreeCursorDump(pCur, aResult); in btree_cursor_dump()
940 for(i=0; i<sizeof(aResult)/sizeof(aResult[0]); i++){ in btree_cursor_dump()
941 sprintf(&zBuf[j]," %d", aResult[i]); in btree_cursor_dump()
H A Dbtree.h153 #define sqliteBtreeCursorDump(pCur, aResult)\ argument
154 (btCOps(pCur)->CursorDump(pCur, aResult))
H A Dbtree.c3130 static int fileBtreeCursorDump(BtCursor *pCur, int *aResult){ in fileBtreeCursorDump() argument
3134 aResult[0] = sqlitepager_pagenumber(pPage); in fileBtreeCursorDump()
3135 aResult[1] = pCur->idx; in fileBtreeCursorDump()
3136 aResult[2] = pPage->nCell; in fileBtreeCursorDump()
3138 aResult[3] = cellSize(pBt, pPage->apCell[pCur->idx]); in fileBtreeCursorDump()
3139 aResult[6] = SWAB32(pBt, pPage->apCell[pCur->idx]->h.leftChild); in fileBtreeCursorDump()
3141 aResult[3] = 0; in fileBtreeCursorDump()
3142 aResult[6] = 0; in fileBtreeCursorDump()
3144 aResult[4] = pPage->nFree; in fileBtreeCursorDump()
3151 aResult[5] = cnt; in fileBtreeCursorDump()
[all …]