Lines Matching refs:rePtr
1742 char *rePtr = nullptr;
1744 size_t reSize = wcstombs(rePtr, winput.c_str(), 0) + 1;
1746 rePtr = new (std::nothrow) char[reSize];
1747 if (rePtr == nullptr) {
1748 HILOG_ERROR("URLSearchParams:: rePtr is nullptr");
1751 if (memset_s(rePtr, reSize, 0, reSize) != EOK) {
1753 delete[] rePtr;
1756 wcstombs(rePtr, winput.c_str(), inputLen);
1757 reStr = rePtr;
1760 delete[] rePtr;