Home
last modified time | relevance | path

Searched refs:rePtr (Results 1 - 1 of 1) sorted by relevance

/commonlibrary/ets_utils/js_api_module/url/
H A Djs_url.cpp1742 char *rePtr = nullptr; in ToUSVString() local
1744 size_t reSize = wcstombs(rePtr, winput.c_str(), 0) + 1; in ToUSVString()
1746 rePtr = new (std::nothrow) char[reSize]; in ToUSVString()
1747 if (rePtr == nullptr) { in ToUSVString()
1748 HILOG_ERROR("URLSearchParams:: rePtr is nullptr"); in ToUSVString()
1751 if (memset_s(rePtr, reSize, 0, reSize) != EOK) { in ToUSVString()
1753 delete[] rePtr; in ToUSVString()
1756 wcstombs(rePtr, winput.c_str(), inputLen); in ToUSVString()
1757 reStr = rePtr; in ToUSVString()
1760 delete[] rePtr; in ToUSVString()
[all...]

Completed in 4 milliseconds