Home
last modified time | relevance | path

Searched refs:pidList (Results 1 - 25 of 65) sorted by relevance

123

/foundation/multimedia/player_framework/services/services/sa_media/server/
H A Dmedia_app_frozen_state_observer.cpp30 void MediaAppFrozenStateObserver::OnActive(const std::vector<int32_t> &pidList, const int32_t uid) in OnActive() argument
33 if (pidList.empty()) { in OnActive()
34 MEDIA_LOGI("OnActive pidList empty"); in OnActive()
37 MediaServerManager::GetInstance().HandlePlayerActive(pidList, uid); in OnActive()
46 void MediaAppFrozenStateObserver::OnFrozen(const std::vector<int32_t> &pidList, const int32_t uid) in OnFrozen() argument
49 if (pidList.empty()) { in OnFrozen()
50 MEDIA_LOGI("OnFrozen pidList empty"); in OnFrozen()
54 MediaServerManager::GetInstance().HandlePlayerFrozen(pidList, uid); in OnFrozen()
H A Dmedia_app_frozen_state_observer.h24 void OnActive(const std::vector<int32_t> &pidList, const int32_t uid) override;
26 void OnFrozen(const std::vector<int32_t> &pidList, const int32_t uid) override;
H A Dmedia_server_manager.h63 void HandlePlayerActive(const std::vector<int32_t> &pidList, const int32_t uid);
64 void HandlePlayerFrozen(const std::vector<int32_t> &pidList, const int32_t uid);
H A Dmedia_server_manager.cpp829 void MediaServerManager::HandlePlayerActive(const std::vector<int32_t> &pidList, const int32_t uid) in HandlePlayerActive() argument
833 playerStubPtrMap_.size(), pidList.size(), uid); in HandlePlayerActive()
850 void MediaServerManager::HandlePlayerFrozen(const std::vector<int32_t> &pidList, const int32_t uid) in HandlePlayerFrozen() argument
854 playerStubPtrMap_.size(), pidList.size(), uid); in HandlePlayerFrozen()
/foundation/ability/ability_runtime/test/moduletest/ability_manager_client_test/
H A Dability_manager_client_test.cpp238 std::vector<int32_t> pidList; in HWTEST_F() local
239 pidList.push_back(19082); in HWTEST_F()
240 AbilityManagerClient::GetInstance()->NotifyFrozenProcessByRSS(pidList, UID); in HWTEST_F()
/foundation/communication/wifi/wifi/test/wifi_standard/native/
H A Dwifi_inner_device_test.cpp226 std::set<int> pidList; in HWTEST_F() local
227 pidList.insert(1011); in HWTEST_F()
228 pidList.insert(1012); in HWTEST_F()
229 ErrCode result = devicePtr->SetAppFrozen(pidList, true); in HWTEST_F()
/foundation/window/window_manager/window_scene/screen_session_manager/include/
H A Dscreen_session_dumper.h42 void DumpFreezedPidList(std::set<int32_t> pidList);
/foundation/multimedia/camera_framework/services/camera_service/binder/client/src/
H A Dhcamera_service_proxy.cpp751 int32_t HCameraServiceProxy::ProxyForFreeze(const std::set<int32_t>& pidList, bool isProxy) in ProxyForFreeze() argument
758 data.WriteInt32(pidList.size()); in ProxyForFreeze()
759 for (auto it = pidList.begin(); it != pidList.end(); it++) { in ProxyForFreeze()
/foundation/multimedia/camera_framework/services/camera_service/binder/base/include/
H A Dicamera_service.h138 virtual int32_t ProxyForFreeze(const std::set<int32_t>& pidList, bool isProxy) = 0;
/foundation/multimedia/camera_framework/services/camera_service/binder/client/include/
H A Dhcamera_service_proxy.h116 int32_t ProxyForFreeze(const std::set<int32_t>& pidList, bool isProxy) override;
/foundation/communication/wifi/wifi/interfaces/inner_api/
H A Dwifi_device.h384 * @param pidList - pids of frozen app
388 virtual ErrCode SetAppFrozen(std::set<int> pidList, bool isFrozen) = 0;
/foundation/communication/wifi/wifi/frameworks/native/interfaces/
H A Di_wifi_device.h400 * @param pidList - pids of frozen app
404 virtual ErrCode SetAppFrozen(std::set<int> pidList, bool isFrozen) = 0;
/foundation/communication/wifi/wifi/frameworks/native/src/
H A Dwifi_device_impl.h400 * @param pidList - pids of frozen app
404 ErrCode SetAppFrozen(std::set<int> pidList, bool isFrozen) override;
H A Dwifi_device_impl.cpp448 ErrCode WifiDeviceImpl::SetAppFrozen(std::set<int> pidList, bool isFrozen) in SetAppFrozen() argument
452 return client_->SetAppFrozen(pidList, isFrozen); in SetAppFrozen()
H A Dwifi_device_proxy.h403 * @param pidList - pids of frozen app
407 ErrCode SetAppFrozen(std::set<int> pidList, bool isFrozen) override;
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_common/
H A Dwifi_internal_event_dispatcher.h122 void SetAppFrozen(std::set<int> pidList, bool isFrozen);
/foundation/multimedia/camera_framework/services/camera_service/binder/server/src/
H A Dhcamera_service_stub.cpp696 std::set<int32_t> pidList; in HandleProxyForFreeze() local
702 pidList.insert(data.ReadInt32()); in HandleProxyForFreeze()
706 int ret = ProxyForFreeze(pidList, isProxy); in HandleProxyForFreeze()
/foundation/window/window_manager/dm/src/
H A Ddisplay_manager.cpp90 DMError ProxyForFreeze(const std::set<int32_t>& pidList, bool isProxy);
2026 DMError DisplayManager::ProxyForFreeze(std::set<int32_t> pidList, bool isProxy) in ProxyForFreeze() argument
2029 for (auto pid : pidList) { in ProxyForFreeze()
2032 WLOGFI("pidList:%{public}s, isProxy: %{public}d", oss.str().c_str(), isProxy); in ProxyForFreeze()
2033 return pImpl_->ProxyForFreeze(pidList, isProxy); in ProxyForFreeze()
2036 DMError DisplayManager::Impl::ProxyForFreeze(const std::set<int32_t>& pidList, bool isProxy) in ProxyForFreeze() argument
2038 return SingletonContainer::Get<DisplayManagerAdapter>().ProxyForFreeze(pidList, isProxy); in ProxyForFreeze()
/foundation/window/window_manager/window_scene/test/dms_unittest/
H A Dscreen_session_dumper_test.cpp220 std::set<int32_t> pidList = {1, 2, 3}; in HWTEST_F() local
221 dumper->DumpFreezedPidList(pidList); in HWTEST_F()
/foundation/multimedia/camera_framework/services/camera_service/src/
H A Dhcamera_service.cpp1881 std::string g_toString(std::set<int32_t>& pidList) in g_toString() argument
1884 for (const auto& pid : pidList) { in g_toString()
1891 int32_t HCameraService::ProxyForFreeze(const std::set<int32_t>& pidList, bool isProxy) in ProxyForFreeze() argument
1899 freezedPidList_.insert(pidList.begin(), pidList.end()); in ProxyForFreeze()
1903 for (auto pid : pidList) { in ProxyForFreeze()
1912 for (auto pid : pidList) { in ProxyForFreeze()
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/
H A Dapp_mgr_interface.h853 * @param pidList pid list of processes that support process cache..
856 virtual int32_t GetSupportedProcessCachePids(const std::string &bundleName, std::vector<int32_t> &pidList) = 0;
/foundation/multimodalinput/input/service/subscriber/include/
H A Dkey_subscriber_handler.h128 void GetForegroundPids(std::set<int32_t> &pidList);
/foundation/window/window_manager/interfaces/innerkits/dm/
H A Ddisplay_manager.h658 * @param pidList Indicates the calling pid
662 DMError ProxyForFreeze(std::set<int32_t> pidList, bool isProxy);
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_sta_sa/
H A Dwifi_device_service_impl.h120 ErrCode SetAppFrozen(std::set<int> pidList, bool isFrozen) override;
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/
H A Dapp_mgr_stub.cpp1645 std::vector<int32_t> pidList; in HandleGetSupportedProcessCachePids() local
1646 auto result = GetSupportedProcessCachePids(bundleName, pidList); in HandleGetSupportedProcessCachePids()
1647 reply.WriteInt32(pidList.size()); in HandleGetSupportedProcessCachePids()
1648 for (auto it : pidList) { in HandleGetSupportedProcessCachePids()
1661 std::vector<int32_t> &pidList) in GetSupportedProcessCachePids()
1660 GetSupportedProcessCachePids(const std::string &bundleName, std::vector<int32_t> &pidList) GetSupportedProcessCachePids() argument

Completed in 24 milliseconds

123