Lines Matching defs:ioportcon
4961 struct cil_ioportcon *ioportcon = NULL;
4972 cil_ioportcon_init(&ioportcon);
4977 rc = cil_fill_integer(parse_current->next->cl_head, &ioportcon->ioport_low, 0);
4982 rc = cil_fill_integer(parse_current->next->cl_head->next, &ioportcon->ioport_high, 0);
4993 rc = cil_fill_integer(parse_current->next, &ioportcon->ioport_low, 0);
4998 ioportcon->ioport_high = ioportcon->ioport_low;
5002 ioportcon->context_str = parse_current->next->next->data;
5004 cil_context_init(&ioportcon->context);
5006 rc = cil_fill_context(parse_current->next->next->cl_head, ioportcon->context);
5012 ast_node->data = ioportcon;
5018 cil_tree_log(parse_current, CIL_ERR, "Bad ioportcon declaration");
5019 cil_destroy_ioportcon(ioportcon);
5023 void cil_destroy_ioportcon(struct cil_ioportcon *ioportcon)
5025 if (ioportcon == NULL) {
5029 if (ioportcon->context_str == NULL && ioportcon->context != NULL) {
5030 cil_destroy_context(ioportcon->context);
5033 free(ioportcon);