Home
last modified time | relevance | path

Searched refs:requestor (Results 1 - 20 of 20) sorted by relevance

/foundation/window/window_manager_lite/frameworks/wms/
H A Dlite_wm_requestor.cpp27 static LiteWMRequestor requestor; in GetInstance() local
28 return &requestor; in GetInstance()
45 LiteWinRequestor** requestor = static_cast<LiteWinRequestor**>(para->data); in Callback() local
46 if (requestor == nullptr) { in Callback()
53 *requestor = nullptr; in Callback()
55 *requestor = new LiteWinRequestor(id); in Callback()
138 LiteWinRequestor* requestor = nullptr; in CreateWindow() local
141 para.data = &requestor; in CreateWindow()
147 return requestor; in CreateWindow()
H A Dlite_proxy_windows_manager.cpp28 LiteWMRequestor* requestor = LiteWMRequestor::GetInstance(); in Init() local
29 requestor->ClientRegister(); in Init()
30 requestor->GetLayerInfo(); in Init()
H A Dlite_proxy_window.cpp21 LiteProxyWindow::LiteProxyWindow(LiteWinRequestor* requestor) in LiteProxyWindow() argument
22 : winRequestor_(requestor), id_(INVALID_WINDOW_ID), surface_(nullptr) in LiteProxyWindow()
H A Dlite_win_requestor.cpp51 LiteWinRequestor* requestor = static_cast<LiteWinRequestor*>(para->data); in Callback() local
54 if ((ret == LiteWMS_EOK) && (requestor != nullptr)) { in Callback()
55 requestor->GenericSurface(reply); in Callback()
H A Dlite_proxy_window.h26 explicit LiteProxyWindow(LiteWinRequestor* requestor);
/foundation/communication/netmanager_base/services/netmanagernative/include/manager/
H A Dsharing_manager.h38 * @param requestor
41 int32_t IpEnableForwarding(const std::string &requestor);
46 * @param requestor
49 int32_t IpDisableForwarding(const std::string &requestor);
/foundation/communication/netmanager_base/services/netmanagernative/src/manager/
H A Dsharing_manager.cpp153 int32_t SharingManager::IpEnableForwarding(const std::string &requestor) in IpEnableForwarding() argument
155 NETNATIVE_LOG_D("IpEnableForwarding requestor: %{public}s", requestor.c_str()); in IpEnableForwarding()
158 forwardingRequests_.insert(requestor); in IpEnableForwarding()
163 int32_t SharingManager::IpDisableForwarding(const std::string &requestor) in IpDisableForwarding() argument
165 NETNATIVE_LOG_D("IpDisableForwarding requestor: %{public}s", requestor.c_str()); in IpDisableForwarding()
168 forwardingRequests_.erase(requestor); in IpDisableForwarding()
/foundation/communication/netmanager_base/services/netsyscontroller/src/
H A Dnetsys_controller.cpp695 int32_t NetsysController::IpEnableForwarding(const std::string &requestor) in IpEnableForwarding() argument
697 NETMGR_LOG_I("IpEnableForwarding: requestor[%{public}s]", requestor.c_str()); in IpEnableForwarding()
704 return netsysService_->IpEnableForwarding(requestor); in IpEnableForwarding()
707 int32_t NetsysController::IpDisableForwarding(const std::string &requestor) in IpDisableForwarding() argument
709 NETMGR_LOG_I("IpDisableForwarding: requestor[%{public}s]", requestor.c_str()); in IpDisableForwarding()
716 return netsysService_->IpDisableForwarding(requestor); in IpDisableForwarding()
H A Dnetsys_controller_service_impl.cpp460 int32_t NetsysControllerServiceImpl::IpEnableForwarding(const std::string &requestor) in IpEnableForwarding() argument
463 return netsysClient_.IpEnableForwarding(requestor); in IpEnableForwarding()
466 int32_t NetsysControllerServiceImpl::IpDisableForwarding(const std::string &requestor) in IpDisableForwarding() argument
469 return netsysClient_.IpDisableForwarding(requestor); in IpDisableForwarding()
H A Dnetsys_native_client.cpp787 int32_t NetsysNativeClient::IpEnableForwarding(const std::string &requestor) in IpEnableForwarding() argument
789 NETMGR_LOG_D("NetsysNativeClient IpEnableForwarding: requestor[%{public}s]", requestor.c_str()); in IpEnableForwarding()
795 return proxy->IpEnableForwarding(requestor); in IpEnableForwarding()
798 int32_t NetsysNativeClient::IpDisableForwarding(const std::string &requestor) in IpDisableForwarding() argument
800 NETMGR_LOG_D("NetsysNativeClient IpDisableForwarding: requestor[%{public}s]", requestor.c_str()); in IpDisableForwarding()
806 return proxy->IpDisableForwarding(requestor); in IpDisableForwarding()
/foundation/communication/netmanager_base/interfaces/innerkits/netmanagernative/include/
H A Di_netsys_service.h125 virtual int32_t IpEnableForwarding(const std::string &requestor) = 0;
126 virtual int32_t IpDisableForwarding(const std::string &requestor) = 0;
H A Dnetsys_native_service_proxy.h91 int32_t IpEnableForwarding(const std::string &requestor) override;
92 int32_t IpDisableForwarding(const std::string &requestor) override;
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_distributed_test/
H A Dnetsys_native_service_stub_test.cpp281 int32_t IpEnableForwarding(const std::string &requestor) override
286 int32_t IpDisableForwarding(const std::string &requestor) override
/foundation/communication/netmanager_base/services/netsyscontroller/include/
H A Dnetsys_controller_service_impl.h422 * @param requestor the requestor of forwarding
425 int32_t IpEnableForwarding(const std::string &requestor) override;
430 * @param requestor the requestor of forwarding
433 int32_t IpDisableForwarding(const std::string &requestor) override;
H A Di_netsys_controller_service.h449 * @param requestor the requestor of forwarding
452 virtual int32_t IpEnableForwarding(const std::string &requestor) = 0;
457 * @param requestor the requestor of forwarding
460 virtual int32_t IpDisableForwarding(const std::string &requestor) = 0;
H A Dnetsys_controller.h437 * @param requestor the requestor of forwarding
440 int32_t IpEnableForwarding(const std::string &requestor);
445 * @param requestor the requestor of forwarding
448 int32_t IpDisableForwarding(const std::string &requestor);
H A Dnetsys_native_client.h462 * @param requestor the requestor of forwarding
465 int32_t IpEnableForwarding(const std::string &requestor);
470 * @param requestor the requestor of forwarding
473 int32_t IpDisableForwarding(const std::string &requestor);
/foundation/communication/netmanager_base/test/fuzztest/netsysclient_fuzzer/
H A Dnet_sys_client_fuzzer.cpp715 std::string requestor = NetSysGetString(STR_LEN); in IpEnableForwardingFuzzTest() local
717 dataParcel.WriteString(requestor); in IpEnableForwardingFuzzTest()
728 std::string requestor = NetSysGetString(STR_LEN); in IpDisableForwardingFuzzTest() local
730 dataParcel.WriteString(requestor); in IpDisableForwardingFuzzTest()
/foundation/communication/netmanager_base/frameworks/native/netmanagernative/
H A Dnetsys_native_service_proxy.cpp1372 int32_t NetsysNativeServiceProxy::IpEnableForwarding(const std::string &requestor) in IpEnableForwarding() argument
1375 if (!WriteInterfaceToken(data) || !data.WriteString(requestor)) { in IpEnableForwarding()
1392 int32_t NetsysNativeServiceProxy::IpDisableForwarding(const std::string &requestor) in IpDisableForwarding() argument
1395 if (!WriteInterfaceToken(data) || !data.WriteString(requestor)) { in IpDisableForwarding()
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_manager_test/
H A Dnetsys_native_service_stub_test.cpp303 int32_t IpEnableForwarding(const std::string &requestor) override
308 int32_t IpDisableForwarding(const std::string &requestor) override

Completed in 25 milliseconds