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 90 static final int AUDIO_RINGING = 1; /** audio behaviour while ringing */
229 * Answer the currently-ringing call.
232 * actually a ringing incoming call, or some other error occurred.
237 static boolean answerCall(Call ringing) {
238 log("answerCall(" + ringing + ")...");
241 // If the ringer is currently ringing and/or vibrating, stop it
246 Phone phone = ringing.getPhone();
252 if (ringing.getState() == Call.State.WAITING) {
258 if (ringing != null && ringing.isRinging())
329 Call ringing = cm.getFirstActiveRingingCall(); local
    [all...]
InCallScreen.java 729 // to the foreground while an incoming call is ringing:
730 if (mCM.getState() == Phone.State.RINGING) {
731 // If the phone is ringing, we *should* already be holding a
3342 Call ringing = mCM.getFirstActiveRingingCall(); local
    [all...]
CallNotifier.java 84 // 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)");
270 // any more, so start ringing NOW even if it means we won't
386 * Handles a "new ringing connection" event from the telephony layer.
391 Call ringing = c.getCall(); local
392 Phone phone = ringing.getPhone();
400 PhoneUtils.hangupRingingCall(ringing);
411 Log.i(LOG_TAG, "CallNotifier.onNewRingingConnection(): connection not ringing!");
    [all...]
CallCard.java 75 private ViewGroup mPrimaryCallInfo; // "Call info" block #1 (the foreground or ringing call)
195 Phone.State state = cm.getState(); // IDLE, RINGING, or OFFHOOK
204 // and ignore the ringing call. This case happens when the telephony
205 // layer rejects the ringing call while the FG call is dialing/alerting,
210 // A phone call is ringing, call waiting *or* being rejected
217 // dialing, active, or holding, and no calls are ringing or waiting,
249 boolean ringing = (state == Phone.State.RINGING);
250 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 144 milliseconds