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()
3259 ast_node->data = expandattr; in cil_gen_expandtypeattribute()
3266 cil_destroy_expandtypeattribute(expandattr); in cil_gen_expandtypeattribute()
3270 void cil_destroy_expandtypeattribute(struct cil_expandtypeattribute *expandattr) in cil_destroy_expandtypeattribute() argument
3272 if (expandattr == NULL) { in cil_destroy_expandtypeattribute()
3276 cil_list_destroy(&expandattr->attr_strs, CIL_TRUE); in cil_destroy_expandtypeattribute()
3278 cil_list_destroy(&expandattr->attr_datums, CIL_FALSE); in cil_destroy_expandtypeattribute()
3280 free(expandattr); in cil_destroy_expandtypeattribute()