Searched refs:pOld (Results 1 – 6 of 6) sorted by relevance
/PHP-5.3/ext/sqlite/libsqlite/src/ |
H A D | build.c | 178 Index *pOld; in sqliteDeleteIndex() local 181 pOld = sqliteHashInsert(&db->aDb[p->iDb].idxHash, p->zName, in sqliteDeleteIndex() 183 if( pOld!=0 && pOld!=p ){ in sqliteDeleteIndex() 184 sqliteHashInsert(&db->aDb[p->iDb].idxHash, pOld->zName, in sqliteDeleteIndex() 185 strlen(pOld->zName)+1, pOld); in sqliteDeleteIndex() 362 Table *pOld; in sqliteUnlinkAndDeleteTable() local 367 assert( pOld==0 || pOld==p ); in sqliteUnlinkAndDeleteTable() 970 Table *pOld; in sqliteEndTable() local 972 pOld = sqliteHashInsert(&db->aDb[p->iDb].tblHash, in sqliteEndTable() 974 if( pOld ){ in sqliteEndTable() [all …]
|
H A D | os.c | 314 struct lockInfo *pOld; in findLockInfo() local 320 pOld = sqliteHashInsert(&lockHash, &pLock->key, sizeof(key1), pLock); in findLockInfo() 321 if( pOld!=0 ){ in findLockInfo() 322 assert( pOld==pLock ); in findLockInfo() 332 struct openCnt *pOld; in findLockInfo() local 343 pOld = sqliteHashInsert(&openHash, &pOpen->key, sizeof(key2), pOpen); in findLockInfo() 344 if( pOld!=0 ){ in findLockInfo() 345 assert( pOld==pOpen ); in findLockInfo()
|
H A D | main.c | 1060 void *pOld = db->pTraceArg; in sqlite_trace() local 1063 return pOld; in sqlite_trace() 1077 void *pOld = db->pCommitArg; in sqlite_commit_hook() local 1080 return pOld; in sqlite_commit_hook()
|
H A D | vdbe.c | 157 AggElem *pElem, *pOld; in AggInsert() local 166 pOld = sqliteHashInsert(&p->hash, pElem->zKey, pElem->nKey, pElem); in AggInsert() 167 if( pOld!=0 ){ in AggInsert() 168 assert( pOld==pElem ); /* Malloc failed on insert */ in AggInsert() 169 sqliteFree(pOld); in AggInsert()
|
H A D | btree.c | 2394 MemPage *pOld = &aOld[i]; in balance() local 2395 for(j=0; j<pOld->nCell; j++){ in balance() 2396 apCell[nCell] = pOld->apCell[j]; in balance() 2406 apCell[nCell]->h.leftChild = pOld->u.hdr.rightChild; in balance()
|
/PHP-5.3/ext/sqlite3/libsqlite/ |
H A D | sqlite3.c | 53537 pOld->aData = (void*)&pOld[1]; 53540 limit = pOld->nCell+pOld->nOverflow; 77865 assert( pOld==pIndex || pOld==0 ); 78975 if( pOld ){ 97667 if( pOld ){ 109150 void *pOld; 109156 return pOld; 109171 void *pOld; 109177 return pOld; 109192 void *pOld; [all …]
|
Completed in 398 milliseconds