OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SELINUXMNT
(Results
1 - 7
of
7
) sorted by null
/external/libselinux/src/
policy.h
16
#define
SELINUXMNT
"/sys/fs/selinux"
init.c
42
rc = statfs(
SELINUXMNT
, &sfbuf);
46
selinux_mnt = strdup(
SELINUXMNT
);
android.c
[
all
...]
/external/selinux/libselinux/src/
policy.h
19
#define
SELINUXMNT
"/sys/fs/selinux"
load_policy.c
375
if (mount(SELINUXFS,
SELINUXMNT
, SELINUXFS, 0, 0) == 0 || errno == EBUSY) {
376
mntpoint =
SELINUXMNT
;
401
fprintf(stderr, "Mount failed for selinuxfs on %s: %s\n",
SELINUXMNT
, strerror(errno));
410
* already mounted and
selinuxmnt
set above.
init.c
109
if (verify_selinuxmnt(
SELINUXMNT
) == 0) return;
/external/selinux/policycoreutils/scripts/
fixfiles
72
SELINUXMNT
=`grep selinuxfs /proc/self/mountinfo | head -1 | awk '{ print $5 }'`
73
cat ${
SELINUXMNT
}/initial_contexts/unlabeled | secon -t
80
SELINUXMNT
=`grep selinuxfs /proc/self/mountinfo | head -1 | awk '{ print $5 }'`
81
cat $
SELINUXMNT
/initial_contexts/file | secon -t
Completed in 90 milliseconds