Searched refs:pRc (Results 1 – 2 of 2) sorted by relevance
/netbsd-src/external/public-domain/sqlite/dist/ |
H A D | shell.c | 12012 static void *idxMalloc(int *pRc, int nByte){ in idxMalloc() argument 12014 assert( *pRc==SQLITE_OK ); in idxMalloc() 12020 *pRc = SQLITE_NOMEM; in idxMalloc() 12068 int *pRc, in idxHashAdd() argument 12083 pEntry = idxMalloc(pRc, sizeof(IdxHashEntry) + nKey+1 + nVal+1); in idxHashAdd() 12134 static IdxConstraint *idxNewConstraint(int *pRc, const char *zColl){ in idxNewConstraint() argument 12138 assert( *pRc==SQLITE_OK ); in idxNewConstraint() 12139 pNew = (IdxConstraint*)idxMalloc(pRc, sizeof(IdxConstraint) * nColl + 1); in idxNewConstraint() 12515 static void idxFinalize(int *pRc, sqlite3_stmt *pStmt){ in idxFinalize() argument 12517 if( *pRc==SQLITE_OK ) *pRc = rc; in idxFinalize() [all …]
|
H A D | sqlite3.c | 71877 static u8 *pageFindSlot(MemPage *pPg, int nByte, int *pRc){ 71909 *pRc = SQLITE_CORRUPT_PAGE(pPg); 71924 *pRc = SQLITE_CORRUPT_PAGE(pPg); 71931 *pRc = SQLITE_CORRUPT_PAGE(pPg); 184760 SQLITE_PRIVATE int sqlite3Fts3EvalTestDeferred(Fts3Cursor *pCsr, int *pRc); 185108 int *pRc, /* Success code */ 185115 if( *pRc ) return; 185120 *pRc = SQLITE_NOMEM; 185122 *pRc = sqlite3_exec(db, zSql, 0, 0, 0); 185167 static void fts3DeclareVtab(int *pRc, Fts3Table *p){ [all …]
|