Lines Matching refs:ustr
80 Ustr *ustr = USTR_NULL, *temp = USTR_NULL; in semanage_split_on_space() local
84 if (!(ustr = ustr_dup_cstr(str))) in semanage_split_on_space()
87 ustr_split_spn_chrs(ustr, &off, seps, slen, USTR_NULL, in semanage_split_on_space()
94 rside_len = ustr_len(ustr) - off; in semanage_split_on_space()
95 temp = ustr_dup_subustr(ustr, off + 1, rside_len); in semanage_split_on_space()
102 ustr_sc_free(&ustr); in semanage_split_on_space()
108 Ustr *ustr = USTR_NULL, *temp = USTR_NULL; in semanage_split() local
116 ustr = ustr_dup_cstr(str); in semanage_split()
118 ustr_split_cstr(ustr, &off, delim, USTR_NULL, USTR_FLAG_SPLIT_DEF); in semanage_split()
124 rside_len = ustr_len(ustr) - off; in semanage_split()
126 temp = ustr_dup_subustr(ustr, off + 1, rside_len); in semanage_split()
133 ustr_sc_free(&ustr); in semanage_split()