Searched refs:firstPath (Results 1 – 3 of 3) sorted by relevance
/ohos5.0/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()
|
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/ |
H A D | bundle_daemon_client.cpp | 207 int32_t BundleDaemonClient::CallClientInvoke(int32_t funcId, const char *firstPath, const char *sec… in RegisterCallback() argument 213 std::string innerStr = firstPath; in RegisterCallback() 217 WriteUint16(&request, strlen(firstPath)); in RegisterCallback()
|
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/include/ |
H A D | bundle_daemon_client.h | 44 …int32_t CallClientInvoke(int32_t funcId, const char *firstPath, const char *secondPath, bool keepD…
|