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

  /external/e2fsprogs/lib/ext2fs/
ismounted.c 46 struct mntent *mnt; local
67 while ((mnt = getmntent (f)) != NULL) {
68 if (mnt->mnt_fsname[0] != '/')
70 if (strcmp(file, mnt->mnt_fsname) == 0)
72 if (stat(mnt->mnt_fsname, &st_buf) == 0) {
86 if (mnt == 0) {
113 if (stat(mnt->mnt_dir, &st_buf) < 0) {
118 mtab_file, mnt->mnt_dir);
127 mtab_file, file, mnt->mnt_dir);
136 if (hasmntopt(mnt, MNTOPT_RO)
    [all...]
  /external/linux-tools-perf/util/
cgroup.c 61 char mnt[MAX_PATH+1]; local
65 if (cgroupfs_find_mountpoint(mnt, MAX_PATH+1))
68 snprintf(path, MAX_PATH, "%s/%s", mnt, name);
  /external/libffi/src/
closures.c 264 struct mntent mnt; local
267 if (getmntent_r (last_mntent, &mnt, buf, sizeof (buf)))
270 if (hasmntopt (&mnt, "ro")
271 || hasmntopt (&mnt, "noexec")
272 || access (mnt.mnt_dir, W_OK))
275 fd = open_temp_exec_file_dir (mnt.mnt_dir);

Completed in 150 milliseconds