Searched refs:__location__ (Results 1 – 2 of 2) sorted by relevance
| /tools/xenstored/ |
| A D | talloc.h | 41 #define __location__ __FILE__ ":" __LINESTR__ macro 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__) 54 #define talloc_zero_size(ctx, size) _talloc_zero(ctx, size, __location__) 58 #define talloc_array_size(ctx, size, count) _talloc_array(ctx, size, count, __location__) 61 #define talloc_realloc_size(ctx, ptr, size) _talloc_realloc(ctx, ptr, size, __location__) 63 #define talloc_memdup(t, p, size) _talloc_memdup(t, p, size, __location__) 71 #define data_blob(ptr, size) data_blob_named(ptr, size, "DATA_BLOB: "__location__) 72 … data_blob_talloc(ctx, ptr, size) data_blob_talloc_named(ctx, ptr, size, "DATA_BLOB: "__location__) 73 …loc(ctx, blob) data_blob_talloc_named(ctx, (blob)->data, (blob)->length, "DATA_BLOB: "__location__)
|
| A D | talloc_guide.txt | 269 off an exiting context, automatically naming it "talloc_new: __location__" 270 where __location__ is the source line it is called from. It is
|
Completed in 4 milliseconds