Home
last modified time | relevance | path

Searched refs:pRc (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c12091 static void *idxMalloc(int *pRc, int nByte){ in idxMalloc() argument
12093 assert( *pRc==SQLITE_OK ); in idxMalloc()
12099 *pRc = SQLITE_NOMEM; in idxMalloc()
12147 int *pRc, in idxHashAdd() argument
12162 pEntry = idxMalloc(pRc, sizeof(IdxHashEntry) + nKey+1 + nVal+1); in idxHashAdd()
12213 static IdxConstraint *idxNewConstraint(int *pRc, const char *zColl){ in idxNewConstraint() argument
12217 assert( *pRc==SQLITE_OK ); in idxNewConstraint()
12218 pNew = (IdxConstraint*)idxMalloc(pRc, sizeof(IdxConstraint) * nColl + 1); in idxNewConstraint()
12594 static void idxFinalize(int *pRc, sqlite3_stmt *pStmt){ in idxFinalize() argument
12596 if( *pRc==SQLITE_OK ) *pRc = rc; in idxFinalize()
[all …]
H A Dsqlite3.c72285 static u8 *pageFindSlot(MemPage *pPg, int nByte, int *pRc){
72317 *pRc = SQLITE_CORRUPT_PAGE(pPg);
72332 *pRc = SQLITE_CORRUPT_PAGE(pPg);
72339 *pRc = SQLITE_CORRUPT_PAGE(pPg);
186376 SQLITE_PRIVATE int sqlite3Fts3EvalTestDeferred(Fts3Cursor *pCsr, int *pRc);
186724 int *pRc, /* Success code */
186731 if( *pRc ) return;
186736 *pRc = SQLITE_NOMEM;
186738 *pRc = sqlite3_exec(db, zSql, 0, 0, 0);
186783 static void fts3DeclareVtab(int *pRc, Fts3Table *p){
[all …]