Home | History | Annotate | Download | only in src

Lines Matching refs:mls

20 	/* MLS */
21 char *mls;
103 /* MLS */
107 return con->mls;
113 sepol_context_t * con, const char *mls)
116 char *tmp_mls = strdup(mls);
119 "MLS fields to %s", mls);
122 free(con->mls);
123 con->mls = tmp_mls;
144 con->mls = NULL;
175 if (con->mls && !(new_con->mls = strdup(con->mls)))
202 free(con->mls);
251 /* Type, and possibly MLS */
290 const int mls_sz = (con->mls) ? strlen(con->mls) : 0;
292 mls_sz + ((con->mls) ? 3 : 2);
298 if (con->mls) {
300 con->user, con->role, con->type, con->mls);