Home
last modified time | relevance | path

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

/foundation/CastEngine/castengine_wifi_display/services/protocol/rtsp/src/
H A Drtsp_request.cpp49 std::vector<std::string> firstLine; in Parse() local
50 auto result = RtspCommon::ParseMessage(request, firstLine, tokens_, body_); in Parse()
55 if (firstLine.size() < 2 || tokens_.empty()) { // 2:rtsp line in Parse()
62 if (firstLine.size() != 3 || firstLine[2] != RTSP_VERSION) { // 2:rtsp line, 3:rtsp line in Parse()
68 if (!RtspCommon::VerifyMethod(firstLine[0])) { in Parse()
74 method_ = firstLine[0]; in Parse()
75 url_ = firstLine[1]; in Parse()
H A Drtsp_response.cpp67 std::vector<std::string> firstLine; in Parse() local
68 auto result = RtspCommon::ParseMessage(response, firstLine, tokens_, body_); in Parse()
69 if (result.code != RtspErrorType::OK || firstLine.size() < 2 || tokens_.empty()) { // 2:rstp line in Parse()
76 if (firstLine.size() < 3 || firstLine[0] != RTSP_VERSION) { // 3:rstp line in Parse()
82 status_ = atoi(firstLine[1].c_str()); in Parse()
H A Drtsp_common.cpp81 RtspError RtspCommon::ParseMessage(const std::string &message, std::vector<std::string> &firstLine, in ParseMessage() argument
92 firstLine = RtspCommon::Split(lines[0], RTSP_SP); in ParseMessage()
/foundation/multimodalinput/input/service/module_loader/src/
H A Dwatchdog_task.cpp53 std::string firstLine; in GetFirstLine() local
54 getline(inFile, firstLine); in GetFirstLine()
56 return firstLine; in GetFirstLine()
/foundation/CastEngine/castengine_wifi_display/services/protocol/rtsp/include/
H A Drtsp_common.h93 static RtspError ParseMessage(const std::string &message, std::vector<std::string> &firstLine,
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/
H A Dgrid_layout_info.cpp211 auto firstLine = gridMatrix_.find(startLine); in FindItemCount() local
213 if (firstLine == gridMatrix_.end() || firstLine->second.empty()) { in FindItemCount()
217 firstLine = it; in FindItemCount()
221 if (firstLine == gridMatrix_.end() || firstLine->second.empty()) { in FindItemCount()
238 int32_t minIdx = firstLine->second.begin()->second; in FindItemCount()
/foundation/CastEngine/castengine_wifi_display/tests/unittest/protocol/rtsp/
H A Drtsp_unit_test.cpp182 std::vector<std::string> firstLine; in HWTEST_F() local
185 auto ret = RtspCommon::ParseMessage(message, firstLine, header, body); in HWTEST_F()

Completed in 7 milliseconds