Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:requestor
(Results
1 - 20
of
20
) sorted by relevance
/foundation/window/window_manager_lite/frameworks/wms/
H
A
D
lite_wm_requestor.cpp
27
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
D
lite_proxy_windows_manager.cpp
28
LiteWMRequestor*
requestor
= LiteWMRequestor::GetInstance();
in Init()
local
29
requestor
->ClientRegister();
in Init()
30
requestor
->GetLayerInfo();
in Init()
H
A
D
lite_proxy_window.cpp
21
LiteProxyWindow::LiteProxyWindow(LiteWinRequestor*
requestor
)
in LiteProxyWindow()
argument
22
: winRequestor_(
requestor
), id_(INVALID_WINDOW_ID), surface_(nullptr)
in LiteProxyWindow()
H
A
D
lite_win_requestor.cpp
51
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
D
lite_proxy_window.h
26
explicit LiteProxyWindow(LiteWinRequestor*
requestor
);
/foundation/communication/netmanager_base/services/netmanagernative/include/manager/
H
A
D
sharing_manager.h
38
* @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
D
sharing_manager.cpp
153
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
D
netsys_controller.cpp
695
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
D
netsys_controller_service_impl.cpp
460
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
D
netsys_native_client.cpp
787
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
D
i_netsys_service.h
125
virtual int32_t IpEnableForwarding(const std::string &
requestor
) = 0;
126
virtual int32_t IpDisableForwarding(const std::string &
requestor
) = 0;
H
A
D
netsys_native_service_proxy.h
91
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
D
netsys_native_service_stub_test.cpp
281
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
D
netsys_controller_service_impl.h
422
* @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
D
i_netsys_controller_service.h
449
* @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
D
netsys_controller.h
437
* @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
D
netsys_native_client.h
462
* @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
D
net_sys_client_fuzzer.cpp
715
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
D
netsys_native_service_proxy.cpp
1372
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
D
netsys_native_service_stub_test.cpp
303
int32_t IpEnableForwarding(const std::string &
requestor
) override
308
int32_t IpDisableForwarding(const std::string &
requestor
) override
Completed in 25 milliseconds