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

  /external/e2fsprogs/misc/
ismounted.c 78 int *mount_flags)
88 *mount_flags = 0;
144 *mount_flags = MF_MOUNTED;
174 *mount_flags = MF_MOUNTED;
188 int mount_flags = 0; local
191 retval = check_mntent_file("/proc/mounts", file, &mount_flags);
194 if (mount_flags)
197 retval = check_mntent_file("/etc/mtab", file, &mount_flags);
200 return (mount_flags);
e2undo.c 128 int mount_flags; local
166 retval = ext2fs_check_if_mounted(device_name, &mount_flags);
173 if (mount_flags & EXT2_MF_MOUNTED) {
util.c 146 int mount_flags; local
148 retval = ext2fs_check_if_mounted(device, &mount_flags);
155 if (mount_flags & EXT2_MF_MOUNTED) {
166 if (mount_flags & EXT2_MF_BUSY) {
blkid.c 173 int len, mount_flags; local
204 retval = ext2fs_check_mount_point(devname, &mount_flags,
207 if (mount_flags & EXT2_MF_MOUNTED) {
210 } else if (mount_flags & EXT2_MF_BUSY)
badblocks.c 926 int mount_flags; local
928 retval = ext2fs_check_if_mounted(device_name, &mount_flags);
935 if (mount_flags & EXT2_MF_MOUNTED) {
947 if ((mount_flags & EXT2_MF_BUSY) && !exclusive_ok) {
tune2fs.c 71 static int max_mount_count, mount_count, mount_flags; variable
337 if (mount_flags & EXT2_MF_READONLY)
385 if ((mount_flags & EXT2_MF_MOUNTED) &&
386 !(mount_flags & EXT2_MF_READONLY)) {
437 if ((mount_flags & EXT2_MF_MOUNTED) &&
438 !(mount_flags & EXT2_MF_READONLY)) {
565 if ((mount_flags & EXT2_MF_MOUNTED) == 0)
    [all...]
  /external/e2fsprogs/lib/ext2fs/
ismounted.c 44 int *mount_flags, char *mtpt, int mtlen)
54 *mount_flags = 0;
97 *mount_flags = EXT2_MF_MOUNTED;
132 *mount_flags = EXT2_MF_MOUNTED;
137 *mount_flags |= EXT2_MF_READONLY;
151 *mount_flags |= EXT2_MF_ISROOT;
155 *mount_flags |= EXT2_MF_READONLY;
166 static errcode_t check_mntent(const char *file, int *mount_flags,
172 retval = check_mntent_file("/tmp/mtab", file, mount_flags,
178 retval = check_mntent_file("/proc/mounts", file, mount_flags,
356 int retval, mount_flags; local
    [all...]
mkjournal.c 462 int mount_flags, f; local
465 if ((retval = ext2fs_check_mount_point(fs->device_name, &mount_flags,
469 if (mount_flags & EXT2_MF_MOUNTED) {
526 if ((mount_flags & EXT2_MF_BUSY) &&
  /external/chromium_org/chrome/browser/chromeos/login/
parallel_authenticator.cc 471 int mount_flags = cryptohome::MOUNT_FLAGS_NONE; local
515 mount_flags |= cryptohome::CREATE_IF_MISSING;
523 mount_flags));
  /external/e2fsprogs/resize/
main.c 175 int len, mount_flags; local
245 retval = ext2fs_check_mount_point(device_name, &mount_flags,
253 if (!(mount_flags & EXT2_MF_MOUNTED) || (mtpt[len-1] == 0))
305 if (!(mount_flags & EXT2_MF_MOUNTED))
452 if (mount_flags & EXT2_MF_MOUNTED) {
  /external/e2fsprogs/e2fsck/
journal.c 929 int group, mount_flags; local
980 retval = ext2fs_check_if_mounted(ctx->filesystem_name, &mount_flags);
981 if (retval || (mount_flags & EXT2_MF_MOUNTED))
e2fsck.h 218 int mount_flags; member in struct:e2fsck_struct
  /system/core/fs_mgr/
fs_mgr.c 67 static struct flag_list mount_flags[] = { variable in typeref:struct:flag_list
396 ERROR("Error parsing mount_flags\n");
400 fstab->recs[cnt].flags = parse_flags(p, mount_flags, NULL,
  /system/core/init/
builtins.c 340 } mount_flags[] = { variable in typeref:struct:__anon62688
372 for (i = 0; mount_flags[i].name; i++) {
373 if (!strcmp(args[n], mount_flags[i].name)) {
374 flags |= mount_flags[i].flag;
379 if (!mount_flags[i].name) {
  /external/strace/
system.c 97 static const struct xlat mount_flags[] = { variable in typeref:struct:xlat
155 printflags(mount_flags, tcp->u_arg[3], "MS_???");
1292 static const struct xlat mount_flags[] = { variable in typeref:struct:xlat
1392 static const struct xlat mount_flags[] = { variable in typeref:struct:xlat
    [all...]

Completed in 829 milliseconds