Lines Matching refs:tmp_ibpkey
19 ocontext_t *tmp_ibpkey = NULL;
25 tmp_ibpkey = (ocontext_t *)calloc(1, sizeof(*tmp_ibpkey));
26 if (!tmp_ibpkey)
29 tmp_ibpkey->u.ibpkey.subnet_prefix = sepol_ibpkey_get_subnet_prefix_bytes(data);
32 tmp_ibpkey->u.ibpkey.low_pkey = low;
33 tmp_ibpkey->u.ibpkey.high_pkey = high;
34 if (tmp_ibpkey->u.ibpkey.low_pkey > tmp_ibpkey->u.ibpkey.high_pkey) {
36 tmp_ibpkey->u.ibpkey.low_pkey, tmp_ibpkey->u.ibpkey.high_pkey);
44 context_cpy(&tmp_ibpkey->context[0], tmp_con);
49 *ibpkey = tmp_ibpkey;
56 if (tmp_ibpkey) {
57 context_destroy(&tmp_ibpkey->context[0]);
58 free(tmp_ibpkey);