Searched refs:firstPath (Results 1 - 1 of 1) sorted by relevance
/commonlibrary/utils_lite/js/builtin/filekit/src/ |
H A D | nativeapi_fs_impl.c | 114 static int MakeParent(const char* path, char* firstPath, size_t fPathLen, int* dirNum)
in MakeParent() argument 130 MakeParent(fullPath, firstPath, fPathLen, dirNum);
in MakeParent() 144 if ((strcpy_s(firstPath, fPathLen, fullPath) != EOK)) {
in MakeParent() 156 char* firstPath = (char *)malloc(FILE_NAME_MAX_LEN + 1);
in MkdirRecursive() local 157 if (firstPath == NULL) {
in MkdirRecursive() 160 if (memset_s(firstPath, FILE_NAME_MAX_LEN + 1, 0x0, FILE_NAME_MAX_LEN + 1) != EOK) {
in MkdirRecursive() 161 free(firstPath);
in MkdirRecursive() 165 int ret = MakeParent(path, firstPath, FILE_NAME_MAX_LEN + 1, &dirNum);
in MkdirRecursive() 167 RmdirRecursive(firstPath);
in MkdirRecursive() 169 free(firstPath);
in MkdirRecursive() [all...] |
Completed in 1 milliseconds