Home
last modified time | relevance | path

Searched refs:recvRootDir (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/sdk/transmission/trans_channel/proxy/src/
H A Dclient_trans_proxy_file_helper.c316 char *GetFullRecvPath(const char *filePath, const char *recvRootDir) in GetFullRecvPath() argument
318 if ((filePath == NULL) || (recvRootDir == NULL)) { in GetFullRecvPath()
322 int32_t rootDirLength = (int32_t)strlen(recvRootDir); in GetFullRecvPath()
326 ((rootDirLength > 0) && (recvRootDir[rootDirLength - 1] == PATH_SEPARATOR))) { in GetFullRecvPath()
338 ret = sprintf_s(recvFullPath, destFullPathLength + 1, "%s/%s", recvRootDir, filePath); in GetFullRecvPath()
340 ret = sprintf_s(recvFullPath, destFullPathLength + 1, "%s%s", recvRootDir, filePath); in GetFullRecvPath()
/ohos5.0/foundation/communication/dsoftbus/sdk/transmission/trans_channel/proxy/include/
H A Dclient_trans_proxy_file_helper.h46 char *GetFullRecvPath(const char *filePath, const char *recvRootDir);