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

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
ProxyController.java 44 import com.android.internal.telephony.PhoneProxy;
76 public static ProxyController getInstance(Context context, Phone[] phoneProxy,
79 sProxyController = new ProxyController(context, phoneProxy, uiccController, ci);
88 private ProxyController(Context context, Phone[] phoneProxy, UiccController uiccController,
93 mProxyPhones = phoneProxy;
97 mDctController = DctController.makeDctController((PhoneProxy[])phoneProxy);
107 ((PhoneProxy) mProxyPhones[sub]).updateDataConnectionTracker();
111 ((PhoneProxy) mProxyPhones[sub]).setInternalDataEnabled(true);
116 ((PhoneProxy) mProxyPhones[sub]).setInternalDataEnabled(false, dataCleanedUpMsg)
    [all...]
DebugService.java 47 PhoneProxy phoneProxy = null;
51 phoneProxy = (PhoneProxy) PhoneFactory.getDefaultPhone();
57 phoneBase = (PhoneBase)phoneProxy.getActivePhone();
113 ((IccCardProxy)phoneProxy.getIccCard()).dump(fd, pw, args);
PhoneFactory.java 55 static private PhoneProxy[] sProxyPhones = null;
56 static private PhoneProxy sProxyPhone = null;
124 /* In case of multi SIM mode two instances of PhoneProxy, RIL are created,
129 sProxyPhones = new PhoneProxy[numPhones];
172 sProxyPhones[i] = new PhoneProxy(phone);
208 synchronized(PhoneProxy.lockForRadioTechnologyChange) {
216 synchronized(PhoneProxy.lockForRadioTechnologyChange) {
266 synchronized(PhoneProxy.lockForRadioTechnologyChange) {
UiccPhoneBookController.java 133 return ((PhoneProxy)mPhone[(int)phoneId]).getIccPhoneBookInterfaceManagerProxy();
PhoneSubInfoController.java 216 return ((PhoneProxy)mPhone[(int)phoneId]).getPhoneSubInfoProxy();
SubInfoRecordUpdater.java 39 import com.android.internal.telephony.PhoneProxy;
89 public SubInfoRecordUpdater(Context context, Phone[] phoneProxy, CommandsInterface[] ci) {
93 sPhone = phoneProxy;
266 sFh[slotId] = ((PhoneProxy)sPhone[slotId]).getIccFileHandler();
UiccSmsController.java 308 ((PhoneProxy)mPhone[(int)phoneId]).getIccSmsInterfaceManager();
PhoneProxy.java 51 public class PhoneProxy extends Handler implements Phone {
73 private static final String LOG_TAG = "PhoneProxy";
76 public PhoneProxy(PhoneBase phone) {
151 Rlog.d(LOG_TAG, "[PhoneProxy] " + msg);
155 Rlog.e(LOG_TAG, "[PhoneProxy] " + msg);
    [all...]
SubscriptionController.java 119 protected static PhoneProxy[] sProxyPhones;
    [all...]
PhoneBase.java 410 synchronized(PhoneProxy.lockForRadioTechnologyChange) {
    [all...]
CallManager.java 201 * is a PhoneProxy obj
202 * or the Phone itself if Phone is not a PhoneProxy obj
205 if (phone instanceof PhoneProxy) {
214 * Note: PhoneBase, not PhoneProxy, is to be used inside of CallManager
216 * Both PhoneBase and PhoneProxy implement Phone interface, so
220 * PhoneFactory.getDefaultPhone() returns PhoneProxy obj, which has a class
    [all...]
  /packages/services/Telephony/src/com/android/services/telephony/
PstnIncomingCallNotifier.java 39 import com.android.internal.telephony.PhoneProxy;
58 private final PhoneProxy mPhoneProxy;
109 * @param phoneProxy The phone object for listening to incoming calls.
111 PstnIncomingCallNotifier(PhoneProxy phoneProxy) {
112 Preconditions.checkNotNull(phoneProxy);
114 mPhoneProxy = phoneProxy;
130 * TODO: We should only need to interact with the phoneproxy directly. However,
131 * since the phoneproxy only interacts directly with CallManager we either listen to callmanager
TelephonyConnectionService.java 38 import com.android.internal.telephony.PhoneProxy;
406 PhoneProxy phoneProxy = (PhoneProxy)phone;
407 CDMAPhone cdmaPhone = (CDMAPhone)phoneProxy.getActivePhone();
TelecomAccountRegistry.java 37 import com.android.internal.telephony.PhoneProxy;
76 mIncomingCallNotifier = new PstnIncomingCallNotifier((PhoneProxy) mPhone);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DctController.java 35 import com.android.internal.telephony.PhoneProxy;
76 private PhoneProxy[] mPhones;
214 public static DctController makeDctController(PhoneProxy[] phones) {
221 private DctController(PhoneProxy[] phones) {
260 PhoneBase phoneBase = (PhoneBase)((PhoneProxy)mPhones[i]).getActivePhone();
DcSwitchState.java 27 import com.android.internal.telephony.PhoneProxy;
113 PhoneBase pb = (PhoneBase)((PhoneProxy)mPhone).getActivePhone();
165 PhoneBase pb = (PhoneBase)((PhoneProxy)mPhone).getActivePhone();
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CDMALTEPhone.java 47 import com.android.internal.telephony.PhoneProxy;
132 synchronized(PhoneProxy.lockForRadioTechnologyChange) {
CDMAPhone.java 59 import com.android.internal.telephony.PhoneProxy;
237 synchronized(PhoneProxy.lockForRadioTechnologyChange) {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GSMPhone.java 68 import com.android.internal.telephony.PhoneProxy;
227 synchronized(PhoneProxy.lockForRadioTechnologyChange) {
    [all...]

Completed in 268 milliseconds