Searched refs:sqliteHashInsert (Results 1 – 8 of 8) sorted by relevance
/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | hash.h | 82 void *sqliteHashInsert(Hash*, const void *pKey, int nKey, void *pData);
|
H A D | build.c | 181 pOld = sqliteHashInsert(&db->aDb[p->iDb].idxHash, p->zName, in sqliteDeleteIndex() 184 sqliteHashInsert(&db->aDb[p->iDb].idxHash, pOld->zName, in sqliteDeleteIndex() 366 pOld = sqliteHashInsert(&db->aDb[i].tblHash, p->zName, strlen(p->zName)+1, 0); in sqliteUnlinkAndDeleteTable() 372 sqliteHashInsert(&db->aDb[i].aFKey, pF1->zTo, nTo, pF1->pNextTo); in sqliteUnlinkAndDeleteTable() 972 pOld = sqliteHashInsert(&db->aDb[p->iDb].tblHash, in sqliteEndTable() 981 sqliteHashInsert(&db->aDb[p->iDb].aFKey, pFKey->zTo, nTo, pFKey); in sqliteEndTable() 1629 p = sqliteHashInsert(&db->aDb[pIndex->iDb].idxHash, in sqliteCreateIndex()
|
H A D | os.c | 268 sqliteHashInsert(&lockHash, &pLock->key, sizeof(pLock->key), 0); in releaseLockInfo() 279 sqliteHashInsert(&openHash, &pOpen->key, sizeof(pOpen->key), 0); in releaseOpenCnt() 320 pOld = sqliteHashInsert(&lockHash, &pLock->key, sizeof(key1), pLock); in findLockInfo() 343 pOld = sqliteHashInsert(&openHash, &pOpen->key, sizeof(key2), pOpen); in findLockInfo()
|
H A D | trigger.c | 216 sqliteHashInsert(&db->aDb[nt->iDb].trigHash, in sqliteFinishTrigger() 495 sqliteHashInsert(&(db->aDb[pTrigger->iDb].trigHash), zName, nName+1, 0); in sqliteDropTriggerPtr()
|
H A D | hash.c | 290 void *sqliteHashInsert(Hash *pH, const void *pKey, int nKey, void *data){ in sqliteHashInsert() function
|
H A D | btree_rb.c | 588 sqliteHashInsert(&pRbtree->tblHash, 0, n, pNewTbl); in btreeCreateTable() 674 pTree = sqliteHashInsert(&tree->tblHash, 0, n, 0); in memRbtreeDropTable()
|
H A D | vdbe.c | 171 pOld = sqliteHashInsert(&p->hash, pElem->zKey, pElem->nKey, pElem); in AggInsert() 4630 sqliteHashInsert(&p->aSet[i].hash, pOp->p3, strlen(pOp->p3)+1, p); in sqliteVdbeExec() 4634 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()
|