Searched refs:talloc_realloc (Results 1 – 4 of 4) sorted by relevance
/xen/tools/xenstore/ |
A D | talloc.h | 57 #define talloc_realloc(ctx, p, type, count) (type *)_talloc_realloc_array(ctx, p, sizeof(type), cou… macro 83 #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 | talloc.c | 1055 ret = talloc_realloc(t, orig, char, olen + alenz); in talloc_append_string() 1172 s = talloc_realloc(NULL, s, char, s_len + len+1); in talloc_vasprintf_append()
|
A D | xenstored_core.c | 785 strings = talloc_realloc(ctx, strings, char, in perms_to_strings()
|
Completed in 11 milliseconds