Home
last modified time | relevance | path

Searched refs:sessions (Results 1 – 25 of 48) sorted by relevance

12

/ohos5.0/base/hiviewdfx/hiview/plugins/performance/timer/
H A DAppTimerAdapter.cpp35 sessions.push_back(id); in Start()
44 sessions.erase(std::find(sessions.begin(), sessions.end(), id)); in Stop()
55 sessions.erase(std::find(sessions.begin(), sessions.end(), id)); in Expired()
66 if (std::find(sessions.begin(), sessions.end(), id) != sessions.end()) { in ValidateDuplication()
73 if (std::find(sessions.begin(), sessions.end(), id) == sessions.end()) { in ValidateExistence()
H A DAppTimerAdapter.h40 std::vector<int> sessions; variable
/ohos5.0/foundation/window/window_manager/window_scene/test/unittest/
H A Dsession_listener_controller_test.cpp234 std::list<int32_t> sessions; variable
235 slController->HandleUnInstallApp(sessions);
236 EXPECT_EQ(0, sessions.size());
246 std::list<int32_t> sessions; variable
247 sessions.push_front(1);
248 slController->HandleUnInstallApp(sessions);
250 slController->HandleUnInstallApp(sessions);
251 EXPECT_NE(0, sessions.size());
H A Dscene_session_manager_supplement_test.cpp390 std::vector<sptr<SceneSession>> sessions; variable
391 sessions.push_back(sceneSession);
392 ssm_->recoverSubSessionCacheMap_.insert({1, sessions});
/ohos5.0/foundation/filemanagement/dfs_service/services/distributedfiledaemon/src/network/
H A Dsession_pool.cpp85 std::vector<std::shared_ptr<BaseSession>> sessions; in ReleaseSession() local
91 sessions.push_back(*iter); in ReleaseSession()
94 for (auto session : sessions) { in ReleaseSession()
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/audioeffect/src/
H A Daudio_effect_chain_manager.cpp520 std::set<std::string> sessions = sceneTypeToSessionIDMap_[it->first]; in EffectDspVolumeUpdate() local
521 for (auto s = sessions.begin(); s != sessions.end(); s++) { in EffectDspVolumeUpdate()
817 std::set<std::string> sessions = scenePair.second; in ReturnEffectChannelInfo() local
831 std::set<std::string> sessions = sceneTypeToSessionIDMap_[it->first]; in ReturnMultiChannelInfo() local
832 for (auto s = sessions.begin(); s != sessions.end(); ++s) { in ReturnMultiChannelInfo()
1140 std::set<std::string> &sessions = scenePair.second; in UpdateDefaultAudioEffect() local
1177 std::set<std::string> &sessions = it->second; in UpdateStreamUsage() local
1198 std::set<std::string> &sessions = it->second; in UpdateStreamUsage() local
1246 for (auto s = sessions.begin(); s != sessions.end(); ++s) { in FindMaxEffectChannels()
1454 const std::string &scenePairType, std::set<std::string> &sessions) in FindMaxSessionID() argument
[all …]
/ohos5.0/docs/en/application-dev/media/drm/
H A Ddrm-overview.md18 …DRM Kit supports multiple sessions, allows users to request and set media keys in sessions, and bi…
33 …DRM sessions are used for media key management and media decryption. Their lifecycle are managed b…
H A Ddrm-mediakeysystem-management.md3 …DRM certificates, process responses to these requests, manage media key sessions, manage offline m…
174 17. (Optional) Obtain DRM statistical information, including the number of current sessions, decryp…
H A Dnative-drm-mediakeysystem-management.md3 …DRM certificates, process responses to these requests, manage media key sessions, manage offline m…
/ohos5.0/foundation/multimedia/av_session/
H A DREADME.md25 …fied session controller for basic information about the system's global sessions, and to limit the…
33 | RemoteSessionSource(Distributed session control) | Used to send local sessions to the remote end …
34 | RemoteSessionSink(Distributed session control) | Used to receive remote sessions and synchroniz…
36 …e) are carried in media sessions(AVSession). Applications store information(Session records) in AV…
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/src/
H A Dsession_listener_controller.cpp138 void SessionListenerController::HandleUnInstallApp(const std::list<int32_t>& sessions) in HandleUnInstallApp() argument
140 if (sessions.empty()) { in HandleUnInstallApp()
148 auto task = [weak = weak_from_this(), sessions]() { in HandleUnInstallApp()
154 for (auto id : sessions) { in HandleUnInstallApp()
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.1.6.3/
H A Dchangelogs-camera.md97 Since API version 11, sessions are classified into photo sessions and video sessions, which are cre…
145 … and **VideoSession** are added in API version 11 to distinguish photo sessions and video sessions.
/ohos5.0/docs/en/application-dev/reference/apis-universal-keystore-kit/
H A Derrorcode-huks.md155 The number of key operation sessions has reached the limit.
159 The number of concurrent key operation sessions has reached the maximum (15).
164 2. If the key operation sessions are set up for different applications, wait until the sessions are…
/ohos5.0/foundation/multimedia/av_session/services/session/server/
H A Davsession_dumper.cpp154 std::vector<sptr<AVSessionItem>> sessions = sessionService.GetContainer().GetAllSessions(); in ShowSessionInfo() local
156 .append("Count : " + std::to_string(sessions.size())); in ShowSessionInfo()
159 for (const auto& session : sessions) { in ShowSessionInfo()
/ohos5.0/docs/en/application-dev/reference/apis-drm-kit/
H A D_o_h___media_key_session___callback.md6 …instances returned. It applies to the scenario where multiple media key sessions need to be decryp…
H A Dnative__mediakeysession_8h.md27 …instances returned. It applies to the scenario where multiple media key sessions need to be decryp…
39 …instances returned. It applies to the scenario where multiple media key sessions need to be decryp…
/ohos5.0/docs/en/application-dev/media/avsession/
H A Dusing-distributed-avsession.md30 2. Use **castAudio** in the **AVSessionManager** class to project all sessions of the local device …
38 // Cast the sessions to another device.
H A Dlocal-avsession-overview.md31 AVSessionManager provides the capability of managing sessions. It can create an **AVSession** objec…
H A Dusing-avsession-controller.md32 …nly\<AVSessionDescriptor>>>): void<sup>10+<sup> | Obtains the descriptors of historical sessions. |
89 // Obtain the descriptors of historical sessions.
300 …// If the 'play' command is valid, deliver it. Normal sessions should provide and implement the pl…
H A Davsession-overview.md47 …An object that provides the capability of managing sessions. It can create an **AVSession** object…
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/include/
H A Dsession_listener_controller.h62 void HandleUnInstallApp(const std::list<int32_t>& sessions);
/ohos5.0/docs/zh-cn/application-dev/reference/apis-universal-keystore-kit/
H A Derrorcode-huks.md155 The number of key operation sessions has reached the limit.
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/audioeffect/include/
H A Daudio_effect_chain_manager.h157 …void FindMaxEffectChannels(const std::string &sceneType, const std::set<std::string> &sessions, ui…
164 const std::string &scenePairType, std::set<std::string> &sessions);
/ohos5.0/docs/en/application-dev/media/camera/
H A Dcamera-overview.md19 …ffects in various service scenarios. The application can switch between sessions to meet service r…
H A Dcamera-worker.md5 When using camera capabilities, you often need to create camera sessions and continuously receive a…

12