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

  /external/e2fsprogs/lib/ext2fs/
ismounted.c 44 int *mount_flags, char *mtpt, int mtlen)
54 *mount_flags = 0;
95 *mount_flags = EXT2_MF_MOUNTED;
130 *mount_flags = EXT2_MF_MOUNTED;
135 *mount_flags |= EXT2_MF_READONLY;
149 *mount_flags |= EXT2_MF_ISROOT;
153 *mount_flags |= EXT2_MF_READONLY;
164 static errcode_t check_mntent(const char *file, int *mount_flags,
170 retval = check_mntent_file("/tmp/mtab", file, mount_flags,
176 retval = check_mntent_file("/proc/mounts", file, mount_flags,
346 int retval, mount_flags; local
    [all...]
mkjournal.c 341 int mount_flags, f; local
344 if ((retval = ext2fs_check_mount_point(fs->device_name, &mount_flags,
348 if (mount_flags & EXT2_MF_MOUNTED) {
393 if ((mount_flags & EXT2_MF_BUSY) &&
  /external/e2fsprogs/misc/
ismounted.c 75 int *mount_flags)
85 *mount_flags = 0;
144 *mount_flags = MF_MOUNTED;
174 *mount_flags = MF_MOUNTED;
185 int mount_flags = 0; local
188 retval = check_mntent_file("/proc/mounts", file, &mount_flags);
191 if (mount_flags)
194 retval = check_mntent_file("/etc/mtab", file, &mount_flags);
197 return (mount_flags);
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) {
badblocks.c 784 int mount_flags; local
786 retval = ext2fs_check_if_mounted(device_name, &mount_flags);
793 if (mount_flags & EXT2_MF_MOUNTED) {
805 if ((mount_flags & EXT2_MF_BUSY) && !exclusive_ok) {
tune2fs.c 76 static int max_mount_count, mount_count, mount_flags; variable
351 if ((mount_flags & EXT2_MF_MOUNTED) &&
352 !(mount_flags & EXT2_MF_READONLY)) {
480 if ((mount_flags & EXT2_MF_MOUNTED) == 0)
938 retval = ext2fs_check_if_mounted(device_name, &mount_flags);
  /external/e2fsprogs/resize/
main.c 169 int len, mount_flags; local
233 retval = ext2fs_check_mount_point(device_name, &mount_flags,
241 if (!(mount_flags & EXT2_MF_MOUNTED) || (mtpt[len-1] == 0))
291 if (!(mount_flags & EXT2_MF_MOUNTED))
388 if (mount_flags & EXT2_MF_MOUNTED) {
  /external/e2fsprogs/e2fsck/
journal.c 893 int group, mount_flags; local
944 retval = ext2fs_check_if_mounted(ctx->filesystem_name, &mount_flags);
945 if (retval || (mount_flags & EXT2_MF_MOUNTED))
e2fsck.h 207 int mount_flags; member in struct:e2fsck_struct
  /system/core/init/
builtins.c 260 } mount_flags[] = { variable in typeref:struct:__anon17366
284 for (i = 0; mount_flags[i].name; i++) {
285 if (!strcmp(args[n], mount_flags[i].name)) {
286 flags |= mount_flags[i].flag;
291 if (!mount_flags[i].name) {
  /external/strace/
system.c 90 static const struct xlat mount_flags[] = { variable in typeref:struct:xlat
124 printflags(mount_flags, tcp->u_arg[3], "MS_???");
1167 static const struct xlat mount_flags[] = { variable in typeref:struct:xlat
1222 printflags(mount_flags, tcp->u_arg[2], "MS_???");
1267 static const struct xlat mount_flags[] = { variable in typeref:struct:xlat
    [all...]

Completed in 171 milliseconds