Lines Matching refs:tmp_ctx
70 TALLOC_CTX *tmp_ctx;
74 tmp_ctx = talloc_new(NULL);
75 assert_non_null(tmp_ctx);
77 search_bases = generate_bases(tmp_ctx, dns, n);
78 check_leaks_push(tmp_ctx);
79 ret = sss_ldap_dn_in_search_bases(tmp_ctx, dn, search_bases, NULL);
80 assert_true(check_leaks_pop(tmp_ctx) == true);
82 talloc_free(tmp_ctx);
109 TALLOC_CTX *tmp_ctx;
116 tmp_ctx = talloc_new(NULL);
117 assert_non_null(tmp_ctx);
119 search_bases = generate_bases(tmp_ctx, dns, n);
120 search_bases2 = generate_bases(tmp_ctx, dns2, n2);
121 sdom = talloc_zero(tmp_ctx, struct sdap_domain);
123 sdom2 = talloc_zero(tmp_ctx, struct sdap_domain);
133 opts = talloc(tmp_ctx, struct sdap_options);
150 talloc_free(tmp_ctx);