Searched refs:sqliteHashInsert (Results 1 – 8 of 8) sorted by relevance
| /onnv-gate/usr/src/lib/libsqlite/src/ |
| H A D | hash.h | 85 void *sqliteHashInsert(Hash*, const void *pKey, int nKey, void *pData);
|
| H A D | build.c | 184 pOld = sqliteHashInsert(&db->aDb[p->iDb].idxHash, p->zName, in sqliteDeleteIndex() 187 sqliteHashInsert(&db->aDb[p->iDb].idxHash, pOld->zName, in sqliteDeleteIndex() 369 pOld = sqliteHashInsert(&db->aDb[i].tblHash, p->zName, strlen(p->zName)+1, 0); in sqliteUnlinkAndDeleteTable() 375 sqliteHashInsert(&db->aDb[i].aFKey, pF1->zTo, nTo, pF1->pNextTo); in sqliteUnlinkAndDeleteTable() 975 pOld = sqliteHashInsert(&db->aDb[p->iDb].tblHash, in sqliteEndTable() 984 sqliteHashInsert(&db->aDb[p->iDb].aFKey, pFKey->zTo, nTo, pFKey); in sqliteEndTable() 1632 p = sqliteHashInsert(&db->aDb[pIndex->iDb].idxHash, in sqliteCreateIndex()
|
| H A D | os.c | 271 sqliteHashInsert(&lockHash, &pLock->key, sizeof(pLock->key), 0); in releaseLockInfo() 282 sqliteHashInsert(&openHash, &pOpen->key, sizeof(pOpen->key), 0); in releaseOpenCnt() 323 pOld = sqliteHashInsert(&lockHash, &pLock->key, sizeof(key1), pLock); in findLockInfo() 346 pOld = sqliteHashInsert(&openHash, &pOpen->key, sizeof(key2), pOpen); in findLockInfo()
|
| H A D | trigger.c | 219 sqliteHashInsert(&db->aDb[nt->iDb].trigHash, in sqliteFinishTrigger() 498 sqliteHashInsert(&(db->aDb[pTrigger->iDb].trigHash), zName, nName+1, 0); in sqliteDropTriggerPtr()
|
| H A D | hash.c | 293 void *sqliteHashInsert(Hash *pH, const void *pKey, int nKey, void *data){ in sqliteHashInsert() function
|
| H A D | btree_rb.c | 591 sqliteHashInsert(&pRbtree->tblHash, 0, n, pNewTbl); in btreeCreateTable() 677 pTree = sqliteHashInsert(&tree->tblHash, 0, n, 0); in memRbtreeDropTable()
|
| H A D | vdbe.c | 173 pOld = sqliteHashInsert(&p->hash, pElem->zKey, pElem->nKey, pElem); in AggInsert() 4632 sqliteHashInsert(&p->aSet[i].hash, pOp->p3, strlen(pOp->p3)+1, p); in sqliteVdbeExec() 4636 sqliteHashInsert(&p->aSet[i].hash, pTos->z, pTos->n, p); in sqliteVdbeExec()
|
| H A D | expr.c | 1662 sqliteHashInsert(&db->aFunc, zName, nName, (void*)p); in sqliteFindFunction()
|