OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:radiostate
(Results
1 - 9
of
9
) sorted by null
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
UiccCard.java
37
import com.android.internal.telephony.CommandsInterface.
RadioState
;
74
private
RadioState
mLastRadioState =
RadioState
.RADIO_UNAVAILABLE;
148
RadioState
radioState
= mCi.getRadioState();
149
if (DBG) log("update:
radioState
=" +
radioState
+ " mLastRadioState="
152
if (
radioState
==
RadioState
.RADIO_ON && mLastRadioState ==
RadioState
.RADIO_ON)
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
BaseCommands.java
33
protected
RadioState
mState =
RadioState
.RADIO_UNAVAILABLE;
104
public
RadioState
getRadioState() {
201
if (mState ==
RadioState
.RADIO_OFF || !mState.isAvailable()) {
665
* Store new
RadioState
and send notification based on the changes
670
*
RadioState
has 3 values : RADIO_OFF, RADIO_UNAVAILABLE, RADIO_ON.
672
* @param newState new
RadioState
decoded from RIL_UNSOL_RADIO_STATE_CHANGED
674
protected void setRadioState(
RadioState
newState) {
675
RadioState
oldState;
CommandsInterface.java
30
enum
RadioState
{
110
RadioState
getRadioState();
124
* Fires on any
RadioState
transition
140
* Fires on any transition into
RadioState
.isOn()
149
* Fires on any transition out of
RadioState
.isAvailable()
158
* Fires on any transition into !
RadioState
.isAvailable()
167
* Fires on any transition into RADIO_OFF or !
RadioState
.isAvailable()
[
all
...]
RIL.java
548
setRadioState (
RadioState
.RADIO_UNAVAILABLE);
[
all
...]
/hardware/ril/libril/
ril.cpp
243
static int decodeVoiceRadioTechnology (RIL_RadioState
radioState
);
244
static int decodeCdmaSubscriptionSource (RIL_RadioState
radioState
);
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedCommands.java
96
setRadioState(
RadioState
.RADIO_OFF);
456
if ((mState ==
RadioState
.RADIO_ON) && !isSimLocked()) {
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaServiceStateTracker.java
48
import com.android.internal.telephony.CommandsInterface.
RadioState
;
307
if(mCi.getRadioState() ==
RadioState
.RADIO_ON) {
518
&& mCi.getRadioState() == CommandsInterface.
RadioState
.RADIO_OFF) {
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmServiceStateTracker.java
477
&& mCi.getRadioState() == CommandsInterface.
RadioState
.RADIO_OFF) {
[
all
...]
/hardware/ril/include/telephony/
ril.h
[
all
...]
Completed in 53 milliseconds