Home
last modified time | relevance | path

Searched refs:strEnd (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/foundation/communication/netmanager_base/frameworks/native/netconnclient/src/
H A Dhttp_proxy.cpp181 char *strEnd = nullptr; in ParsePort() local
182 auto port = std::strtol(portStr.c_str(), &strEnd, BASE_DEC); in ParsePort()
183 if (strEnd == portStr.c_str() || port < 0 || port > std::numeric_limits<uint16_t>::max()) { in ParsePort()
/ohos5.0/base/hiviewdfx/hilog_lite/frameworks/featured/
H A Dhiview_log.c460 char *strEnd = NULL; in SecDecodeTypeS() local
480 strEnd = formatBuf->str; in SecDecodeTypeS()
481 for (textLen = 0; textLen < finalPrecision && *strEnd; textLen++) { in SecDecodeTypeS()
482 ++strEnd; in SecDecodeTypeS()
519 strEnd = formatBuf->str; in SecDecodeTypeS()
520 while (finalPrecision-- && *strEnd) { in SecDecodeTypeS()
521 ++strEnd; in SecDecodeTypeS()
523 textLen = (int)(strEnd - formatBuf->str); /* length of the string */ in SecDecodeTypeS()
/ohos5.0/foundation/communication/dhcp/services/dhcp_server/src/
H A Ddhcp_function.cpp271 …::CheckRangeNetwork(const std::string strInf, const std::string strBegin, const std::string strEnd) in CheckRangeNetwork() argument
273 if (strInf.empty() || strBegin.empty() || strEnd.empty()) { in CheckRangeNetwork()
286 !Ip4StrConToInt(strBegin, uBegin, false) || !Ip4StrConToInt(strEnd, uEnd, false)) { in CheckRangeNetwork()
296 …heck end %{public}s %{private}s %{public}s failed", strInf.c_str(), strIp.c_str(), strEnd.c_str()); in CheckRangeNetwork()
/ohos5.0/commonlibrary/ets_utils/js_api_module/convertxml/src/
H A Djs_convertxml.ts52 let strEnd: string = '';
/ohos5.0/foundation/communication/dhcp/services/dhcp_server/include/
H A Ddhcp_function.h43 … CheckRangeNetwork(const std::string strInf, const std::string strBegin, const std::string strEnd);
/ohos5.0/base/hiviewdfx/hilog/frameworks/libhilog/vsnprintf/
H A Doutput_p.inl332 char *strEnd = NULL; local
352 strEnd = formatBuf->str;
353 for (textLen = 0; textLen < finalPrecision && *strEnd; textLen++) {
354 ++strEnd;
391 strEnd = formatBuf->str;
392 while (finalPrecision-- && *strEnd) {
393 ++strEnd;
395 textLen = (int)(strEnd - formatBuf->str); /* length of the string */
/ohos5.0/commonlibrary/ets_utils/js_api_module/xml/
H A Dnative_module_xml.cpp114 std::string strEnd(reinterpret_cast<char*>(data), len); in XmlPullParserConstructor()
116 object = new XmlPullParser(env, strEnd, "utf-8"); in XmlPullParserConstructor()
122 object = new XmlPullParser(env, strEnd, strEncoding); in XmlPullParserConstructor()
/ohos5.0/commonlibrary/ets_utils/js_api_module/xml/test/
H A Dtest_xml.cpp336 std::string strEnd = strPrior + strBack; variable
337 ASSERT_STREQ(reinterpret_cast<char*>(pBuffer), strEnd.c_str());
679 std::string strEnd = strPrior + strBack; variable
680 ASSERT_STREQ(reinterpret_cast<char*>(pBuffer), strEnd.c_str());
703 std::string strEnd = strPrior + strBack; variable
704 ASSERT_STREQ(reinterpret_cast<char*>(pBuffer), strEnd.c_str());
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor/
H A Drich_editor_pattern.cpp1485 auto strEnd = StringUtils::ToString(endStr); in DeleteSpansByRange() local
1486 spanNodeEnd->UpdateContent(strEnd); in DeleteSpansByRange()