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 100 static final int AUDIO_RINGING = 1; /** audio behaviour while ringing */
239 * Answer the currently-ringing call.
242 * actually a ringing incoming call, or some other error occurred.
247 /* package */ static boolean answerCall(Call ringing) {
248 log("answerCall(" + ringing + ")...");
251 // If the ringer is currently ringing and/or vibrating, stop it
255 final Phone phone = ringing.getPhone();
262 if (ringing.getState() == Call.State.WAITING) {
268 if (ringing != null && ringing.isRinging())
364 Call ringing = cm.getFirstActiveRingingCall(); local
    [all...]
InCallScreen.java 3455 Call ringing = mCM.getFirstActiveRingingCall(); local
    [all...]
CallNotifier.java 90 // stopped ringing. Instead, when a call-waiting call first comes in we
243 log("RINGING... (new)");
254 if ((pb.getState() == PhoneConstants.State.RINGING)
256 if (DBG) log("RINGING... (PHONE_INCOMING_RING event)");
382 * Handles a "new ringing connection" event from the telephony layer.
387 Call ringing = c.getCall(); local
388 Phone phone = ringing.getPhone();
396 PhoneUtils.hangupRingingCall(ringing);
401 Log.i(LOG_TAG, "CallNotifier.onNewRingingConnection(): connection not ringing!");
403 // ringing almost instantly after the onNewRingingConnection(
    [all...]
CallCard.java 98 /** Primary "call info" block (the foreground or ringing call) */
254 PhoneConstants.State state = cm.getState(); // IDLE, RINGING, or OFFHOOK
267 // and ignore the ringing call. This case happens when the telephony
268 // layer rejects the ringing call while the FG call is dialing/alerting,
273 // A phone call is ringing, call waiting *or* being rejected
280 // dialing, active, or holding, and no calls are ringing or waiting,
322 boolean ringing = (state == PhoneConstants.State.RINGING);
323 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 107 milliseconds