realloc_array      43 lib/util/memory.h #define malloc_array_p(type, count) (type *)realloc_array(NULL, sizeof(type), count, false)
realloc_array      48 lib/util/memory.h #define realloc_p(p, type, count) (type *)realloc_array(p, sizeof(type), count, false)
realloc_array     541 lib/util/util.c 	return realloc_array(NULL, el_size, count, false);
realloc_array     219 source3/include/smb_macros.h #define SMB_REALLOC_ARRAY(p,type,count) (type *)realloc_array((p),sizeof(type),(count),True) /* Always frees p on error or s == 0 */
realloc_array     220 source3/include/smb_macros.h #define SMB_REALLOC_ARRAY_KEEP_OLD_ON_ERROR(p,type,count) (type *)realloc_array((p),sizeof(type),(count),False) /* Never frees p on error or s == 0 */