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
485
* @exception
CallStateException
when call is not ringing or waiting
487
public void acceptCall(Call ringingCall) throws
CallStateException
{
528
* @exception
CallStateException
when no call is ringing or waiting
530
public void rejectCall(Call ringingCall) throws
CallStateException
{
560
* @exception
CallStateException
if active call is ringing, waiting, or
564
public void switchHoldingAndActive(Call heldCall) throws
CallStateException
{
601
* @throws
CallStateException
603
public void hangupForegroundResumeBackground(Call heldCall) throws
CallStateException
{
658
* @exception
CallStateException
if canConference() would return false.
661
public void conference(Call heldCall) throws
CallStateException
{
[
all
...]
PhoneProxy.java
368
public void acceptCall() throws
CallStateException
{
372
public void rejectCall() throws
CallStateException
{
376
public void switchHoldingAndActive() throws
CallStateException
{
384
public void conference() throws
CallStateException
{
400
public void explicitCallTransfer() throws
CallStateException
{
420
public Connection dial(String dialString) throws
CallStateException
{
424
public Connection dial(String dialString, UUSInfo uusInfo) throws
CallStateException
{
432
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
;
113
} catch (
CallStateException
ex) {
120
} catch (
CallStateException
ex) {
171
dial (String dialString, int clirMode, UUSInfo uusInfo) throws
CallStateException
{
176
throw new
CallStateException
("cannot dial in current state");
198
throw new
CallStateException
("cannot dial in current state");
227
dial(String dialString) throws
CallStateException
{
232
dial(String dialString, UUSInfo uusInfo) throws
CallStateException
{
237
dial(String dialString, int clirMode) throws
CallStateException
{
242
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
;
435
acceptCall() throws
CallStateException
{
440
rejectCall() throws
CallStateException
{
445
switchHoldingAndActive() throws
CallStateException
{
457
public void conference() throws
CallStateException
{
469
public void explicitCallTransfer() throws
CallStateException
{
489
String dialString) throws
CallStateException
{
498
} catch (
CallStateException
e) {
513
String dialString) throws
CallStateException
{
545
} 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
;
111
} catch (
CallStateException
ex) {
118
} catch (
CallStateException
ex) {
183
dial (String dialString, int clirMode) throws
CallStateException
{
188
throw new
CallStateException
("cannot dial in current state");
250
dial (String dialString) throws
CallStateException
{
271
acceptCall() throws
CallStateException
{
289
throw new
CallStateException
("phone not ringing");
294
rejectCall () throws
CallStateException
{
300
throw new
CallStateException
("phone not ringing")
[
all
...]
CdmaCall.java
23
import com.android.internal.telephony.
CallStateException
;
90
hangup() throws
CallStateException
{
CdmaConnection.java
291
public void hangup() throws
CallStateException
{
295
throw new
CallStateException
("disconnected");
299
public void separate() throws
CallStateException
{
303
throw new
CallStateException
("disconnected");
568
getCDMAIndex() throws
CallStateException
{
572
throw new
CallStateException
("CDMA connection index not assigned");
CDMAPhone.java
44
import com.android.internal.telephony.
CallStateException
;
320
public void conference() throws
CallStateException
{
369
dial (String dialString) throws
CallStateException
{
375
public Connection dial(String dialString, UUSInfo uusInfo) throws
CallStateException
{
376
throw new
CallStateException
("Sending UUS information NOT supported in CDMA!");
426
acceptCall() throws
CallStateException
{
431
rejectCall() throws
CallStateException
{
436
switchHoldingAndActive() throws
CallStateException
{
[
all
...]
/packages/apps/Phone/src/com/android/phone/
PhoneUtils.java
51
import com.android.internal.telephony.
CallStateException
;
299
} catch (
CallStateException
ex) {
434
* boolean success code rather than throwing
CallStateException
on
453
} catch (
CallStateException
ex) {
462
* do nothing (rather than throwing
CallStateException
) if the
470
} catch (
CallStateException
ex) {
595
} catch (
CallStateException
ex) {
596
//
CallStateException
means a new outgoing call is not currently
722
} catch (
CallStateException
ex) {
[
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
...]
Completed in 1419 milliseconds