Searched defs:phone (Results 51 - 75 of 93) sorted by relevance

1234

/frameworks/base/telecomm/java/android/telecom/
H A DPhone.java40 * @param phone The {@code Phone} calling this method.
43 public void onAudioStateChanged(Phone phone, AudioState audioState) { } argument
50 * @param phone The {@code Phone} calling this method.
53 public void onBringToForeground(Phone phone, boolean showDialpad) { } argument
62 * @param phone The {@code Phone} calling this method.
65 public void onCallAdded(Phone phone, Call call) { } argument
73 * @param phone The {@code Phone} calling this method.
76 public void onCallRemoved(Phone phone, Call call) { } argument
79 * Called when the {@code Phone} ability to add more calls changes. If the phone cannot
83 * @param phone Th
86 onCanAddCallChanged(Phone phone, boolean canAddCall) argument
[all...]
H A DInCallService.java37 * phone calls. Telecom binds to this service while there exists a live (active or incoming) call,
190 * @param phone The {@code Phone} object associated with this {@code InCallService}.
192 public void onPhoneCreated(Phone phone) { argument
201 * @param phone The {@code Phone} object associated with this {@code InCallService}.
203 public void onPhoneDestroyed(Phone phone) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccPhoneBookInterfaceManager.java114 public IccPhoneBookInterfaceManager(PhoneBase phone) { argument
115 this.mPhone = phone;
116 IccRecords r = phone.mIccRecords.get();
198 * phone book or erase/format the whole phonebook. Currently the email field
H A DImsSMSDispatcher.java53 public ImsSMSDispatcher(PhoneBase phone, SmsStorageMonitor storageMonitor, argument
55 super(phone, usageMonitor, null);
60 mCdmaDispatcher = new CdmaSMSDispatcher(phone, usageMonitor, this);
61 mGsmInboundSmsHandler = GsmInboundSmsHandler.makeInboundSmsHandler(phone.getContext(),
62 storageMonitor, phone);
63 mCdmaInboundSmsHandler = CdmaInboundSmsHandler.makeInboundSmsHandler(phone.getContext(),
64 storageMonitor, phone, (CdmaSMSDispatcher) mCdmaDispatcher);
65 mGsmDispatcher = new GsmSMSDispatcher(phone, usageMonitor, this, mGsmInboundSmsHandler);
66 Thread broadcastThread = new Thread(new SmsBroadcastUndelivered(phone.getContext(),
74 /* Updates the phone objec
76 updatePhoneObject(PhoneBase phone) argument
[all...]
H A DPhoneSubInfo.java47 public PhoneSubInfo(Phone phone) { argument
48 mPhone = phone;
49 mContext = phone.getContext();
123 * Retrieves the phone number string for line 1.
H A DPhoneSubInfoController.java38 public PhoneSubInfoController(Phone[] phone) { argument
39 mPhone = phone;
51 Phone phone = getPhone(phoneId);
52 if (phone != null) {
53 return phone.getDeviceId();
55 Rlog.e(TAG,"getDeviceIdForPhone phone " + phoneId + " is null");
H A DUiccSmsController.java44 protected UiccSmsController(Phone[] phone){ argument
45 mPhone = phone;
H A DIccSmsInterfaceManager.java128 protected IccSmsInterfaceManager(PhoneBase phone) { argument
129 mPhone = phone;
130 mContext = phone.getContext();
133 mDispatcher = new ImsSMSDispatcher(phone,
134 phone.mSmsStorageMonitor, phone.mSmsUsageMonitor);
170 protected void updatePhoneObject(PhoneBase phone) { argument
171 mPhone = phone;
172 mDispatcher.updatePhoneObject(phone);
974 // Clear the calling identity and query the database using the phone use
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaMmiCode.java108 newFromDialString(String dialString, CDMAPhone phone, UiccCardApplication app) { argument
116 ret = new CdmaMmiCode(phone,app);
145 CdmaMmiCode (CDMAPhone phone, UiccCardApplication app) { argument
146 super(phone.getHandler().getLooper());
147 mPhone = phone;
148 mContext = phone.getContext();
H A DCdmaSMSDispatcher.java51 public CdmaSMSDispatcher(PhoneBase phone, SmsUsageMonitor usageMonitor, argument
53 super(phone, usageMonitor, imsSMSDispatcher);
H A DEriManager.java99 public EriManager(PhoneBase phone, Context context, int eriFileSource) { argument
H A DCdmaCallTracker.java105 CdmaCallTracker(CDMAPhone phone) { argument
106 mPhone = phone;
107 mCi = phone.mCi;
295 Rlog.i("phone", "acceptCall: incoming...");
311 throw new CallStateException("phone not ringing");
318 // so if the phone isn't ringing, this could hang up held
322 throw new CallStateException("phone not ringing");
489 log("update phone state, old=" + oldState + " new="+ mState);
743 // 1) the phone has started to ring
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcController.java80 * @param phone the phone associated with Dcc and Dct
84 private DcController(String name, PhoneBase phone, DcTrackerBase dct, argument
89 mPhone = phone;
96 static DcController makeDcc(PhoneBase phone, DcTrackerBase dct, Handler handler) { argument
97 DcController dcc = new DcController("Dcc", phone, dct, handler);
H A DDctController.java98 public void updatePhoneObject(PhoneProxy phone) { argument
99 if (phone == null) {
100 loge("updatePhoneObject phone = null");
104 PhoneBase phoneBase = (PhoneBase)phone.getActivePhone();
111 if (mPhones[i] == phone) {
119 logd("updatePhoneBaseForIndex for phone index=" + index);
130 logd("unregister TelephonyNetworkFactory for phone index=" + index);
316 logd("executeAllRequests, phone:" + phoneId);
326 logd("releaseAllRequests, phone:" + phoneId);
608 public TelephonyNetworkFactory(Looper l, Context c, String TAG, Phone phone, argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmSMSDispatcher.java61 public GsmSMSDispatcher(PhoneBase phone, SmsUsageMonitor usageMonitor, argument
64 super(phone, usageMonitor, imsSMSDispatcher);
85 * Handles 3GPP format-specific events coming from the phone stack.
H A DGsmCallTracker.java102 GsmCallTracker (GSMPhone phone) { argument
103 this.mPhone = phone;
104 mCi = phone.mCi;
258 Rlog.i("phone", "acceptCall: incoming...");
266 throw new CallStateException("phone not ringing");
273 // so if the phone isn't ringing, this could hang up held
277 throw new CallStateException("phone not ringing");
642 // 1) the phone has started to ring
H A DGsmServiceStateTracker.java221 public GsmServiceStateTracker(GSMPhone phone) { argument
222 super(phone, phone.mCi, new CellInfoGsm());
224 mPhone = phone;
229 (PowerManager)phone.getContext().getSystemService(Context.POWER_SERVICE);
241 phone.getContext().getContentResolver(),
245 mCr = phone.getContext().getContentResolver();
258 phone.getContext().registerReceiver(mIntentReceiver, filter);
261 Context context = phone.getContext();
1583 * @return true if phone i
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DQSTileHost.java17 package com.android.systemui.statusbar.phone;
H A DScrimController.java17 package com.android.systemui.statusbar.phone;
H A DStatusBarKeyguardViewManager.java17 package com.android.systemui.statusbar.phone;
H A DTrustDrawable.java17 package com.android.systemui.statusbar.phone;
H A DKeyguardAffordanceHelper.java17 package com.android.systemui.statusbar.phone;
35 * A touch handler of the keyguard which is responsible for launching phone and camera affordances.
H A DKeyguardBottomAreaView.java17 package com.android.systemui.statusbar.phone;
64 * Implementation for the bottom area of the Keyguard, including camera/phone affordance and status
H A DNavigationBarView.java17 package com.android.systemui.statusbar.phone;
/frameworks/base/location/java/android/location/
H A DAddress.java362 * Returns the phone number of the address if known,
373 * Sets the phone number associated with this address.
375 public void setPhone(String phone) { argument
376 mPhone = phone;
465 sb.append(",phone=");

Completed in 278 milliseconds

1234