/external/e2fsprogs/tests/t_uninit_bg_rm/ |
script | 15 echo mke2fs -q -t ext4 -F -o Linux -b 1024 $TMPFILE 1G >> $OUT.new 16 $MKE2FS -q -t ext4 -F -o Linux -b 1024 $TMPFILE 1G >> $OUT.new 2>&1 27 echo mke2fs -q -t ext4 -O bigalloc -F -o Linux -b 1024 -C 8192 $TMPFILE 10G >> $OUT.new 28 $MKE2FS -q -t ext4 -O bigalloc -F -o Linux -b 1024 -C 8192 $TMPFILE 10G >> $OUT.new 2>&1
|
expect | 1 mke2fs -q -t ext4 -F -o Linux -b 1024 test.img 1G 12 mke2fs -q -t ext4 -O bigalloc -F -o Linux -b 1024 -C 8192 test.img 10G
|
/system/vold/fs/ |
Ext4.cpp | 48 #include "Ext4.h" 57 namespace ext4 { namespace in namespace:android::vold 66 && IsFilesystemSupported("ext4"); 94 ret = mount(c_source, c_target, "ext4", tmpmnt_flags, tmpmnt_opts); 124 // ext4 devices are currently always trusted 145 rc = mount(c_source, c_target, "ext4", flags, NULL); 150 rc = mount(c_source, c_target, "ext4", flags, NULL); 175 cmd.push_back("ext4"); 200 } // namespace ext4
|
Ext4.h | 26 namespace ext4 { namespace in namespace:android::vold 37 } // namespace ext4
|
/device/generic/arm64/ |
BoardConfig.mk | 38 # PDK does not use ext4 image, but it is added here to prevent build break. 43 BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4
|
/device/generic/mips64/ |
BoardConfig.mk | 49 # PDK does not use ext4 image, but it is added here to prevent build break. 55 BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4
|
/device/generic/x86/ |
BoardConfig.mk | 28 # PDK does not use ext4 image, but it is added here to prevent build break. 33 BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4
|
/device/google/marlin/ |
fstab.aosp_svelte | 10 /dev/block/platform/soc/624000.ufshc/by-name/vendor /vendor ext4 ro,barrier=1 wait,slotselect 12 /dev/block/platform/soc/624000.ufshc/by-name/userdata /data ext4 errors=panic,noatime,nosuid,nodev,barrier=1,noauto_da_alloc latemount,wait,check,formattable,fileencryption=ice
|
fstab.common | 9 /dev/block/platform/soc/624000.ufshc/by-name/system / ext4 ro,barrier=1 wait,slotselect,verify 11 /dev/block/platform/soc/624000.ufshc/by-name/userdata /data ext4 errors=panic,noatime,nosuid,nodev,barrier=1,noauto_da_alloc latemount,wait,check,formattable,fileencryption=ice,quota
|
/external/autotest/client/samples/ |
control.fs_options | 26 ('ext4', '-o data=ordered', 'ext4ordered'), 27 ('ext4', '-o data=journal', 'ext4journal'),):
|
/external/e2fsprogs/ |
e2fsprogs.lsm | 5 Description: The filesystem utilities for the EXT2, EXT3, and EXT4 7 Keywords: utilities, filesystem, Ext2fs, ext3, ext4
|
/external/e2fsprogs/misc/ |
e2label.8.in | 7 e2label \- Change the label on an ext2/ext3/ext4 filesystem 16 will display or change the filesystem label on the ext2, ext3, or ext4
|
e2undo.8.in | 7 e2undo \- Replay an undo log for an ext2/ext3/ext4 filesystem 27 for an ext2/ext3/ext4 filesystem found on
|
fuse2fs.1.in | 7 fuse2fs \- FUSE file system client for ext2/ext3/ext4 file systems 22 devices or image files containing ext2, ext3, and ext4 file systems. 70 .BR ext4 (5)
|
/external/e2fsprogs/tests/f_detect_junk/ |
expect.nodebugfs | 6 The superblock could not be read or does not describe a valid ext2/ext3/ext4 7 filesystem. If the device is valid and it really contains an ext2/ext3/ext4
|
/external/e2fsprogs/tests/f_detect_xfs/ |
expect | 6 The superblock could not be read or does not describe a valid ext2/ext3/ext4 7 filesystem. If the device is valid and it really contains an ext2/ext3/ext4
|
expect.nodebugfs | 6 The superblock could not be read or does not describe a valid ext2/ext3/ext4 7 filesystem. If the device is valid and it really contains an ext2/ext3/ext4
|
/external/e2fsprogs/tests/r_64bit_big_expand/ |
script | 3 test_description="very large fs growth using ext4 w/64bit" 4 FEATURES="-t ext4 -O 64bit"
|
/external/e2fsprogs/tests/r_bigalloc_big_expand/ |
script | 3 test_description="ext4 with bigalloc" 4 FEATURES="-t ext4 -O bigalloc"
|
/external/e2fsprogs/tests/r_ext4_big_expand/ |
script | 3 test_description="very large fs growth using ext4" 4 FEATURES="-t ext4"
|
/external/kmod/testsuite/rootfs-pristine/test-modinfo/ |
correct.txt | 1 filename: /ext4-x86_64-sha1.ko 13 filename: /ext4-x86_64-sha256.ko
|
/external/ltp/runtest/ |
commands | 24 df01_ext4 df01.sh -f ext4 32 mkfs01_ext4 mkfs01.sh -f ext4
|
/system/extras/cppreopts/ |
cppreopts.rc | 16 mount ext4 /dev/block/bootdevice/by-name/system_b /postinstall ro nosuid nodev noexec 24 mount ext4 /dev/block/bootdevice/by-name/system_a /postinstall ro nosuid nodev noexec
|
/system/vold/ |
PrivateVolume.cpp | 17 #include "fs/Ext4.h" 108 if (mFsType == "ext4") { 109 int res = ext4::Check(mDmDevPath, mPath); 117 if (ext4::Mount(mDmDevPath, mPath, false, false, true)) { 180 // give everyone else ext4 because sysfs rotational isn't reliable. 184 resolvedFsType = "ext4"; 189 if (resolvedFsType == "ext4") { 191 if (ext4::Format(mDmDevPath, 0, "/data")) {
|
/docs/source.android.com/zh-cn/security/encryption/ |
file-based.html | 41 <p>Android ??????? (AOSP) ???? EXT4 ???????????????????????????????????????????????? FBE ?????????????????? (SoC) ????????? 50 <p>Android ???????????????? vold (system/vold) ???????? Android ???????????????? PDE ?? vold ?????????????????? CE ??? DE ?????????????????? <a href="#kernel-support">EXT4 ??</a>??????????????????????????? SystemUI??????????? FBE ???????????????</p> 63 <li>? EXT4 ???<strong>????</strong>????????EXT4_FS_ENCRYPTION?</li><li>?? 1.0 ? 2.0 ? HAL ? <strong><a href="/security/keystore/index.html">Keymaster ??</a></strong>???? Keymaster 0.3??????????????????????????????? 77 <p>AOSP ????????????? Linux 4.4 ???? EXT4 ????????????????? 4.4 ?????????EXT4 ????????? Android ??????? 3.10 ???????? Nexus ??? 79 <p>?????????????????????????AOSP ??/?? Git ????? android-3.10.y ??????????????????????????? Linux ?????? <a href="https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/log/?id=refs/tags/v4.6">linux-4.6</a>???? EXT4 ? JBD2 ????????????Nexus ????????????????? 99 <p>??????????????? 3.10 ??????Linux 3.18 ?? EXT4 ? JBD2 ?????????? 3.10 ????????????????????????????????????????? Nexus ????????????????</p> 102 <li>EXT3 ??????? EXT4 ???????? EXT3 ????</li><li>?????? (GFS) ??</li><li>EXT4 ?? ACL ??</li> 105 <p>??? EXT4 ????????????????????????????????????????????????? [all...] |