Lines Matching defs:anc_ctx
117 struct mbof_del_ancestors_ctx *anc_ctx;
1899 struct mbof_del_ancestors_ctx *anc_ctx;
1903 anc_ctx = talloc_zero(delop, struct mbof_del_ancestors_ctx);
1904 if (!anc_ctx) {
1907 delop->anc_ctx = anc_ctx;
1909 new_list = talloc_zero(anc_ctx, struct mbof_dn_array);
1920 delop->anc_ctx->new_list = new_list;
1921 delop->anc_ctx->num_direct = new_list->num;
1949 struct mbof_del_ancestors_ctx *anc_ctx;
1961 anc_ctx = delop->anc_ctx;
1962 new_list = anc_ctx->new_list;
1964 ret = ldb_build_search_req(&search, ldb, anc_ctx,
1965 new_list->dns[anc_ctx->cur],
1979 struct mbof_del_ancestors_ctx *anc_ctx;
1994 anc_ctx = delop->anc_ctx;
1995 new_list = anc_ctx->new_list;
2012 if (anc_ctx->entry != NULL) {
2015 ldb_dn_get_linearized(anc_ctx->entry->dn));
2021 anc_ctx->entry = talloc_steal(anc_ctx, msg);
2022 if (anc_ctx->entry == NULL) {
2032 if (anc_ctx->entry == NULL) {
2039 el = ldb_msg_find_element(anc_ctx->entry, DB_MEMBEROF);
2077 talloc_free(anc_ctx->entry);
2078 anc_ctx->entry = NULL;
2079 anc_ctx->cur++;
2082 if (anc_ctx->cur < anc_ctx->num_direct) {
2119 new_list = delop->anc_ctx->new_list;
2798 talloc_zfree(delop->anc_ctx);