HomeSort by relevance Sort by last modified time
    Searched refs:ringing (Results 1 - 5 of 5) sorted by null

  /packages/apps/Phone/src/com/android/phone/
PhoneUtils.java 97 static final int AUDIO_RINGING = 1; /** audio behaviour while ringing */
236 * Answer the currently-ringing call.
239 * actually a ringing incoming call, or some other error occurred.
244 /* package */ static boolean answerCall(Call ringing) {
245 log("answerCall(" + ringing + ")...");
248 // If the ringer is currently ringing and/or vibrating, stop it
252 final Phone phone = ringing.getPhone();
259 if (ringing.getState() == Call.State.WAITING) {
265 if (ringing != null && ringing.isRinging())
353 Call ringing = cm.getFirstActiveRingingCall(); local
    [all...]
InCallScreen.java 711 // Coming to the foreground while in an incoming call is ringing.
713 if (mCM.getState() == Phone.State.RINGING) {
714 // If the phone is ringing, we *should* already be holding a
739 // The phone isn't ringing; this is either an outgoing call, or
3490 Call ringing = mCM.getFirstActiveRingingCall(); local
    [all...]
CallNotifier.java 85 // stopped ringing. Instead, when a call-waiting call first comes in we
234 log("RINGING... (new)");
245 if ((pb.getState() == Phone.State.RINGING)
247 if (DBG) log("RINGING... (PHONE_INCOMING_RING event)");
373 * Handles a "new ringing connection" event from the telephony layer.
378 Call ringing = c.getCall(); local
379 Phone phone = ringing.getPhone();
387 PhoneUtils.hangupRingingCall(ringing);
392 Log.i(LOG_TAG, "CallNotifier.onNewRingingConnection(): connection not ringing!");
394 // ringing almost instantly after the onNewRingingConnection(
    [all...]
CallCard.java 96 /** Primary "call info" block (the foreground or ringing call) */
252 Phone.State state = cm.getState(); // IDLE, RINGING, or OFFHOOK
261 // and ignore the ringing call. This case happens when the telephony
262 // layer rejects the ringing call while the FG call is dialing/alerting,
267 // A phone call is ringing, call waiting *or* being rejected
274 // dialing, active, or holding, and no calls are ringing or waiting,
316 boolean ringing = (state == Phone.State.RINGING);
317 if (DBG) log("updateCallInfoLayout()... ringing = " + ringing);
    [all...]
  /external/speex/libspeex/
nb_celp.c 259 VARDECL(spx_word16_t *ringing);
641 ALLOC(ringing, st->subframeSize, spx_word16_t);
729 ringing[i] = VERY_SMALL;
731 iir_mem16(ringing, interp_qlpc, ringing, response_bound, st->lpcSize, mem, stack);
734 filter_mem16(ringing, st->bw_lpc1, st->bw_lpc2, ringing, response_bound, st->lpcSize, mem, stack);
735 SPEEX_MEMSET(&ringing[response_bound], 0, st->subframeSize-response_bound);
737 iir_mem16(ringing, interp_qlpc, ringing, st->subframeSize, st->lpcSize, mem, stack)
    [all...]

Completed in 56 milliseconds