Home
last modified time | relevance | path

Searched refs:talloc_named_const (Results 1 – 3 of 3) sorted by relevance

/xen/tools/xenstore/
A Dtalloc.h45 #define talloc(ctx, type) (type *)talloc_named_const(ctx, sizeof(type), #type)
46 #define talloc_size(ctx, size) talloc_named_const(ctx, size, __location__)
48 #define talloc_new(ctx) talloc_named_const(ctx, 0, "talloc_new: " __location__)
110 void *talloc_named_const(const void *context, size_t size, const char *name);
A Dtalloc.c268 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
623 return talloc_named_const(context, size, name); in _talloc_realloc()
906 null_context = talloc_named_const(NULL, 0, "null_context"); in talloc_enable_null_tracking()
1001 void *p = talloc_named_const(ctx, size, name); in _talloc_zero()
1016 void *newp = talloc_named_const(t, size, name); in _talloc_memdup()
1207 return talloc_named_const(ctx, el_size * count, name); in _talloc_array()
1257 cleanup_context = talloc_named_const(NULL, 0, "autofree_context"); in talloc_autofree_context()
A Dtalloc_guide.txt241 void *talloc_named_const(const void *context, size_t size, const char *name);

Completed in 6 milliseconds