Lines Matching defs:tmp_ibpkey
20 ocontext_t *tmp_ibpkey = NULL;
26 tmp_ibpkey = (ocontext_t *)calloc(1, sizeof(*tmp_ibpkey));
27 if (!tmp_ibpkey)
30 tmp_ibpkey->u.ibpkey.subnet_prefix = sepol_ibpkey_get_subnet_prefix_bytes(data);
33 tmp_ibpkey->u.ibpkey.low_pkey = low;
34 tmp_ibpkey->u.ibpkey.high_pkey = high;
35 if (tmp_ibpkey->u.ibpkey.low_pkey > tmp_ibpkey->u.ibpkey.high_pkey) {
37 tmp_ibpkey->u.ibpkey.low_pkey, tmp_ibpkey->u.ibpkey.high_pkey);
45 context_cpy(&tmp_ibpkey->context[0], tmp_con);
50 *ibpkey = tmp_ibpkey;
57 if (tmp_ibpkey) {
58 context_destroy(&tmp_ibpkey->context[0]);
59 free(tmp_ibpkey);