Searched refs:tokens_ (Results 1 - 9 of 9) sorted by relevance
/foundation/CastEngine/castengine_wifi_display/services/protocol/rtsp/src/ |
H A D | rtsp_request.cpp | 50 auto result = RtspCommon::ParseMessage(request, firstLine, tokens_, body_); in Parse() 55 if (firstLine.size() < 2 || tokens_.empty()) { // 2:rtsp line in Parse() 56 tokens_.clear(); in Parse() 63 tokens_.clear(); in Parse() 69 tokens_.clear(); in Parse() 77 if (tokens_.find(RTSP_TOKEN_CSEQ) != tokens_.end()) { in Parse() 78 cSeq_ = atoi(tokens_.at(RTSP_TOKEN_CSEQ).c_str()); in Parse() 81 if (tokens_.find(RTSP_TOKEN_UA) != tokens_ in Parse() [all...] |
H A D | rtsp_response.cpp | 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() 70 tokens_.clear(); in Parse() 77 tokens_.clear(); in Parse() 84 if (tokens_.find(RTSP_TOKEN_CSEQ) != tokens_.end()) { in Parse() 85 cSeq_ = (int32_t)strtol(tokens_.at(RTSP_TOKEN_CSEQ).c_str(), nullptr, 10); // 10:unit in Parse() 88 if (tokens_.find(RTSP_TOKEN_DATE) != tokens_.end()) { in Parse() 89 date_ = tokens_ in Parse() [all...] |
/foundation/ability/ability_runtime/test/unittest/ability_debug_deal_test/ |
H A D | ability_debug_deal_test.cpp | 38 std::vector<sptr<IRemoteObject>> tokens_; member in OHOS::AAFwk::AbilityDebugDealTest 86 tokens_.emplace_back(token); in HWTEST_F() 88 deal_->OnAbilitysDebugStarted(tokens_); in HWTEST_F() 110 tokens_.emplace_back(token); in HWTEST_F() 112 deal_->OnAbilitysDebugStarted(tokens_); in HWTEST_F() 115 deal_->OnAbilitysDebugStoped(tokens_); in HWTEST_F()
|
/foundation/ability/ability_runtime/frameworks/native/appkit/app/ |
H A D | ability_record_mgr.cpp | 27 return tokens_; in GetToken() 41 tokens_ = token; in SetToken()
|
/foundation/ability/ability_runtime/interfaces/kits/native/appkit/app/ |
H A D | ability_record_mgr.h | 88 sptr<IRemoteObject> tokens_; // we use ThreadLocal member in OHOS::AppExecFwk::AbilityRecordMgr
|
/foundation/ability/ability_runtime/test/unittest/ability_record_mgr_test/ |
H A D | ability_record_mgr_test.cpp | 79 recordMgr->tokens_ = nullptr; in HWTEST_F()
|
/foundation/CastEngine/castengine_wifi_display/services/protocol/rtsp/include/ |
H A D | rtsp_request.h | 117 std::unordered_map<std::string, std::string> tokens_; member in OHOS::Sharing::RtspRequest
|
H A D | rtsp_response.h | 86 std::unordered_map<std::string, std::string> tokens_; member in OHOS::Sharing::RtspResponse
|
/foundation/CastEngine/castengine_wifi_display/tests/unittest/protocol/rtsp/ |
H A D | rtsp_unit_test.cpp | 340 request->tokens_[token] = value; in HWTEST_F() 490 response->tokens_[token] = value; in HWTEST_F()
|
Completed in 5 milliseconds