Searched refs:mPath (Results 1 - 7 of 7) sorted by relevance
/kernel/liteos_m/components/fs/vfs/ |
H A D | vfs_mount.c | 76 while ((mp != NULL) && (mp->mPath != NULL)) { in VfsMpFind() 77 const char *mPath = mp->mPath; in VfsMpFind() local 82 while ((*mPath == '/') && (*(mPath + 1) != '/')) { in VfsMpFind() 83 mPath++; in VfsMpFind() 89 t = strchr(mPath, '/'); in VfsMpFind() 91 t = strchr(mPath, '\0'); in VfsMpFind() 93 if ((t == mPath) || (t == NULL)) { in VfsMpFind() 96 if (strncmp(mPath, iPat in VfsMpFind() 132 const char *mPath = NULL; VfsMpFind() local [all...] |
H A D | vfs_partition.c | 166 if ((iter->mPath != NULL) && (strcmp(iter->mPath, partName) == 0)) { in LOS_PartitionFormat()
|
H A D | vfs_mount.h | 57 const char *mPath; /* target path, /system, /usr, etc. */
member
|
/kernel/uniproton/src/fs/vfs/ |
H A D | vfs_mount.c | 47 static S32 OsVfsFindMpByPath(const char *mPath, const char *iPath) in OsVfsFindMpByPath() argument 52 while ((*mPath == '/') && (*(mPath + 1) != '/')) { in OsVfsFindMpByPath() 53 mPath++; in OsVfsFindMpByPath() 59 t = strchr(mPath, '/'); in OsVfsFindMpByPath() 61 t = strchr(mPath, '\0'); in OsVfsFindMpByPath() 63 if ((t == mPath) || (t == NULL)) { in OsVfsFindMpByPath() 66 if (strncmp(mPath, iPath, (size_t)(t - mPath)) != 0) { in OsVfsFindMpByPath() 70 iPath += (t - mPath); in OsVfsFindMpByPath() [all...] |
H A D | vfs_mount.h | 35 const char *mPath; /* 挂载的路径 */
member
|
/kernel/liteos_m/components/fs/littlefs/ |
H A D | lfs_adapter.c | 179 if ((mp == NULL) || (mp->mPath == NULL) || (data == NULL)) {
in LfsMount()
|
/kernel/uniproton/src/fs/littlefs/ |
H A D | lfs_adapter.c | 158 if ((mp == NULL) || (mp->mPath == NULL) || (data == NULL)) {
in OsLfsMount()
|
Completed in 4 milliseconds