Lines Matching refs:ctx
37 TALLOC_CTX *ctx;
54 check_leaks(TALLOC_CTX *ctx, size_t bytes, const char *location)
58 if (ctx == NULL) {
62 bytes_allocated = talloc_total_size(ctx);
65 talloc_report_full(ctx, stderr);
75 check_leaks_push(TALLOC_CTX *ctx)
80 snapshot->ctx = ctx;
81 snapshot->bytes_allocated = talloc_total_size(ctx);
86 _check_leaks_pop(TALLOC_CTX *ctx, const char *location)
92 if (ctx == NULL) {
104 old_ctx = snapshot->ctx;
107 if (old_ctx != ctx) {