OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CallStateException
(Results
1 - 18
of
18
) sorted by null
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
CallStateException.java
22
public class
CallStateException
extends Exception
25
CallStateException
()
30
CallStateException
(String string)
Connection.java
224
public abstract void hangup() throws
CallStateException
;
231
public abstract void separate() throws
CallStateException
;
Phone.java
616
* @exception
CallStateException
when no call is ringing or waiting
618
void acceptCall() throws
CallStateException
;
627
* @exception
CallStateException
when no call is ringing or waiting
629
void rejectCall() throws
CallStateException
;
638
* @exception
CallStateException
if a call is ringing, waiting, or
641
void switchHoldingAndActive() throws
CallStateException
;
656
* @exception
CallStateException
if canConference() would return false.
659
void conference() throws
CallStateException
;
691
* @exception
CallStateException
if canTransfer() would return false.
694
void explicitCallTransfer() throws
CallStateException
;
[
all
...]
Call.java
72
public abstract void hangup() throws
CallStateException
;
252
} catch (
CallStateException
ex) {
CallManager.java
515
* @exception
CallStateException
when call is not ringing or waiting
517
public void acceptCall(Call ringingCall) throws
CallStateException
{
575
* @exception
CallStateException
when no call is ringing or waiting
577
public void rejectCall(Call ringingCall) throws
CallStateException
{
607
* @exception
CallStateException
if active call is ringing, waiting, or
611
public void switchHoldingAndActive(Call heldCall) throws
CallStateException
{
648
* @throws
CallStateException
650
public void hangupForegroundResumeBackground(Call heldCall) throws
CallStateException
{
705
* @exception
CallStateException
if canConference() would return false.
708
public void conference(Call heldCall) throws
CallStateException
{
[
all
...]
PhoneProxy.java
568
public void acceptCall() throws
CallStateException
{
573
public void rejectCall() throws
CallStateException
{
578
public void switchHoldingAndActive() throws
CallStateException
{
588
public void conference() throws
CallStateException
{
608
public void explicitCallTransfer() throws
CallStateException
{
633
public Connection dial(String dialString) throws
CallStateException
{
638
public Connection dial(String dialString, UUSInfo uusInfo) throws
CallStateException
{
648
public boolean handleInCallMmiCommands(String command) throws
CallStateException
{
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java
36
import com.android.internal.telephony.
CallStateException
;
146
public void acceptCall() throws
CallStateException
{
157
" throw
CallStateException
(\"phone not ringing\")");
159
throw new
CallStateException
("phone not ringing");
165
public void rejectCall() throws
CallStateException
{
173
" throw
CallStateException
(\"phone not ringing\")");
175
throw new
CallStateException
("phone not ringing");
181
public Connection dial(String dialString) throws
CallStateException
{
188
throws
CallStateException
{
193
throw new
CallStateException
("dialInternal: cannot dial in current state")
[
all
...]
SipPhoneBase.java
34
import com.android.internal.telephony.
CallStateException
;
74
throws
CallStateException
{
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCallTracker.java
32
import com.android.internal.telephony.
CallStateException
;
122
} catch (
CallStateException
ex) {
133
} catch (
CallStateException
ex) {
189
dial (String dialString, int clirMode, UUSInfo uusInfo) throws
CallStateException
{
194
throw new
CallStateException
("cannot dial in current state");
216
throw new
CallStateException
("cannot dial in current state");
246
dial(String dialString) throws
CallStateException
{
251
dial(String dialString, UUSInfo uusInfo) throws
CallStateException
{
256
dial(String dialString, int clirMode) throws
CallStateException
{
261
acceptCall () throws
CallStateException
{
[
all
...]
GsmCall.java
20
import com.android.internal.telephony.
CallStateException
;
88
hangup() throws
CallStateException
{
GsmConnection.java
260
public void hangup() throws
CallStateException
{
264
throw new
CallStateException
("disconnected");
269
public void separate() throws
CallStateException
{
273
throw new
CallStateException
("disconnected");
520
getGSMIndex() throws
CallStateException
{
524
throw new
CallStateException
("GSM index not yet assigned");
GSMPhone.java
55
import com.android.internal.telephony.
CallStateException
;
451
acceptCall() throws
CallStateException
{
457
rejectCall() throws
CallStateException
{
463
switchHoldingAndActive() throws
CallStateException
{
524
} catch (
CallStateException
e) {
571
} catch (
CallStateException
e) {
605
} catch (
CallStateException
e) {
621
} catch (
CallStateException
e) {
718
dial(String dialString) throws
CallStateException
{
724
dial (String dialString, UUSInfo uusInfo) throws
CallStateException
{
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java
29
import com.android.internal.telephony.
CallStateException
;
120
} catch (
CallStateException
ex) {
131
} catch (
CallStateException
ex) {
185
dial (String dialString, int clirMode) throws
CallStateException
{
190
throw new
CallStateException
("cannot dial in current state");
253
dial (String dialString) throws
CallStateException
{
274
acceptCall() throws
CallStateException
{
292
throw new
CallStateException
("phone not ringing");
297
rejectCall () throws
CallStateException
{
303
throw new
CallStateException
("phone not ringing")
[
all
...]
CdmaCall.java
22
import com.android.internal.telephony.
CallStateException
;
85
hangup() throws
CallStateException
{
CdmaConnection.java
297
public void hangup() throws
CallStateException
{
301
throw new
CallStateException
("disconnected");
306
public void separate() throws
CallStateException
{
310
throw new
CallStateException
("disconnected");
562
getCDMAIndex() throws
CallStateException
{
566
throw new
CallStateException
("CDMA connection index not assigned");
CDMAPhone.java
45
import com.android.internal.telephony.
CallStateException
;
373
dial (String dialString) throws
CallStateException
{
380
public Connection dial(String dialString, UUSInfo uusInfo) throws
CallStateException
{
381
throw new
CallStateException
("Sending UUS information NOT supported in CDMA!");
435
acceptCall() throws
CallStateException
{
441
rejectCall() throws
CallStateException
{
447
switchHoldingAndActive() throws
CallStateException
{
[
all
...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java
27
import com.android.internal.telephony.
CallStateException
;
368
} catch (
CallStateException
ex) {
630
} catch (
CallStateException
ex) {
[
all
...]
/packages/services/Telephony/src/com/android/phone/
PhoneUtils.java
51
import com.android.internal.telephony.
CallStateException
;
353
} catch (
CallStateException
ex) {
514
* boolean success code rather than throwing
CallStateException
on
533
} catch (
CallStateException
ex) {
542
* do nothing (rather than throwing
CallStateException
) if the
550
} catch (
CallStateException
ex) {
715
} catch (
CallStateException
ex) {
716
//
CallStateException
means a new outgoing call is not currently
[
all
...]
Completed in 129 milliseconds