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:TelCallStatus
(Results
1 - 10
of
10
) sorted by relevance
/base/telephony/cellular_data/services/src/state_machine/
H
A
D
incall_data_state_machine.cpp
92
if (callState_ == static_cast<int32_t>(
TelCallStatus
::CALL_STATUS_IDLE) ||
in IsSecondaryCanActiveData()
93
callState_ == static_cast<int32_t>(
TelCallStatus
::CALL_STATUS_DISCONNECTED)) {
in IsSecondaryCanActiveData()
167
if (stateMachine->GetCallState() == static_cast<int32_t>(
TelCallStatus
::CALL_STATUS_IDLE) ||
in StateBegin()
168
stateMachine->GetCallState() == static_cast<int32_t>(
TelCallStatus
::CALL_STATUS_DISCONNECTED)) {
in StateBegin()
323
if (stateMachine->GetCallState() == static_cast<int32_t>(
TelCallStatus
::CALL_STATUS_IDLE) ||
in ProcessCallEnded()
324
stateMachine->GetCallState() == static_cast<int32_t>(
TelCallStatus
::CALL_STATUS_DISCONNECTED)) {
in ProcessCallEnded()
/base/telephony/cellular_data/test/
H
A
D
cellular_state_machine_test.cpp
149
incallStateMachine->Init(
TelCallStatus
::CALL_STATUS_DIALING);
in HWTEST_F()
168
incallStateMachine->Init(
TelCallStatus
::CALL_STATUS_DIALING);
in HWTEST_F()
171
incallStateMachine->UpdateCallState(static_cast<int32_t>(
TelCallStatus
::CALL_STATUS_IDLE));
in HWTEST_F()
187
incallStateMachine->Init(
TelCallStatus
::CALL_STATUS_DIALING);
in HWTEST_F()
190
incallStateMachine->UpdateCallState(static_cast<int32_t>(
TelCallStatus
::CALL_STATUS_DISCONNECTED));
in HWTEST_F()
206
incallStateMachine->Init(
TelCallStatus
::CALL_STATUS_DIALING);
in HWTEST_F()
226
incallStateMachine->Init(
TelCallStatus
::CALL_STATUS_DIALING);
in HWTEST_F()
246
incallStateMachine->Init(
TelCallStatus
::CALL_STATUS_DIALING);
in HWTEST_F()
273
incallStateMachine->Init(
TelCallStatus
::CALL_STATUS_DIALING);
in HWTEST_F()
294
incallStateMachine->Init(
TelCallStatus
in HWTEST_F()
[all...]
H
A
D
cellular_data_handler_branch_test.cpp
362
cellularDataHandler->HandleImsCallChanged(
TelCallStatus
::CALL_STATUS_DIALING);
in HWTEST_F()
385
cellularDataHandler->HandleImsCallChanged(
TelCallStatus
::CALL_STATUS_DIALING);
in HWTEST_F()
386
cellularDataHandler->HandleImsCallChanged(
TelCallStatus
::CALL_STATUS_INCOMING);
in HWTEST_F()
388
cellularDataHandler->HandleVoiceCallChanged(
TelCallStatus
::CALL_STATUS_DISCONNECTED);
in HWTEST_F()
389
cellularDataHandler->HandleVoiceCallChanged(
TelCallStatus
::CALL_STATUS_IDLE);
in HWTEST_F()
H
A
D
zero_branch_test.cpp
1532
incallStateMachine->Init(
TelCallStatus
::CALL_STATUS_DIALING);
in HWTEST_F()
1537
incallStateMachine->UpdateCallState(
TelCallStatus
::CALL_STATUS_ALERTING);
in HWTEST_F()
1563
incallStateMachine->Init(
TelCallStatus
::CALL_STATUS_DIALING);
in HWTEST_F()
1593
incallStateMachine->Init(
TelCallStatus
::CALL_STATUS_DIALING);
in HWTEST_F()
1622
incallStateMachine->Init(
TelCallStatus
::CALL_STATUS_DIALING);
in HWTEST_F()
/base/telephony/cellular_data/services/include/
H
A
D
data_connection_monitor.h
127
int32_t callState_ = static_cast<int32_t>(
TelCallStatus
::CALL_STATUS_IDLE);
H
A
D
cellular_data_handler.h
174
int32_t lastCallState_ = (int32_t)
TelCallStatus
::CALL_STATUS_IDLE;
/base/telephony/cellular_data/services/src/
H
A
D
data_connection_monitor.cpp
139
if (callState_ != static_cast<int32_t>(
TelCallStatus
::CALL_STATUS_IDLE) &&
in HandleRecovery()
140
callState_ != static_cast<int32_t>(
TelCallStatus
::CALL_STATUS_DISCONNECTED)) {
in HandleRecovery()
H
A
D
cellular_data_handler.cpp
1304
if (state ==
TelCallStatus
::CALL_STATUS_DIALING || state ==
TelCallStatus
::CALL_STATUS_INCOMING) {
in HandleImsCallChanged()
1314
if (state ==
TelCallStatus
::CALL_STATUS_DIALING || state ==
TelCallStatus
::CALL_STATUS_INCOMING) {
in HandleImsCallChanged()
1318
if (state ==
TelCallStatus
::CALL_STATUS_DISCONNECTED || state ==
TelCallStatus
::CALL_STATUS_IDLE) {
in HandleImsCallChanged()
1334
if (state !=
TelCallStatus
::CALL_STATUS_IDLE && state !=
TelCallStatus
::CALL_STATUS_DISCONNECTED) {
in HandleVoiceCallChanged()
1720
bool inCall = (lastCallState_ !=
TelCallStatus
::CALL_STATUS_IDLE &&
in IsRestrictedMode()
1721
lastCallState_ !=
TelCallStatus
in IsRestrictedMode()
[all...]
/base/telephony/cellular_data/services/include/common/
H
A
D
cellular_data_constant.h
139
enum
TelCallStatus
{
enum
/base/telephony/cellular_data/services/include/state_machine/
H
A
D
incall_data_state_machine.h
69
int32_t callState_ = static_cast<int32_t>(
TelCallStatus
::CALL_STATUS_IDLE);
Completed in 14 milliseconds