Searched refs:talloc_array (Results 1 – 7 of 7) sorted by relevance
/xen/tools/xenstore/ |
A D | xenstored_control.c | 174 resp = talloc_array(ctx, char, len); in do_control_help() 207 vec = talloc_array(in, char *, num); in do_control()
|
A D | talloc.h | 54 #define talloc_array(ctx, type, count) (type *)_talloc_array(ctx, sizeof(type), count, #type) macro 82 #define talloc_array_p(ctx, type, count) talloc_array(ctx, type, count)
|
A D | xenstored_watch.c | 99 data = talloc_array(ctx, char, len); in add_event()
|
A D | xenstored_core.c | 705 bdata->buffer = talloc_array(bdata, char, len); in send_reply() 873 data = talloc_array(in, char, genlen + len + 1); in send_directory_part() 944 children = talloc_array(ctx, char, parent->childlen + baselen); in construct_node() 1271 perms.p = talloc_array(in, struct xs_permissions, perms.num); in do_set_perms() 1471 in->buffer = talloc_array(in, char, in->hdr.msg.len); in handle_input()
|
A D | talloc_guide.txt | 284 talloc_realloc(context, NULL, type, N) ==> talloc_array(context, type, N); 500 (type *)talloc_array(const void *ctx, type, uint_t count); 502 The talloc_array() macro is equivalent to: 514 known. It operates in the same way as talloc_array(), but takes a size
|
A D | xenstored_transaction.c | 272 i->perms.p = talloc_array(i, struct xs_permissions, in access_node()
|
A D | xenstored_domain.c | 653 perms->p = talloc_array(NULL, struct xs_permissions, perms->num); in set_dom_perms_default()
|
Completed in 13 milliseconds