Lines Matching refs:malloc
677 ** the text in memory obtained from malloc() and returns a pointer
678 ** to the text. NULL is returned at end of file, or if malloc()
739 ** The result is stored in space obtained from malloc() and must either
844 ** from malloc(), or a NULL pointer. The string pointed to by zAppend is
845 ** added to zIn, and the result returned in memory obtained from malloc().
17029 z = p->zDestTable = malloc( n+1 );
17698 ** from malloc()) of that first line, which caller should free sometime.
17765 zOut = malloc( j+1 );
18702 zQ2 = malloc( len+100 );
25639 home_dir = malloc( n );
25652 char *z = malloc( n );
25938 argvToFree = malloc(sizeof(argv[0])*argc*2);
25947 argv[i] = malloc( n+1 );
25982 ** the size of the alternative malloc heap,
26025 sqlite3_config(SQLITE_CONFIG_HEAP, malloc((int)szHeap), (int)szHeap, 64);
26039 (n>0 && sz>0) ? malloc(n*sz) : 0, sz, n);
26400 if( (zHistory = malloc(nHistory))!=0 ){