HomeSort by relevance Sort by last modified time
    Searched refs:fstype (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/strace/tests/
mount.c 50 static const char fstype[] = "mount_fstype"; local
53 int rc = mount(source, target, fstype, 15, data);
55 source, target, fstype, str_ro_nosuid_nodev_noexec,
58 rc = mount(source, target, fstype, MS_RELATIME | 15, data);
60 source, target, fstype,
64 rc = mount(source, target, fstype, MS_MGC_VAL, data);
66 source, target, fstype, "MS_MGC_VAL", data, rc, errno2name());
68 rc = mount(source, target, fstype, MS_MGC_VAL | 15, data);
70 source, target, fstype,
74 rc = mount(source, target, fstype, MS_REMOUNT, data)
    [all...]
  /external/strace/tests-m32/
mount.c 50 static const char fstype[] = "mount_fstype"; local
53 int rc = mount(source, target, fstype, 15, data);
55 source, target, fstype, str_ro_nosuid_nodev_noexec,
58 rc = mount(source, target, fstype, MS_RELATIME | 15, data);
60 source, target, fstype,
64 rc = mount(source, target, fstype, MS_MGC_VAL, data);
66 source, target, fstype, "MS_MGC_VAL", data, rc, errno2name());
68 rc = mount(source, target, fstype, MS_MGC_VAL | 15, data);
70 source, target, fstype,
74 rc = mount(source, target, fstype, MS_REMOUNT, data)
    [all...]
  /external/strace/tests-mx32/
mount.c 50 static const char fstype[] = "mount_fstype"; local
53 int rc = mount(source, target, fstype, 15, data);
55 source, target, fstype, str_ro_nosuid_nodev_noexec,
58 rc = mount(source, target, fstype, MS_RELATIME | 15, data);
60 source, target, fstype,
64 rc = mount(source, target, fstype, MS_MGC_VAL, data);
66 source, target, fstype, "MS_MGC_VAL", data, rc, errno2name());
68 rc = mount(source, target, fstype, MS_MGC_VAL | 15, data);
70 source, target, fstype,
74 rc = mount(source, target, fstype, MS_REMOUNT, data)
    [all...]
  /external/ltp/testcases/kernel/fs/fs_maim/
partbeat 32 $fstype=$ARGV[2];
35 if ($fstype =~ /jfs\b/i) {
38 elsif ($fstype =~ /ext2\b/i) {
41 elsif ($fstype =~ /ext3\b/i) {
44 elsif ($fstype =~ /reiserfs\b/i) {
53 $tmp=`fsck -t $fstype -a $target`;
62 $tmp=`mount -t $fstype $target $device`;
73 $tmp=`fsck -t $fstype -a $target`;
76 `mount -t $fstype $target $device`;
maimparts 42 $fstype=$ARGV[2];
77 $tmp = `./partbeat /dev/$target$k $iterations $fstype`;
  /packages/services/Car/car-lib/src/android/car/storagemonitoring/
LifetimeWriteInfo.java 47 public final String fstype; field in class:LifetimeWriteInfo
50 public LifetimeWriteInfo(String partition, String fstype, long writtenBytes) {
52 this.fstype = Objects.requireNonNull(fstype);
61 this.fstype = in.readString();
67 fstype = in.getString("fstype");
75 dest.writeString(fstype);
82 jsonWriter.name("fstype").value(fstype);
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixMountEntry.java 35 private byte[] fstype; // ufs, nfs, ... field in class:UnixMountEntry
49 String fstype() { method in class:UnixMountEntry
51 fstypeAsString = Util.toString(fstype);
LinuxFileStore.java 138 if (entry().fstype().equals("ext3") || entry().fstype().equals("ext4"))
150 if (type == PosixFileAttributeView.class && entry().fstype().equals("vfat"))
  /external/autotest/client/tests/flail/
flail.py 34 def run_once(self, fstype = 'iso9660'):
38 @param fstype: Filesystem type you wish to run flail on.
40 args = fstype + ' 1'
  /external/autotest/client/tests/fsfuzzer/
fsfuzzer.py 21 def run_once(self, fstype = 'iso9660'):
22 args = fstype + ' 1'
  /external/ltp/testcases/kernel/fs/fs_readonly/
test_robind.sh 196 for fstype in $FSTYPES; do
197 if [ "$fstype" = "reiserfs" ]; then
199 elif echo "$fstype" | grep -q "ext"; then
201 elif [ "$fstype" = "xfs" ]; then
203 elif [ "$fstype" = "btrfs" ]; then
207 if [ "$fstype" != "ramfs" ]; then
208 tst_mkfs $fstype $device $opts
211 mount -t $fstype $device dir1
237 testdir dir1 $fstype false
238 testdir dir2-bound $fstype fals
    [all...]
  /external/syslinux/extlinux/
mountinfo.h 23 const char *fstype; member in struct:mountinfo
  /external/ltp/testcases/kernel/syscalls/mount/
mount05.c 46 static char *fstype = "ext2"; variable
54 {"T:", NULL, &fstype},
71 TEST(mount(mntpoint_src, mntpoint_des, fstype, MS_BIND, NULL));
107 tst_mkfs(NULL, device, fstype, NULL, NULL);
109 SAFE_MOUNT(cleanup, device, mntpoint_src, fstype, 0, NULL);
  /external/syslinux/utils/
mkdiskimage.in 200 $fstype = 0x0e;
202 $fstype = 0x06;
204 $fstype = 0x04;
208 print OUTPUT pack("CCCCCCCCVV", 0x80, $bhead, $bsect, $bcyl, $fstype,
290 $fstype = 0x0c; # FAT32 LBA
292 $fstype = 0x0b;
296 $fstype = 0x0e; # FAT16 LBA
298 $fstype = 0x06; # FAT16 > 32MB
300 $fstype = 0x04; # FAT16 <= 32MB
307 $fstype = 0x01; # FAT1
    [all...]
  /external/autotest/client/bin/
partition.py 24 __slots__ = ('fstype', 'mkfs_flags', 'mount_options', 'fs_tag')
26 def __init__(self, fstype, fs_tag, mkfs_flags=None, mount_options=None):
30 @param fstype: The filesystem type ('ext2', 'ext4', 'xfs', etc.)
37 if not fstype or not fs_tag:
39 self.fstype = fstype
46 val = ('FsOptions(fstype=%r, mkfs_flags=%r, '
48 (self.fstype, self.mkfs_flags,
387 self.fstype = None
408 self.fstype = fs_options.fstyp
    [all...]
  /external/syslinux/gpxe/src/drivers/net/
p80211hdr.h 263 #define WLAN_CTL_FRAMELEN(fstype) (\
264 (fstype) == WLAN_FSTYPE_BLOCKACKREQ ? 24 : \
265 (fstype) == WLAN_FSTYPE_BLOCKACK ? 152 : \
266 (fstype) == WLAN_FSTYPE_PSPOLL ? 20 : \
267 (fstype) == WLAN_FSTYPE_RTS ? 20 : \
268 (fstype) == WLAN_FSTYPE_CTS ? 14 : \
269 (fstype) == WLAN_FSTYPE_ACK ? 14 : \
270 (fstype) == WLAN_FSTYPE_CFEND ? 20 : \
271 (fstype) == WLAN_FSTYPE_CFENDCFACK ? 20 : 4)
  /external/syslinux/bios/utils/
mkdiskimage 200 $fstype = 0x0e;
202 $fstype = 0x06;
204 $fstype = 0x04;
208 print OUTPUT pack("CCCCCCCCVV", 0x80, $bhead, $bsect, $bcyl, $fstype,
290 $fstype = 0x0c; # FAT32 LBA
292 $fstype = 0x0b;
296 $fstype = 0x0e; # FAT16 LBA
298 $fstype = 0x06; # FAT16 > 32MB
300 $fstype = 0x04; # FAT16 <= 32MB
307 $fstype = 0x01; # FAT1
    [all...]
  /external/autotest/client/tests/parallel_dd/
parallel_dd.py 9 def initialize(self, fs, fstype = 'ext2', megabytes = 1000, streams = 2,
15 self.fstype = fstype
23 self.old_fstype = self.fstype
89 fstype = line.split()[2]
90 logging.debug('Found %s is type %s from %s', device, fstype, file)
91 return fstype
113 self.fs.mkfs(self.fstype)
  /external/iproute2/lib/
fs.c 33 /* return mount path of first occurrence of given fstype */
37 char fstype[128]; /* max length of any filesystem name */ local
49 path, fstype) == 2) {
50 if (strcmp(fstype, fs_to_find) == 0) {
  /external/toybox/toys/other/
blkid.c 8 USE_FSTYPE(NEWTOY(fstype, "<1", TOYFLAG_BIN))
18 config FSTYPE
19 bool "fstype"
22 usage: fstype DEV...
30 struct fstype { struct
36 static const struct fstype fstypes[] = {
75 for (i=0; i < sizeof(fstypes)/sizeof(struct fstype); i++) {
109 // Output for fstype
  /external/ltp/testcases/kernel/fs/mongo/
test.sh 62 ./mongo.pl LOG=/tmp/logfile1 file_size=10000 bytes=100000 fstype=reiserfs dev=/dev/loop0 dir=$TEST_DIR RUN log=$LOG_DIR/reiserlog > /dev/null 2>&1
80 ./mongo.pl LOG=/tmp/logfile1 file_size=10000 bytes=100000 fstype=jfs dev=/dev/loop0 dir=$TEST_DIR RUN log=$LOG_DIR/jfslog
  /external/selinux/libsepol/include/sepol/policydb/
services.h 237 extern int sepol_fs_use(const char *fstype, /* IN */
246 extern int sepol_genfs_sid(const char *fstype, /* IN */
  /external/syslinux/core/fs/fat/
fat_fs.h 58 uint8_t fstype[8]; member in struct:fat_bpb::__anon37086::__anon37087
74 uint8_t fstype[8]; member in struct:fat_bpb::__anon37086::__anon37088
  /packages/services/Car/service/src/com/android/car/storagemonitoring/
SysfsLifetimeWriteInfoProvider.java 100 for (String fstype : KNOWN_FILESYSTEMS) {
101 File fspath = new File(mWriteInfosPath, fstype);
  /external/autotest/client/cros/
liststorage.py 121 def get_partition_info(part_path, bus, model, partid=None, fstype=None,
136 @param fstype: filesystem type, if present
152 if not fstype:
153 fstype = info.get('ID_FS_TYPE', None)
181 # proc_fstype instead of fstype)
184 dev['fstype'] = proc_fstype
209 dev['fstype'] = fstype
281 print ("%(device)s %(bus)s %(model)s %(size)d %(fs_uuid)s %(fstype)s "

Completed in 293 milliseconds

1 2 3 4