Home
last modified time | relevance | path

Searched refs:fsType_ (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/volume/src/
H A Dexternal_volume_info.cpp40 int32_t ret = OHOS::StorageDaemon::ReadMetadata(devPath_, fsUuid_, fsType_, fsLabel_); in ReadMetadata()
41 if (fsType_ == "ntfs") { in ReadMetadata()
55 if (supportMountType_[i].compare(fsType_) == 0) { in GetFsType()
107 int32_t ret = mount(devPath_.c_str(), mountPath_.c_str(), fsType_.c_str(), mountFlags, ""); in DoMount4Ext()
152 …return mount(devPath_.c_str(), mountPath_.c_str(), fsType_.c_str(), mountFlags, mountData.c_str()); in DoMount4OtherType()
184 if (fsType_ == "ext2" || fsType_ == "ext3" || fsType_ == "ext4") { in DoMount()
186 } else if (fsType_ == "ntfs") { in DoMount()
188 } else if (fsType_ == "exfat") { in DoMount()
190 } else if (fsType_ == "vfat" || fsType_ == "fat32") { in DoMount()
284 if (fsType_ == "ntfs") { in DoSetVolDesc()
[all …]
/ohos5.0/foundation/filemanagement/storage_service/services/storage_manager/innerkits_impl/src/
H A Dvolume_external.cpp32 fsType_ = fsType; in SetFsType()
57 return fsType_; in GetFsType()
62 auto it = FS_TYPE_MAP.find(fsType_); in GetFsTypeString()
66 return FS_TYPE_MAP[fsType_]; in GetFsTypeString()
99 if (!parcel.WriteInt32(fsType_)) { in Marshalling()
122 obj->fsType_ = parcel.ReadInt32(); in Unmarshalling()
/ohos5.0/foundation/filemanagement/storage_service/interfaces/innerkits/storage_manager/native/
H A Dvolume_external.h62 int32_t fsType_ { UNDEFINED };
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/include/volume/
H A Dexternal_volume_info.h50 std::string fsType_; variable