Searched refs:talloc_named_const (Results 1 – 3 of 3) sorted by relevance
| /tools/xenstored/ |
| A D | talloc.h | 48 #define talloc(ctx, type) (type *)talloc_named_const(ctx, sizeof(type), #type) 49 #define talloc_size(ctx, size) talloc_named_const(ctx, size, __location__) 51 #define talloc_new(ctx) talloc_named_const(ctx, 0, "talloc_new: " __location__) 100 void *talloc_named_const(const void *context, size_t size, const char *name);
|
| A D | talloc.c | 268 handle = talloc_named_const(context, sizeof(*handle), TALLOC_MAGIC_REFERENCE); in talloc_reference() 431 void *talloc_named_const(const void *context, size_t size, const char *name) in talloc_named_const() function 630 return talloc_named_const(context, size, name); in _talloc_realloc() 913 null_context = talloc_named_const(NULL, 0, "null_context"); in talloc_enable_null_tracking() 1008 void *p = talloc_named_const(ctx, size, name); in _talloc_zero() 1023 void *newp = talloc_named_const(t, size, name); in _talloc_memdup() 1214 return talloc_named_const(ctx, el_size * count, name); in _talloc_array() 1264 cleanup_context = talloc_named_const(NULL, 0, "autofree_context"); in talloc_autofree_context()
|
| A D | talloc_guide.txt | 241 void *talloc_named_const(const void *context, size_t size, const char *name);
|
Completed in 6 milliseconds