Lines Matching refs:m_label
1151 if ((m_label = malloc(sizeof (m_range_t))) == NULL) { in proc_label()
1154 m_label->lower_bound = NULL; in proc_label()
1155 m_label->upper_bound = NULL; in proc_label()
1160 if (str_to_label(optstr, &m_label->lower_bound, MAC_LABEL, in proc_label()
1168 m_label->upper_bound = m_label->lower_bound; in proc_label()
1173 if (str_to_label(ADMIN_LOW, &m_label->lower_bound, MAC_LABEL, in proc_label()
1181 if (str_to_label(ADMIN_HIGH, &m_label->upper_bound, in proc_label()
1186 if (str_to_label(p, &m_label->upper_bound, MAC_LABEL, in proc_label()
1198 if (str_to_label(optstr, &m_label->lower_bound, MAC_LABEL, in proc_label()
1208 if (str_to_label(ADMIN_HIGH, &m_label->upper_bound, in proc_label()
1213 if (str_to_label(p, &m_label->upper_bound, MAC_LABEL, in proc_label()
1223 if (!bldominates(m_label->upper_bound, m_label->lower_bound)) { in proc_label()
1233 m_label_free(m_label->upper_bound); in proc_label()
1234 m_label_free(m_label->lower_bound); in proc_label()
1235 free(m_label); in proc_label()