Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libsqlite/src/
H A Dutil.c269 void *sqliteMallocRaw(int n){ in sqliteMallocRaw() function
313 zNew = sqliteMallocRaw(strlen(z)+1); in sqliteStrDup()
320 zNew = sqliteMallocRaw(n+1); in sqliteStrNDup()
350 *pz = zResult = sqliteMallocRaw( nByte ); in sqliteSetString()
393 *pz = zResult = sqliteMallocRaw( nByte + 1 ); in sqliteSetNString()
H A Dvdbe.c234 z = sqliteMallocRaw( pStack->n ); in hardDynamicify()
258 z = sqliteMallocRaw( pStack->n ); in hardDeephem()
783 pTos->z = sqliteMallocRaw(pFrom->n); in sqliteVdbeExec()
945 zNew = sqliteMallocRaw( nByte ); in sqliteVdbeExec()
1902 zNewRecord = sqliteMallocRaw( nByte ); in sqliteVdbeExec()
2078 zNewKey = sqliteMallocRaw( nByte ); in sqliteVdbeExec()
2974 pC->pData = sqliteMallocRaw( pC->nData ); in sqliteVdbeExec()
3090 char *z = sqliteMallocRaw( n ); in sqliteVdbeExec()
3222 char *z = sqliteMallocRaw( amt ); in sqliteVdbeExec()
3299 z = sqliteMallocRaw( amt ); in sqliteVdbeExec()
[all …]
H A Dbtree_rb.c769 pData = sqliteMallocRaw(nData); in memRbtreeInsert()
789 pNode->pKey = sqliteMallocRaw(nKey); in memRbtreeInsert()
826 pOp->pKey = sqliteMallocRaw( pOp->nKey ); in memRbtreeInsert()
842 pOp->pKey = sqliteMallocRaw( pOp->nKey ); in memRbtreeInsert()
1051 BtRollbackOp *pRollbackOp = sqliteMallocRaw(sizeof(BtRollbackOp)); in memRbtreeClearTable()
H A Dexpr.c126 pNew = sqliteMallocRaw( sizeof(*p) ); in sqliteExprDup()
189 pNew = sqliteMallocRaw( nByte ); in sqliteSrcListDup()
211 pNew = sqliteMallocRaw( sizeof(*pNew) ); in sqliteIdListDup()
214 pNew->a = sqliteMallocRaw( p->nId*sizeof(p->a[0]) ); in sqliteIdListDup()
227 pNew = sqliteMallocRaw( sizeof(*p) ); in sqliteSelectDup()
H A DsqliteInt.h185 # define sqliteMallocRaw(X) sqliteMalloc_(X,0,__FILE__,__LINE__) macro
1117 void *sqliteMallocRaw(int);
H A Dhash.c320 new_elem->pKey = sqliteMallocRaw( nKey ); in sqliteHashInsert()
H A Dos.c318 pLock = sqliteMallocRaw( sizeof(*pLock) ); in findLockInfo()
336 pOpen = sqliteMallocRaw( sizeof(*pOpen) ); in findLockInfo()
H A Dbuild.c850 zStmt = sqliteMallocRaw( n ); in createTableStmt()
1318 zType = sqliteMallocRaw( n+1 ); in sqliteAddIdxKeyType()
H A Dvdbeaux.c432 p->s.z = sqliteMallocRaw( n+1 ); in sqlite_set_result_string()
H A Dbtree.c3358 zKey2 = sqliteMallocRaw( nKey2+1 ); in checkTreePage()
3449 sCheck.anRef = sqliteMallocRaw( (sCheck.nPage+1)*sizeof(sCheck.anRef[0]) ); in fileBtreeIntegrityCheck()
H A Dpager.c1396 pPg = sqliteMallocRaw( sizeof(*pPg) + SQLITE_PAGE_SIZE in sqlitepager_get()