Lines Matching refs:tmp_con
18 context_struct_t *tmp_con = NULL;
31 &tmp_con, sepol_iface_get_ifcon(record)) < 0)
33 context_cpy(&tmp_iface->context[0], tmp_con);
34 context_destroy(tmp_con);
35 free(tmp_con);
36 tmp_con = NULL;
40 &tmp_con, sepol_iface_get_msgcon(record)) < 0)
42 context_cpy(&tmp_iface->context[1], tmp_con);
43 context_destroy(tmp_con);
44 free(tmp_con);
45 tmp_con = NULL;
60 context_destroy(tmp_con);
61 free(tmp_con);
75 sepol_context_t *tmp_con = NULL;
84 if (context_to_record(handle, policydb, ifcon, &tmp_con) < 0)
86 if (sepol_iface_set_ifcon(handle, tmp_record, tmp_con) < 0)
88 sepol_context_free(tmp_con);
89 tmp_con = NULL;
91 if (context_to_record(handle, policydb, msgcon, &tmp_con) < 0)
93 if (sepol_iface_set_msgcon(handle, tmp_record, tmp_con) < 0)
95 sepol_context_free(tmp_con);
96 tmp_con = NULL;
103 sepol_context_free(tmp_con);