/kernel/liteos_m/components/fs/vfs/ |
H A D | vfs_partition.c | 42 int GetPartIdByPartName(const char *partName) in GetPartIdByPartName() argument 44 if (partName == NULL) { in GetPartIdByPartName() 49 char *p = strrchr(partName, 'p'); in GetPartIdByPartName() 158 int LOS_PartitionFormat(const char *partName, char *fsType, void *data) in LOS_PartitionFormat() argument 166 if ((iter->mPath != NULL) && (strcmp(iter->mPath, partName) == 0)) { in LOS_PartitionFormat() 175 ret = fMap->fsMgt->format(partName, data); in LOS_PartitionFormat()
|
H A D | vfs_partition.h | 44 int GetPartIdByPartName(const char *partName);
|
H A D | vfs_maps.h | 46 int (*format)(const char *partName, void *data);
|
H A D | los_fs.h | 112 * @param partName PartitionName, following the rule of fdisk hook. 119 int LOS_PartitionFormat(const char *partName, char *fsType, void *data);
|
/kernel/uniproton/src/fs/vfs/ |
H A D | vfs_partition.c | 26 S32 OsGetPartIdByPartName(const char *partName) in OsGetPartIdByPartName() argument 28 if (partName == NULL) { in OsGetPartIdByPartName() 33 char *p = strrchr(partName, 'p'); in OsGetPartIdByPartName() 140 S32 PRT_PartitionFormat(const char *partName, char *fsType, void *data) in PRT_PartitionFormat() argument 148 return OsVfsFsMgtFormat(partName, fsType, data); in PRT_PartitionFormat()
|
H A D | vfs_maps.h | 25 S32 (*format)(const char *partName, void *data);
41 S32 OsVfsFsMgtFormat(const char *partName, char *fsType, void *data);
|
H A D | vfs_maps.c | 49 S32 OsVfsFsMgtFormat(const char *partName, char *fsType, void *data) in OsVfsFsMgtFormat() argument 55 ret = fMap->fsMgt->format(partName, data); in OsVfsFsMgtFormat()
|
H A D | vfs_partition.h | 23 S32 OsGetPartIdByPartName(const char *partName);
|
/kernel/liteos_a/fs/patchfs/ |
H A D | los_partition_utils.c | 182 PRINT_ERR("Cannot find %s type\n", partInfo->partName); in GetPartitionInfo() 185 PRINT_ERR("Invalid %s information!\n", partInfo->partName); in GetPartitionInfo() 207 PRINT_ERR("Failed to add %s partition! error = %d\n", partInfo->partName, ret); in GetDevNameOfPartition() 215 PRINT_ERR("Failed to find %s dev type: %s\n", partInfo->partName, partInfo->storageType); in GetDevNameOfPartition()
|
H A D | los_partition_utils.h | 54 const CHAR *partName; member
|
H A D | los_patchfs.c | 84 PRINT_ERR("Failed to mount %s, errno %d: %s\n", partInfo.partName, err, strerror(err)); in OsMountPatchFs()
|
/kernel/uniproton/src/include/uapi/ |
H A D | prt_fs.h | 76 * @param partName PartitionName, following the rule of fdisk hook. 83 S32 PRT_PartitionFormat(const char *partName, char *fsType, void *data);
|
/kernel/liteos_m/components/fs/fatfs/ |
H A D | fatfs.c | 932 int FatfsFormat(const char *partName, void *privData)
in FatfsFormat() argument 939 if (partName == NULL) {
in FatfsFormat() 944 dev = GetLdPath(partName);
in FatfsFormat()
|
/kernel/liteos_m/components/fs/littlefs/ |
H A D | lfs_adapter.c | 654 int LfsFormat(const char *partName, void *privData)
in LfsFormat() argument 660 (void)partName;
in LfsFormat()
|
/kernel/uniproton/src/fs/littlefs/ |
H A D | lfs_adapter.c | 628 static S32 OsLfsFormat(const char *partName, void *privData)
in OsLfsFormat() argument 634 (void)partName;
in OsLfsFormat()
|