Lines Matching refs:pointer
35 call changes the backtrace for the pointer no matter whether the pointer
267 When a pointer is freed, do not free the memory right away, but add it to
386 pointer = malloc(size)
388 **THREAD\_ID**: malloc pointer size
394 free(pointer)
396 **THREAD\_ID**: free pointer
402 pointer = calloc(nmemb, size)
404 **THREAD\_ID**: calloc pointer nmemb size
418 pointer = memalign(alignment, size)
420 **THREAD\_ID**: memalign pointer alignment size
422 pointer = aligned\_alloc(alignment, size)
424 **THREAD\_ID**: memalign pointer alignment size
426 posix\_memalign(&pointer, alignment, size)
428 **THREAD\_ID**: memalign pointer alignment size
434 pointer = valloc(size)
436 **THREAD\_ID**: memalign pointer 4096 size
442 pointer = pvalloc(size)
444 **THREAD\_ID**: memalign pointer 4096 <b>SIZE\_ROUNDED\_UP\_TO\_4096</b>
460 Track all live allocations to determine if a pointer is used that does not
474 with a bad pointer. Only three functions do this checking: free,
518 This indicates that code is attempting to free an already freed pointer. The
520 *free* with the bad pointer.
527 with an already freed pointer.
538 a pointer that is either not allocated memory, or that the memory of
539 the pointer has been corrupted.
542 function that was called with the bad pointer.