Home
last modified time | relevance | path

Searched refs:mntent (Results 1 – 16 of 16) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/cdrom/linux/
DSDL_syscdrom.c190 struct mntent *mntent; in CheckMounts() local
201 while ( (mntent=getmntent(mntfp)) != NULL ) { in CheckMounts()
202 mnt_type_len = SDL_strlen(mntent->mnt_type) + 1; in CheckMounts()
207 mnt_dev_len = SDL_strlen(mntent->mnt_fsname) + 1; in CheckMounts()
214 SDL_strlcpy(mnt_type, mntent->mnt_type, mnt_type_len); in CheckMounts()
215 SDL_strlcpy(mnt_dev, mntent->mnt_fsname, mnt_dev_len); in CheckMounts()
219 tmp = SDL_strstr(mntent->mnt_opts, "fs="); in CheckMounts()
230 tmp = SDL_strstr(mntent->mnt_opts, "dev="); in CheckMounts()
245 mtab, mnt_dev, mntent->mnt_dir, mnt_type); in CheckMounts()
/external/ltrace/etc/
Dlibc.so.conf538 typedef mntent = struct(string, string, string, string, int, int);
539 int addmntent(file, mntent*);
544 mntent *getmntent(addr);
545 mntent *getmntent_r(file, +mntent*, string, int);
546 mntent *__getmntent_r(file, +mntent*, string, int);
547 string hasmntopt(mntent*, string);
/external/f2fs-tools/
Dconfigure.ac40 mntent.h
59 AC_CHECK_HEADERS([linux/fs.h fcntl.h mntent.h stdlib.h string.h \
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_platform_limits_posix.cc1024 CHECK_TYPE_SIZE(mntent);
1025 CHECK_SIZE_AND_OFFSET(mntent, mnt_fsname);
1026 CHECK_SIZE_AND_OFFSET(mntent, mnt_dir);
1027 CHECK_SIZE_AND_OFFSET(mntent, mnt_type);
1028 CHECK_SIZE_AND_OFFSET(mntent, mnt_opts);
1029 CHECK_SIZE_AND_OFFSET(mntent, mnt_freq);
1030 CHECK_SIZE_AND_OFFSET(mntent, mnt_passno);
/external/chromium_org/components/storage_monitor/
Dmtab_watcher_linux.cc66 mntent entry; in ReadMtab()
Dstorage_monitor_linux_unittest.cc287 mntent entry; in WriteToMtab()
/external/fio/
Dcgroup.c25 struct mntent *mnt, dummy; in find_cgroup_mnt()
/external/ppp/pppd/
Dsys-linux.c1388 struct mntent *mntent; in path_to_procfs() local
1397 while ((mntent = getmntent(fp)) != NULL) { in path_to_procfs()
1398 if (strcmp(mntent->mnt_type, MNTTYPE_IGNORE) == 0) in path_to_procfs()
1400 if (strcmp(mntent->mnt_type, "proc") == 0) { in path_to_procfs()
1401 strlcpy(proc_path, mntent->mnt_dir, sizeof(proc_path)); in path_to_procfs()
/external/e2fsprogs/lib/ext2fs/
Dismounted.c83 struct mntent *mnt; in check_mntent_file()
/external/f2fs-tools/lib/
Dlibf2fs.c369 struct mntent *mnt = NULL; in is_mounted()
/external/e2fsprogs/misc/
De4defrag.c269 struct mntent *mnt = NULL; in get_mount_point()
324 struct mntent *mnt = NULL; in is_ext4()
/external/e2fsprogs/lib/
Dconfig.h.in245 /* Define to 1 if you have the <mntent.h> header file. */
/external/compiler-rt/lib/msan/tests/
Dmsan_test.cc1990 struct mntent *mnt = getmntent(fp); in TEST()
2003 struct mntent mntbuf; in TEST()
2005 struct mntent *mnt = getmntent_r(fp, &mntbuf, buf, sizeof(buf)); in TEST()
/external/e2fsprogs/
Dconfigure.in854 mntent.h
Dconfigure10373 for ac_header in dirent.h errno.h execinfo.h getopt.h malloc.h mntent.h paths.h semaphore.…
DRELEASE-NOTES722 Fix a portability problem caused by assuming the present of mntent.h