Home
last modified time | relevance | path

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

/foundation/communication/netstack/frameworks/cj/http/include/
H A Dnet_http_utils.h77 explicit SecureChar(const std::string &secureChar);
78 SecureChar(const uint8_t *secureChar, size_t length);
79 SecureChar(const SecureChar &secureChar);
80 SecureChar &operator=(const SecureChar &secureChar);
/foundation/communication/netstack/frameworks/cj/http/src/
H A Dnet_http_utils.cpp311 SecureChar::SecureChar(const std::string &secureChar) in GetNowTimeGMT() argument
312 : length_(secureChar.length()), data_(std::make_unique<char[]>(length_ + 1)) in GetNowTimeGMT()
318 if (memcpy_s(data_.get(), length_, secureChar.c_str(), length_) != EOK) { in GetNowTimeGMT()
324 SecureChar::SecureChar(const uint8_t *secureChar, size_t length) in GetNowTimeGMT() argument
329 if (memcpy_s(data_.get(), length_, secureChar, length_) != EOK) { in GetNowTimeGMT()
334 SecureChar::SecureChar(const SecureChar &secureChar) in GetNowTimeGMT() argument
336 *this = secureChar; in GetNowTimeGMT()
339 SecureChar &SecureChar::operator=(const SecureChar &secureChar) in GetNowTimeGMT() argument
341 if (this != &secureChar) { in GetNowTimeGMT()
342 if (secureChar in GetNowTimeGMT()
[all...]

Completed in 1 milliseconds