Home | History | Annotate | Download | only in src

Lines Matching full:pcidevicecon

5009 	struct cil_pcidevicecon *pcidevicecon = NULL;
5020 cil_pcidevicecon_init(&pcidevicecon);
5022 rc = cil_fill_integer(parse_current->next, &pcidevicecon->dev, 0);
5028 pcidevicecon->context_str = parse_current->next->next->data;
5030 cil_context_init(&pcidevicecon->context);
5032 rc = cil_fill_context(parse_current->next->next->cl_head, pcidevicecon->context);
5038 ast_node->data = pcidevicecon;
5044 cil_tree_log(parse_current, CIL_ERR, "Bad pcidevicecon declaration");
5045 cil_destroy_pcidevicecon(pcidevicecon);
5049 void cil_destroy_pcidevicecon(struct cil_pcidevicecon *pcidevicecon)
5051 if (pcidevicecon == NULL) {
5055 if (pcidevicecon->context_str == NULL && pcidevicecon->context != NULL) {
5056 cil_destroy_context(pcidevicecon->context);
5059 free(pcidevicecon);