Home
last modified time | relevance | path

Searched refs:pidList (Results 1 – 25 of 34) sorted by relevance

12

/base/time/time_service/test/fuzztest/timemanager_fuzzer/timeproxytimer_fuzzer/
Dtimeproxytimer_fuzzer.cpp39 std::set<int> pidList; in FuzzTimeProxyTimer() local
40 pidList.insert(uid); in FuzzTimeProxyTimer()
41 TimeServiceClient::GetInstance()->ProxyTimer(pidList, true, true); in FuzzTimeProxyTimer()
42 TimeServiceClient::GetInstance()->ProxyTimer(pidList, true, false); in FuzzTimeProxyTimer()
43 TimeServiceClient::GetInstance()->ProxyTimer(pidList, false, false); in FuzzTimeProxyTimer()
44 TimeServiceClient::GetInstance()->ProxyTimer(pidList, false, true); in FuzzTimeProxyTimer()
/base/hiviewdfx/hidumper/services/zidl/src/
Ddump_broker_stub.cpp77 std::vector<int32_t> pidList; in ScanPidOverLimitStub() local
80 ret = ScanPidOverLimit(requestType, limitSize, pidList); in ScanPidOverLimitStub()
81 if (!reply.WriteInt32Vector(pidList)) { in ScanPidOverLimitStub()
Ddump_broker_proxy.cpp53 …rProxy::ScanPidOverLimit(std::string requestType, int32_t limitSize, std::vector<int32_t> &pidList) in ScanPidOverLimit() argument
74 if (!reply.ReadInt32Vector(&pidList)) { in ScanPidOverLimit()
/base/time/time_service/test/unittest/service_test/src/
Dtime_proxy_test.cpp536 std::set<int> pidList; variable
537 pidList.insert(pid);
540 bool ret = timerManagerHandler_->ProxyTimer(pidList, isProxy, needRetrigger);
550 ret = timerManagerHandler_->ProxyTimer(pidList, isProxy, needRetrigger);
571 std::set<int> pidList; variable
572 pidList.insert(pid);
592 bool retProxy = timerManagerHandler_->ProxyTimer(pidList, true, true);
613 ret = timerManagerHandler_->ProxyTimer(pidList, false, true);
636 std::set<int> pidList; variable
637 pidList.insert(pid1);
[all …]
Dtime_client_test.cpp821 std::set<int> pidList; variable
822 pidList.insert(pid);
824 TimeServiceClient::GetInstance()->ProxyTimer(pidList, true, true);
826 TimeServiceClient::GetInstance()->ProxyTimer(pidList, false, true);
854 std::set<int> pidList; variable
855 pidList.insert(pid);
856 TimeServiceClient::GetInstance()->ProxyTimer(pidList, true, true);
887 std::set<int> pidList; variable
888 pidList.insert(pid);
889 TimeServiceClient::GetInstance()->ProxyTimer(pidList, true, true);
[all …]
/base/hiviewdfx/hidumper/test/unittest/common/
Dhidumper_service_test.cpp105 std::vector<int32_t> pidList; variable
106 int32_t ret = dumpManagerService->ScanPidOverLimit(requestType, LIMIT_SIZE, pidList);
/base/hiviewdfx/hidumper/interfaces/native/innerkits/include/
Didump_broker.h26 …_t ScanPidOverLimit(std::string requestType, int32_t limitSize, std::vector<int32_t> &pidList) = 0;
Ddump_broker_proxy.h32 …anPidOverLimit(std::string requestType, int32_t limitSize, std::vector<int32_t> &pidList) override;
/base/hiviewdfx/hidumper/services/native/src/
Ddump_manager_service.cpp188 …ervice::ScanPidOverLimit(std::string requestType, int32_t limitSize, std::vector<int32_t> &pidList) in ScanPidOverLimit() argument
203 auto it = std::find(pidList.begin(), pidList.end(), pid); in ScanPidOverLimit()
204 if (it != pidList.end()) { in ScanPidOverLimit()
207 pidList.push_back(pid); in ScanPidOverLimit()
/base/location/test/location_locator/source/
Dlocation_without_permission_test.cpp261 std::set<int> pidList; variable
262 pidList.insert(1000);
263 EXPECT_EQ(ERRCODE_PERMISSION_DENIED, locatorImpl->ProxyForFreeze(pidList, false));
Dlocator_impl_test.cpp347 std::set<int> pidList; variable
348 pidList.insert(SYSTEM_UID);
349 EXPECT_EQ(ERRCODE_PERMISSION_DENIED, locatorImpl_->ProxyForFreeze(pidList, false));
/base/time/time_service/services/timer/include/
Dtimer_manager_interface.h67 virtual bool ProxyTimer(std::set<int> pidList, bool isProxy, bool needRetrigger) = 0;
Dtimer_proxy.h41 bool PidProxyTimer(int pidList, bool isProxy, bool needRetrigger,
Dtimer_manager.h58 bool ProxyTimer(std::set<int> pidList, bool isProxy, bool needRetrigger) override;
/base/time/time_service/services/ipc/proxy/
Dtime_service_proxy.cpp370 bool TimeServiceProxy::ProxyTimer(std::set<int> pidList, bool isProxy, bool needRetrigger) in ProxyTimer() argument
378 if (!data.WriteInt32(pidList.size())) { in ProxyTimer()
382 for (std::set<int>::iterator pid = pidList.begin(); pid != pidList.end(); ++pid) { in ProxyTimer()
/base/time/time_service/services/ipc/stub/
Dtime_service_stub.cpp365 std::set<int> pidList; in OnPidTimerProxy() local
373 pidList.insert(pid); in OnPidTimerProxy()
376 if (pidList.size() == 0) { in OnPidTimerProxy()
382 if (!ProxyTimer(pidList, isProxy, needRetrigger)) { in OnPidTimerProxy()
/base/time/time_service/interfaces/inner_api/include/
Dtime_service_interface.h172 virtual bool ProxyTimer(std::set<int> pidList, bool isProxy, bool needRetrigger) = 0;
Dtime_service_client.h376 TIME_API bool ProxyTimer(std::set<int> pidList, bool isProxy, bool needRetrigger);
/base/time/time_service/services/ipc/proxy/inner_api_include/
Dtime_service_proxy.h48 bool ProxyTimer(std::set<int> pidList, bool isProxy, bool needRetrigger) override;
/base/hiviewdfx/hidumper/services/native/include/
Ddump_manager_service.h57 …anPidOverLimit(std::string requestType, int32_t limitSize, std::vector<int32_t> &pidList) override;
/base/time/time_service/services/
Dtime_system_ability.h74 bool ProxyTimer(std::set<int> pidList, bool isProxy, bool needRetrigger) override;
/base/location/interfaces/inner_api/include/
Dlocator.h116 virtual LocationErrCode ProxyForFreeze(std::set<int> pidList, bool isProxy) = 0;
Dlocator_proxy.h126 LocationErrCode ProxyForFreeze(std::set<int> pidList, bool isProxy);
/base/location/frameworks/native/source/
Dlocator_proxy.cpp932 LocationErrCode LocatorProxy::ProxyForFreeze(std::set<int> pidList, bool isProxy) in ProxyForFreeze() argument
940 data.WriteInt32(pidList.size()); in ProxyForFreeze()
941 for (auto it = pidList.begin(); it != pidList.end(); it++) { in ProxyForFreeze()
/base/sensors/sensor/services/src/
Dsensor_service.cpp534 auto pidList = clientInfo_.GetActiveInfoCBPid(); in ReportActiveInfo() local
535 for (const auto &pid : pidList) { in ReportActiveInfo()

12