Searched refs:_talloc_zero (Results 1 – 2 of 2) sorted by relevance
/xen/tools/xenstore/ |
A D | talloc.h | 50 #define talloc_zero(ctx, type) (type *)_talloc_zero(ctx, sizeof(type), #type) 51 #define talloc_zero_size(ctx, size) _talloc_zero(ctx, size, __location__) 126 void *_talloc_zero(const void *ctx, size_t size, const char *name);
|
A D | talloc.c | 999 void *_talloc_zero(const void *ctx, size_t size, const char *name) in _talloc_zero() function 1218 return _talloc_zero(ctx, el_size * count, name); in _talloc_zero_array()
|
Completed in 5 milliseconds