Searched refs:talloc_realloc (Results 1 – 6 of 6) sorted by relevance
| /tools/xenstored/ |
| A D | talloc.h | 60 #define talloc_realloc(ctx, p, type, count) (type *)_talloc_realloc_array(ctx, p, sizeof(type), cou… macro 86 #define talloc_realloc_p(ctx, p, type, count) talloc_realloc(ctx, p, type, count)
|
| A D | talloc_guide.txt | 275 (type *)talloc_realloc(const void *context, void *ptr, type, count); 277 The talloc_realloc() macro changes the size of a talloc 281 talloc_realloc() has the following equivalences: 283 talloc_realloc(context, NULL, type, 1) ==> talloc(context, type); 284 talloc_realloc(context, NULL, type, N) ==> talloc_array(context, type, N); 285 talloc_realloc(context, ptr, type, 0) ==> talloc_free(ptr); 290 talloc_realloc() returns the new pointer, or NULL on failure. The call 299 known so the typesafe talloc_realloc() cannot be used. 521 This is a non-macro version of talloc_realloc(), which is useful
|
| A D | hashtable.c | 113 newtable = talloc_realloc(h, h->table, struct entry *, newsize); in hashtable_expand()
|
| A D | talloc.c | 1062 ret = talloc_realloc(t, orig, char, olen + alenz); in talloc_append_string() 1179 s = talloc_realloc(NULL, s, char, s_len + len+1); in talloc_vasprintf_append()
|
| A D | core.c | 1220 strings = talloc_realloc(node, strings, char, in node_perms_to_strings() 1433 names = talloc_realloc(ctx, names, const char *, levels + 1); in construct_node()
|
| A D | domain.c | 1360 domids = talloc_realloc(NULL, domids, unsigned int, nr_domids); in init_domains()
|
Completed in 19 milliseconds