Searched refs:shellMalloc (Results 1 – 3 of 3) sorted by relevance
/external/lzma/CPP/Windows/ |
D | Shell.cpp | 28 CMyComPtr<IMalloc> shellMalloc; in Free() local 29 if (::SHGetMalloc(&shellMalloc) != NOERROR) in Free() 31 shellMalloc->Free(m_Object); in Free()
|
/external/sqlite/dist/ |
D | shell.c | 15072 static void *shellMalloc(int *pRc, sqlite3_int64 nByte){ in shellMalloc() function 15159 pTab = (RecoverTable*)shellMalloc(&rc, sizeof(RecoverTable)); in recoverNewTable() 15227 pTab->azlCol = (char**)shellMalloc(&rc, sizeof(char*) * (nSqlCol+1)); in recoverNewTable() 15349 pTab = (RecoverTable*)shellMalloc(pRc, sizeof(RecoverTable)); in recoverOrphanTable() 15355 pTab->azlCol = (char**)shellMalloc(pRc, sizeof(char*) * (nCol+1)); in recoverOrphanTable()
|
/external/sqlite/dist/orig/ |
D | shell.c | 15051 static void *shellMalloc(int *pRc, sqlite3_int64 nByte){ in shellMalloc() function 15138 pTab = (RecoverTable*)shellMalloc(&rc, sizeof(RecoverTable)); in recoverNewTable() 15206 pTab->azlCol = (char**)shellMalloc(&rc, sizeof(char*) * (nSqlCol+1)); in recoverNewTable() 15328 pTab = (RecoverTable*)shellMalloc(pRc, sizeof(RecoverTable)); in recoverOrphanTable() 15334 pTab->azlCol = (char**)shellMalloc(pRc, sizeof(char*) * (nCol+1)); in recoverOrphanTable()
|