/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`;
|
/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
|
mountinfo.c | 70 free((char *)m->fstype); 151 m->fstype = strdup(string_buf); 152 if (!m->fstype) 269 m->root, m->fstype, m->mountopt);
|
/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 if (mount(device, mntpoint_src, fstype, 0, NULL) == -1)
|
/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/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/autotest/client/cros/ |
liststorage.py | 67 def get_partition_info(part_path, bus, model, partid=None, fstype=None, 82 @param fstype: filesystem type, if present 98 if not fstype: 99 fstype = info.get('ID_FS_TYPE', None) 127 # proc_fstype instead of fstype) 130 dev['fstype'] = proc_fstype 153 dev['fstype'] = fstype 224 print ("%(device)s %(bus)s %(model)s %(size)d %(fs_uuid)s %(fstype)s "
|
/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 | 221 extern int sepol_fs_use(const char *fstype, /* IN */ 230 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::__anon31991::__anon31992 74 uint8_t fstype[8]; member in struct:fat_bpb::__anon31991::__anon31993
|
/hardware/libhardware_legacy/include/hardware_legacy/ |
IMountService.h | 51 virtual int createSecureContainer(String16 id, int sizeMb, String16 fstype, String16 key, int ownerUid) = 0;
|
/libcore/ojluni/src/main/native/ |
LinuxNativeDispatcher.c | 76 entry_fstype = (*env)->GetFieldID(env, clazz, "fstype", "[B"); 184 char* fstype; local 192 fstype = m->mnt_type; 209 len = strlen(fstype); 213 (*env)->SetByteArrayRegion(env, bytes, 0, len, (jbyte*)fstype);
|