OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pendingMO
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java
73
CdmaConnection
pendingMO
;
117
if(
pendingMO
!= null) hangup(
pendingMO
);
213
pendingMO
= new CdmaConnection(phone.getContext(), dialString, this, foregroundCall);
216
if (
pendingMO
.address == null ||
pendingMO
.address.length() == 0
217
||
pendingMO
.address.indexOf(PhoneNumberUtils.WILD) >= 0) {
219
pendingMO
.cause = Connection.DisconnectCause.INVALID_NUMBER;
233
cm.dial(
pendingMO
.address, clirMode, obtainCompleteMessage());
245
return
pendingMO
;
[
all
...]
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmCallTracker.java
78
GsmConnection
pendingMO
;
119
if(
pendingMO
!= null) hangup(
pendingMO
);
201
pendingMO
= new GsmConnection(phone.getContext(), dialString, this, foregroundCall);
204
if (
pendingMO
.address == null ||
pendingMO
.address.length() == 0
205
||
pendingMO
.address.indexOf(PhoneNumberUtils.WILD) >= 0
208
pendingMO
.cause = Connection.DisconnectCause.INVALID_NUMBER;
217
cm.dial(
pendingMO
.address, clirMode, uusInfo, obtainCompleteMessage());
223
return
pendingMO
;
[
all
...]
Completed in 35 milliseconds