Lines Matching refs:expandattr
3223 struct cil_expandtypeattribute *expandattr = NULL; in cil_gen_expandtypeattribute() local
3235 cil_expandtypeattribute_init(&expandattr); in cil_gen_expandtypeattribute()
3238 cil_list_init(&expandattr->attr_strs, CIL_TYPE); in cil_gen_expandtypeattribute()
3239 cil_list_append(expandattr->attr_strs, CIL_STRING, parse_current->next->data); in cil_gen_expandtypeattribute()
3241 rc = cil_fill_list(parse_current->next->cl_head, CIL_TYPE, &expandattr->attr_strs); in cil_gen_expandtypeattribute()
3250 expandattr->expand = CIL_TRUE; in cil_gen_expandtypeattribute()
3252 expandattr->expand = CIL_FALSE; in cil_gen_expandtypeattribute()
3258 ast_node->data = expandattr; in cil_gen_expandtypeattribute()
3265 cil_destroy_expandtypeattribute(expandattr); in cil_gen_expandtypeattribute()
3269 void cil_destroy_expandtypeattribute(struct cil_expandtypeattribute *expandattr) in cil_destroy_expandtypeattribute() argument
3271 if (expandattr == NULL) { in cil_destroy_expandtypeattribute()
3275 cil_list_destroy(&expandattr->attr_strs, CIL_TRUE); in cil_destroy_expandtypeattribute()
3277 cil_list_destroy(&expandattr->attr_datums, CIL_FALSE); in cil_destroy_expandtypeattribute()
3279 free(expandattr); in cil_destroy_expandtypeattribute()