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:CallState
(Results
1 - 9
of
9
) sorted by relevance
/foundation/ability/ability_runtime/services/abilitymgr/include/
H
A
D
call_record.h
48
* @enum
CallState
49
*
CallState
defines the state of calling ability.
51
enum class
CallState
{ INIT, REQUESTING, REQUESTED };
class
77
bool IsCallState(const
CallState
&state) const;
78
void SetCallState(const
CallState
&state);
87
CallState
state_; // call state
/foundation/ability/ability_runtime/services/abilitymgr/src/
H
A
D
call_record.cpp
28
state_(
CallState
::INIT),
in CallRecord()
50
callRecord->SetCallState(
CallState
::INIT);
in CreateCallRecord()
137
state_ =
CallState
::REQUESTED;
in SchedulerConnectDone()
196
std::string state = (state_ ==
CallState
::INIT ? "INIT" :
in Dump()
197
state_ ==
CallState
::REQUESTING ? "REQUESTING" : "REQUESTED");
in Dump()
209
bool CallRecord::IsCallState(const
CallState
&state) const
in IsCallState()
214
void CallRecord::SetCallState(const
CallState
&state)
in SetCallState()
H
A
D
call_container.cpp
155
if (callRecord && callRecord->IsCallState(
CallState
::REQUESTING)) {
in CallRequestDone()
181
if (callRecord && !callRecord->IsCallState(
CallState
::REQUESTED)) {
in IsNeedToCallRequest()
H
A
D
ability_record.cpp
3096
if (callRecord->IsCallState(
CallState
::REQUESTED) && callRecord->GetCallStub()) {
in Resolve()
3105
callRecord->SetCallState(
CallState
::REQUESTING);
in Resolve()
/foundation/ability/ability_runtime/test/unittest/call_container_test/
H
A
D
call_container_test.cpp
257
callRecord->SetCallState(
CallState
::INIT);
in HWTEST_F()
280
callRecord->SetCallState(
CallState
::REQUESTING);
in HWTEST_F()
303
callRecord->SetCallState(
CallState
::REQUESTED);
in HWTEST_F()
361
callRecord->SetCallState(
CallState
::REQUESTED);
in HWTEST_F()
/foundation/ability/ability_runtime/test/unittest/ability_record_test/
H
A
D
ability_record_test_call.cpp
180
callRecord->SetCallState(
CallState
::REQUESTING);
in HWTEST_F()
195
callRecord->SetCallState(
CallState
::REQUESTED);
in HWTEST_F()
419
callRecord->SetCallState(
CallState
::INIT);
in HWTEST_F()
/foundation/ability/ability_runtime/test/fuzztest/applicationanrlistener_fuzzer/
H
A
D
applicationanrlistener_fuzzer.cpp
172
CallState
state =
CallState
::INIT;
in DoSomethingInterestingWithMyAPI()
/foundation/communication/bluetooth/interfaces/inner_api/include/
H
A
D
bluetooth_hf_call.h
48
enum
CallState
{
enum
/foundation/ability/ability_runtime/test/unittest/mission_list_manager_ut_test/
H
A
D
mission_list_manager_ut_test.cpp
272
callRecord->SetCallState(
CallState
::INIT);
in HWTEST_F()
317
callRecord->SetCallState(
CallState
::REQUESTED);
in HWTEST_F()
438
callRecord->SetCallState(
CallState
::REQUESTED);
in HWTEST_F()
473
callRecord->SetCallState(
CallState
::INIT);
in HWTEST_F()
510
callRecord->SetCallState(
CallState
::INIT);
in HWTEST_F()
574
callRecord->SetCallState(
CallState
::REQUESTED);
in HWTEST_F()
Completed in 16 milliseconds