OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CallStateException
(Results
1 - 19
of
19
) sorted by null
/frameworks/base/telephony/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
;
Call.java
70
public abstract void hangup() throws
CallStateException
;
250
} catch (
CallStateException
ex) {
Phone.java
684
* @exception
CallStateException
when no call is ringing or waiting
686
void acceptCall() throws
CallStateException
;
695
* @exception
CallStateException
when no call is ringing or waiting
697
void rejectCall() throws
CallStateException
;
706
* @exception
CallStateException
if a call is ringing, waiting, or
709
void switchHoldingAndActive() throws
CallStateException
;
724
* @exception
CallStateException
if canConference() would return false.
727
void conference() throws
CallStateException
;
759
* @exception
CallStateException
if canTransfer() would return false.
762
void explicitCallTransfer() throws
CallStateException
;
[
all
...]
CallManager.java
504
* @exception
CallStateException
when call is not ringing or waiting
506
public void acceptCall(Call ringingCall) throws
CallStateException
{
547
* @exception
CallStateException
when no call is ringing or waiting
549
public void rejectCall(Call ringingCall) throws
CallStateException
{
579
* @exception
CallStateException
if active call is ringing, waiting, or
583
public void switchHoldingAndActive(Call heldCall) throws
CallStateException
{
620
* @throws
CallStateException
622
public void hangupForegroundResumeBackground(Call heldCall) throws
CallStateException
{
677
* @exception
CallStateException
if canConference() would return false.
680
public void conference(Call heldCall) throws
CallStateException
{
[
all
...]
PhoneProxy.java
467
public void acceptCall() throws
CallStateException
{
471
public void rejectCall() throws
CallStateException
{
475
public void switchHoldingAndActive() throws
CallStateException
{
483
public void conference() throws
CallStateException
{
499
public void explicitCallTransfer() throws
CallStateException
{
519
public Connection dial(String dialString) throws
CallStateException
{
523
public Connection dial(String dialString, UUSInfo uusInfo) throws
CallStateException
{
531
public boolean handleInCallMmiCommands(String command) throws
CallStateException
{
/frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipPhone.java
36
import com.android.internal.telephony.
CallStateException
;
132
public void acceptCall() throws
CallStateException
{
141
throw new
CallStateException
("phone not ringing");
146
public void rejectCall() throws
CallStateException
{
152
throw new
CallStateException
("phone not ringing");
157
public Connection dial(String dialString) throws
CallStateException
{
164
throws
CallStateException
{
168
throw new
CallStateException
("cannot dial in current state");
175
throw new
CallStateException
("cannot dial in current state");
184
throw new
CallStateException
("dial error: " + e)
[
all
...]
SipCallBase.java
20
import com.android.internal.telephony.
CallStateException
;
SipPhoneBase.java
33
import com.android.internal.telephony.
CallStateException
;
69
throws
CallStateException
{
221
throws
CallStateException
{
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmCallTracker.java
32
import com.android.internal.telephony.
CallStateException
;
115
} catch (
CallStateException
ex) {
122
} catch (
CallStateException
ex) {
173
dial (String dialString, int clirMode, UUSInfo uusInfo) throws
CallStateException
{
178
throw new
CallStateException
("cannot dial in current state");
200
throw new
CallStateException
("cannot dial in current state");
230
dial(String dialString) throws
CallStateException
{
235
dial(String dialString, UUSInfo uusInfo) throws
CallStateException
{
240
dial(String dialString, int clirMode) throws
CallStateException
{
245
acceptCall () throws
CallStateException
{
[
all
...]
GsmCall.java
20
import com.android.internal.telephony.
CallStateException
;
86
hangup() throws
CallStateException
{
GSMPhone.java
56
import com.android.internal.telephony.
CallStateException
;
427
acceptCall() throws
CallStateException
{
432
rejectCall() throws
CallStateException
{
437
switchHoldingAndActive() throws
CallStateException
{
449
public void conference() throws
CallStateException
{
461
public void explicitCallTransfer() throws
CallStateException
{
481
String dialString) throws
CallStateException
{
490
} catch (
CallStateException
e) {
505
String dialString) throws
CallStateException
{
537
} catch (
CallStateException
e)
[
all
...]
GsmConnection.java
239
public void hangup() throws
CallStateException
{
243
throw new
CallStateException
("disconnected");
247
public void separate() throws
CallStateException
{
251
throw new
CallStateException
("disconnected");
495
getGSMIndex() throws
CallStateException
{
499
throw new
CallStateException
("GSM index not yet assigned");
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java
29
import com.android.internal.telephony.
CallStateException
;
113
} catch (
CallStateException
ex) {
120
} 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
23
import com.android.internal.telephony.
CallStateException
;
90
hangup() throws
CallStateException
{
CdmaConnection.java
292
public void hangup() throws
CallStateException
{
296
throw new
CallStateException
("disconnected");
300
public void separate() throws
CallStateException
{
304
throw new
CallStateException
("disconnected");
570
getCDMAIndex() throws
CallStateException
{
574
throw new
CallStateException
("CDMA connection index not assigned");
CDMAPhone.java
44
import com.android.internal.telephony.
CallStateException
;
315
public void conference() throws
CallStateException
{
364
dial (String dialString) throws
CallStateException
{
370
public Connection dial(String dialString, UUSInfo uusInfo) throws
CallStateException
{
371
throw new
CallStateException
("Sending UUS information NOT supported in CDMA!");
421
acceptCall() throws
CallStateException
{
426
rejectCall() throws
CallStateException
{
431
switchHoldingAndActive() throws
CallStateException
{
[
all
...]
/frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java
27
import com.android.internal.telephony.
CallStateException
;
367
} catch (
CallStateException
ex) {
629
} catch (
CallStateException
ex) {
[
all
...]
/packages/apps/Phone/src/com/android/phone/
PhoneUtils.java
55
import com.android.internal.telephony.
CallStateException
;
323
} catch (
CallStateException
ex) {
458
* boolean success code rather than throwing
CallStateException
on
477
} catch (
CallStateException
ex) {
486
* do nothing (rather than throwing
CallStateException
) if the
494
} catch (
CallStateException
ex) {
645
} catch (
CallStateException
ex) {
646
//
CallStateException
means a new outgoing call is not currently
[
all
...]
Completed in 528 milliseconds