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:remoteHost
(Results
1 - 7
of
7
) sorted by relevance
/foundation/ability/form_fwk/test/fuzztest/formdatamgrone_fuzzer/
H
A
D
formdatamgrone_fuzzer.cpp
69
sptr<IRemoteObject>
remoteHost
= nullptr;
in DoSomethingInterestingWithMyAPI()
local
70
formDataMgr.HandleHostDied(
remoteHost
);
in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/test/fuzztest/formtaskmgr_fuzzer/
H
A
D
formtaskmgr_fuzzer.cpp
54
sptr<IRemoteObject>
remoteHost
= nullptr;
in DoSomethingInterestingWithMyAPI()
local
55
formTaskMgr.PostHostDiedTask(
remoteHost
);
in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/services/src/
H
A
D
form_task_mgr.cpp
201
* @param
remoteHost
Form host proxy object.
203
void FormTaskMgr::PostHostDiedTask(const sptr<IRemoteObject> &
remoteHost
)
in PostHostDiedTask()
argument
209
auto postTaskFunc = [
remoteHost
]() {
in PostHostDiedTask()
210
FormTaskMgr::GetInstance().HostDied(
remoteHost
);
in PostHostDiedTask()
582
* @param
remoteHost
Form host proxy object.
584
void FormTaskMgr::HostDied(const sptr<IRemoteObject> &
remoteHost
)
in HostDied()
argument
587
if (
remoteHost
== nullptr) {
in HostDied()
591
FormDataMgr::GetInstance().HandleHostDied(
remoteHost
);
in HostDied()
592
FormSupplyCallback::GetInstance()->HandleHostDied(
remoteHost
);
in HostDied()
H
A
D
form_data_mgr.cpp
699
* @param
remoteHost
Form host proxy object.
701
void FormDataMgr::HandleHostDied(const sptr<IRemoteObject> &
remoteHost
)
in HandleHostDied()
argument
709
if (
remoteHost
== itHostRecord->GetFormHostClient()) {
in HandleHostDied()
741
if (
remoteHost
== itFormStateRecord->second.GetFormHostClient()) {
in HandleHostDied()
751
FormRenderMgr::GetInstance().CleanFormHost(
remoteHost
, remoteHostCallerUid);
in HandleHostDied()
/foundation/ability/form_fwk/services/include/
H
A
D
form_task_mgr.h
132
* @param
remoteHost
Form host proxy object.
134
void PostHostDiedTask(const sptr<IRemoteObject> &
remoteHost
);
376
* @param
remoteHost
Form host proxy object.
378
void HostDied(const sptr<IRemoteObject> &
remoteHost
);
H
A
D
form_data_mgr.h
196
* @param
remoteHost
Form host proxy object.
198
void HandleHostDied(const sptr<IRemoteObject> &
remoteHost
);
/foundation/ability/form_fwk/test/unittest/fms_form_task_mgr_test/
H
A
D
fms_form_task_mgr_test.cpp
577
* @tc.desc: test HostDied function and
remoteHost
is nullptr
584
sptr<IRemoteObject>
remoteHost
= nullptr;
in HWTEST_F()
local
585
formTaskMgr.HostDied(
remoteHost
);
in HWTEST_F()
Completed in 12 milliseconds