Home
last modified time | relevance | path

Searched refs:sqliteMallocRaw (Results 1 – 11 of 11) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dutil.c266 void *sqliteMallocRaw(int n){ in sqliteMallocRaw() function
310 zNew = sqliteMallocRaw(strlen(z)+1); in sqliteStrDup()
317 zNew = sqliteMallocRaw(n+1); in sqliteStrNDup()
347 *pz = zResult = sqliteMallocRaw( nByte ); in sqliteSetString()
390 *pz = zResult = sqliteMallocRaw( nByte + 1 ); in sqliteSetNString()
H A Dvdbe.c232 z = sqliteMallocRaw( pStack->n ); in hardDynamicify()
256 z = sqliteMallocRaw( pStack->n ); in hardDeephem()
781 pTos->z = sqliteMallocRaw(pFrom->n); in sqliteVdbeExec()
943 zNew = sqliteMallocRaw( nByte ); in sqliteVdbeExec()
1900 zNewRecord = sqliteMallocRaw( nByte ); in sqliteVdbeExec()
2076 zNewKey = sqliteMallocRaw( nByte ); in sqliteVdbeExec()
3088 char *z = sqliteMallocRaw( n ); in sqliteVdbeExec()
3220 char *z = sqliteMallocRaw( amt ); in sqliteVdbeExec()
3297 z = sqliteMallocRaw( amt ); in sqliteVdbeExec()
3967 azArg = sqliteMallocRaw( nByte ); in sqliteVdbeExec()
[all …]
H A Dbtree_rb.c766 pData = sqliteMallocRaw(nData); in memRbtreeInsert()
786 pNode->pKey = sqliteMallocRaw(nKey); in memRbtreeInsert()
823 pOp->pKey = sqliteMallocRaw( pOp->nKey ); in memRbtreeInsert()
839 pOp->pKey = sqliteMallocRaw( pOp->nKey ); in memRbtreeInsert()
1048 BtRollbackOp *pRollbackOp = sqliteMallocRaw(sizeof(BtRollbackOp)); in memRbtreeClearTable()
H A Dexpr.c123 pNew = sqliteMallocRaw( sizeof(*p) ); in sqliteExprDup()
186 pNew = sqliteMallocRaw( nByte ); in sqliteSrcListDup()
208 pNew = sqliteMallocRaw( sizeof(*pNew) ); in sqliteIdListDup()
211 pNew->a = sqliteMallocRaw( p->nId*sizeof(p->a[0]) ); in sqliteIdListDup()
224 pNew = sqliteMallocRaw( sizeof(*p) ); in sqliteSelectDup()
H A DsqliteInt.h182 # define sqliteMallocRaw(X) sqliteMalloc_(X,0,__FILE__,__LINE__) macro
1114 void *sqliteMallocRaw(int);
H A Dhash.c317 new_elem->pKey = sqliteMallocRaw( nKey ); in sqliteHashInsert()
H A Dos.c315 pLock = sqliteMallocRaw( sizeof(*pLock) ); in findLockInfo()
333 pOpen = sqliteMallocRaw( sizeof(*pOpen) ); in findLockInfo()
H A Dbuild.c847 zStmt = sqliteMallocRaw( n ); in createTableStmt()
1315 zType = sqliteMallocRaw( n+1 ); in sqliteAddIdxKeyType()
H A Dvdbeaux.c429 p->s.z = sqliteMallocRaw( n+1 ); in sqlite_set_result_string()
H A Dbtree.c3356 zKey2 = sqliteMallocRaw( nKey2+1 ); in checkTreePage()
3447 sCheck.anRef = sqliteMallocRaw( (sCheck.nPage+1)*sizeof(sCheck.anRef[0]) ); in fileBtreeIntegrityCheck()
H A Dpager.c1394 pPg = sqliteMallocRaw( sizeof(*pPg) + SQLITE_PAGE_SIZE in sqlitepager_get()