HomeSort by relevance Sort by last modified time
    Searched defs:mls (Results 1 - 5 of 5) sorted by null

  /external/libsepol/tests/
libsepol-tests.c 35 int mls; variable
107 /* first do the non-mls tests */
108 mls = 0;
112 /* then with mls */
113 mls = 1;
  /external/libsepol/src/
context.c 12 #include "mls.h"
158 const char *mls = sepol_context_get_mls(record); local
194 /* MLS */
195 if (mls && !policydb->mls) {
196 ERR(handle, "MLS is disabled, but MLS context \"%s\" found",
197 mls);
199 } else if (!mls && policydb->mls) {
249 char *mls = NULL; local
    [all...]
context_record.c 20 /* MLS */
21 char *mls; member in struct:sepol_context
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
    [all...]
  /external/checkpolicy/
policy_parse.y 9 * Support for enhanced MLS infrastructure.
198 opt_mls : mls
201 mls : sensitivities dominance opt_categories levels mlspolicy label
  /external/libsepol/include/sepol/policydb/
policydb.h 13 * Support for enhanced MLS infrastructure.
180 mls_semantic_range_t range; /* MLS range (min. - max.) for user */
181 mls_semantic_level_t dfltlevel; /* default login MLS level for user */
458 /* Whether this policydb is mls, should always be set */
459 int mls; member in struct:policydb

Completed in 3767 milliseconds