Home | History | Annotate | Download | only in dist

Lines Matching refs:malloc

335 ** the text in memory obtained from malloc() and returns a pointer
336 ** to the text. NULL is returned at end of file, or if malloc()
353 zLine = malloc( nLine );
883 z = p->zDestTable = malloc( n+1 );
899 ** from malloc(), or a NULL pointer. The string pointed to by zAppend is
900 ** added to zIn, and the result returned in memory obtained from malloc().
1372 zQ2 = malloc( len+100 );
1783 zSql = malloc( nByte + 20 + nCol*2 );
1809 azCol = malloc( sizeof(azCol[0])*(nCol+1) );
2555 zSql = malloc( nSql+3 );
2616 ** resulting string is obtained from malloc(). The calling
2654 home_dir = malloc( n );
2667 char *z = malloc( n );
2701 zBuf = malloc( nBuf );
2805 ** the size of the alternative malloc heap,
2841 sqlite3_config(SQLITE_CONFIG_HEAP, malloc((int)szHeap), (int)szHeap, 64);
3046 if( (zHistory = malloc(nHistory))!=0 ){