/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_proxy_manager.cpp | 41 bool BluetoothProxyManager::FreezeByRss(std::set<int> pidSet, bool isProxy) in FreezeByRss() argument 50 return proxy->FreezeByRss(pidSet, isProxy); in FreezeByRss()
|
/ohos5.0/base/notification/common_event_service/services/include/ |
H A D | common_event_record.h | 33 bool isProxy; member 36 …dInfo() : pid(0), uid(0), callerToken(0), isSubsystem(false), isSystemApp(false), isProxy(false) {} in EventRecordInfo()
|
H A D | inner_common_event_manager.h | 30 bool isProxy = false; member
|
/ohos5.0/base/time/time_service/interfaces/inner_api/include/ |
H A D | time_service_interface.h | 116 virtual bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) = 0; 125 … virtual bool ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetrigger) = 0;
|
H A D | time_service_client.h | 384 TIME_API bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger); 396 TIME_API bool ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetrigger);
|
/ohos5.0/base/time/time_service/services/timer/include/ |
H A D | timer_manager_interface.h | 67 virtual bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) = 0; 68 … virtual bool ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetrigger) = 0;
|
H A D | timer_proxy.h | 38 bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger, 41 bool PidProxyTimer(int32_t uid, int pid, bool isProxy, bool needRetrigger,
|
H A D | timer_manager.h | 57 bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) override; 58 bool ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetrigger) override;
|
/ohos5.0/base/time/time_service/services/ipc/proxy/inner_api_include/ |
H A D | time_service_proxy.h | 41 bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) override; 42 bool ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetrigger) override;
|
/ohos5.0/base/notification/common_event_service/services/src/ |
H A D | inner_common_event_manager.cpp | 263 eventRecord.eventRecordInfo.isProxy = comeFrom.isProxy; in PublishCommonEvent() 336 eventRecordInfo.isProxy = comeFrom.isProxy; in SubscribeCommonEvent() 506 (!record.eventRecordInfo.isProxy && record.eventRecordInfo.isSubsystem)) { in ProcessStickyEvent() 552 comeFrom.isProxy = pid == UNDEFINED_PID; in CheckUserId() 553 … if ((comeFrom.isSystemApp || comeFrom.isSubsystem || comeFrom.isCemShell) && !comeFrom.isProxy) { in CheckUserId()
|
/ohos5.0/base/time/time_service/services/ipc/proxy/ |
H A D | time_service_proxy.cpp | 241 bool TimeServiceProxy::ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) in ProxyTimer() argument 253 if (!data.WriteBool(isProxy)) { in ProxyTimer() 271 bool TimeServiceProxy::ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetrig… in ProxyTimer() argument 293 if (!data.WriteBool(isProxy)) { in ProxyTimer()
|
/ohos5.0/base/time/time_service/services/ipc/stub/ |
H A D | time_service_stub.cpp | 299 auto isProxy = data.ReadBool(); in OnTimerProxy() local 301 if (!ProxyTimer(uid, isProxy, needRetrigger)) { in OnTimerProxy() 328 auto isProxy = data.ReadBool(); in OnPidTimerProxy() local 330 if (!ProxyTimer(uid, pidList, isProxy, needRetrigger)) { in OnPidTimerProxy()
|
/ohos5.0/base/time/time_service/services/ |
H A D | time_system_ability.h | 68 bool ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) override; 69 bool ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetrigger) override;
|
H A D | time_system_ability.cpp | 750 bool TimeSystemAbility::ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) in ProxyTimer() argument 756 …IME_MODULE_SERVICE, "ProxyTimer service start uid: %{public}d, isProxy: %{public}d", uid, isProxy); in ProxyTimer() 761 return timerManager->ProxyTimer(uid, isProxy, needRetrigger); in ProxyTimer() 776 bool TimeSystemAbility::ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetri… in ProxyTimer() argument 786 return timerManager->ProxyTimer(uid, pidList, isProxy, needRetrigger); in ProxyTimer()
|
/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/ |
H A D | bluetooth_proxy_manager.h | 31 bool FreezeByRss(std::set<int> pidSet, bool isProxy);
|
/ohos5.0/base/time/time_service/interfaces/inner_api/src/ |
H A D | time_service_client.cpp | 694 bool TimeServiceClient::ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger) in ProxyTimer() argument 696 …_HILOGD(TIME_MODULE_CLIENT, "ProxyTimer start uid: %{public}d, isProxy: %{public}d", uid, isProxy); in ProxyTimer() 704 return proxy->ProxyTimer(uid, isProxy, needRetrigger); in ProxyTimer() 707 bool TimeServiceClient::ProxyTimer(int32_t uid, std::set<int> pidList, bool isProxy, bool needRetri… in ProxyTimer() argument 716 return proxy->ProxyTimer(uid, pidList, isProxy, needRetrigger); in ProxyTimer()
|
/ohos5.0/base/time/time_service/test/unittest/service_test/src/ |
H A D | time_proxy_test.cpp | 331 bool isProxy = true; variable 333 bool ret = timerManagerHandler_->ProxyTimer(uid, isProxy, needRetrigger); 342 isProxy = false; 343 ret = timerManagerHandler_->ProxyTimer(uid, isProxy, needRetrigger); 541 bool isProxy = true; variable 543 bool ret = timerManagerHandler_->ProxyTimer(uid, pidList, isProxy, needRetrigger); 553 isProxy = false; 554 ret = timerManagerHandler_->ProxyTimer(uid, pidList, isProxy, needRetrigger);
|
/ohos5.0/base/time/time_service/services/timer/src/ |
H A D | timer_proxy.cpp | 131 bool TimerProxy::ProxyTimer(int32_t uid, bool isProxy, bool needRetrigger, in ProxyTimer() argument 136 uid, isProxy, needRetrigger); in ProxyTimer() 138 if (isProxy) { in ProxyTimer() 170 bool TimerProxy::PidProxyTimer(int32_t uid, int pid, bool isProxy, bool needRetrigger, in PidProxyTimer() argument 175 pid, isProxy, needRetrigger); in PidProxyTimer() 178 if (isProxy) { in PidProxyTimer()
|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/include/ |
H A D | bluetooth_ble_central_manager_proxy.h | 39 bool FreezeByRss(std::set<int> pidSet, bool isProxy) override;
|
/ohos5.0/foundation/distributeddatamgr/data_share/test/native/resource/datashareproxy_bundle/proxydatas_with_permission/entry/src/main/ets/MainAbility/ |
H A D | MainAbility.ts | 60 … dsProxyHelper = await dataShare.createDataShareHelper(this.context, cardUri, {isProxy : true});
|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/interface/ |
H A D | i_bluetooth_ble_central_manager.h | 60 virtual bool FreezeByRss(std::set<int> pidSet, bool isProxy) = 0;
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/include/ |
H A D | bluetooth_ble_central_manager_server.h | 44 bool FreezeByRss(std::set<int> pidSet, bool isProxy) override;
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/ |
H A D | bluetooth_ble_central_manager_stub.cpp | 195 bool isProxy = data.ReadBool(); in FreezeByRssInner() local 198 bool ret = FreezeByRss(pidSet, isProxy); in FreezeByRssInner()
|
/ohos5.0/base/notification/common_event_service/services/test/unittest/ |
H A D | common_event_control_manager_test.cpp | 203 subscriberRecord.eventRecordInfo.isProxy = false; in HWTEST_F() 224 subscriberRecord.eventRecordInfo.isProxy = true; in HWTEST_F() 246 subscriberRecord.eventRecordInfo.isProxy = true; in HWTEST_F()
|
/ohos5.0/base/notification/common_event_service/services/test/unittest/common_event_control_manager_branch_test/ |
H A D | common_event_control_manager_branch_test.cpp | 92 subscriberRecord.eventRecordInfo.isProxy = true; in HWTEST_F() 124 subscriberRecord.eventRecordInfo.isProxy = true; in HWTEST_F() 150 subscriberRecord.eventRecordInfo.isProxy = true; in HWTEST_F() 180 subscriberRecord.eventRecordInfo.isProxy = true; in HWTEST_F() 206 subscriberRecord.eventRecordInfo.isProxy = true; in HWTEST_F()
|