HomeSort by relevance Sort by last modified time
    Searched refs:Telephony (Results 26 - 50 of 122) sorted by null

12 3 4 5

  /cts/tests/tests/provider/src/android/provider/cts/
TelephonyProviderTest.java 24 import android.provider.Telephony.Carriers;
  /packages/services/Mms/src/com/android/mms/service/
SendRequest.java 28 import android.provider.Telephony;
31 import android.telephony.CarrierMessagingServiceManager;
32 import android.telephony.PhoneNumberUtils;
33 import android.telephony.SmsManager;
36 import com.android.internal.telephony.AsyncEmergencyContactNotifier;
37 import com.android.internal.telephony.Phone;
38 import com.android.internal.telephony.PhoneFactory;
39 import com.android.internal.telephony.SmsApplication;
40 import com.android.internal.telephony.SmsNumberUtils;
179 Telephony.Mms.Sent.CONTENT_URI
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MmsWapPushReceiver.java 22 import android.provider.Telephony;
39 if (Telephony.Sms.Intents.WAP_PUSH_RECEIVED_ACTION.equals(intent.getAction())
  /packages/apps/Contacts/src/com/android/contacts/util/
PhoneCapabilityTester.java 27 import android.provider.Telephony;
28 import android.telephony.TelephonyManager;
83 String smsPackage = Telephony.Sms.getDefaultSmsPackage(context);
  /packages/apps/CellBroadcastReceiver/tests/testapp/src/com/android/cellbroadcastreceiver/tests/
SendCdmaCmasMessages.java 24 import android.provider.Telephony;
25 import android.telephony.SmsCbCmasInfo;
26 import android.telephony.SmsCbLocation;
27 import android.telephony.SmsCbMessage;
28 import com.android.internal.telephony.PhoneConstants;
29 import com.android.internal.telephony.cdma.sms.SmsEnvelope;
63 Intent intent = new Intent(Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION);
77 Intent intent = new Intent(Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION);
91 Intent intent = new Intent(Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION);
105 Intent intent = new Intent(Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION)
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/appsettings/
ApnSettingsActivity.java 37 import android.provider.Telephony;
101 Telephony.Carriers._ID, // 0
102 Telephony.Carriers.NAME, // 1
103 Telephony.Carriers.APN, // 2
104 Telephony.Carriers.TYPE // 3
135 sCurrentNullMap.putNull(Telephony.Carriers.CURRENT);
138 sCurrentSetMap.put(Telephony.Carriers.CURRENT, "2"); // 2 for user-selected APN,
224 String selection = Telephony.Carriers.NUMERIC + " =?";
323 private static final String UPDATE_SELECTION = Telephony.Carriers.CURRENT + " =?";
337 String selection = Telephony.Carriers._ID + " =?"
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
WapPushOverSms.java 17 package com.android.internal.telephony;
44 import android.provider.Telephony;
45 import android.provider.Telephony.Sms.Intents;
46 import android.telephony.Rlog;
47 import android.telephony.SmsManager;
48 import android.telephony.SubscriptionManager;
51 import com.android.internal.telephony.uicc.IccUtils;
323 * @return a result code from {@link android.provider.Telephony.Sms.Intents}, or
334 // Store the wap push data in telephony
455 Telephony.Mms.Inbox.CONTENT_URI
    [all...]
InboundSmsHandler.java 17 package com.android.internal.telephony;
20 import static android.telephony.TelephonyManager.PHONE_TYPE_CDMA;
57 import android.provider.Telephony;
58 import android.provider.Telephony.Sms.Intents;
63 import android.telephony.CarrierMessagingServiceManager;
64 import android.telephony.Rlog;
65 import android.telephony.SmsManager;
66 import android.telephony.SmsMessage;
67 import android.telephony.SubscriptionManager;
68 import android.telephony.TelephonyManager
    [all...]
SmsMessageBase.java 17 package com.android.internal.telephony;
19 import com.android.internal.telephony.GsmAlphabet.TextEncodingDetails;
20 import com.android.internal.telephony.SmsConstants;
21 import com.android.internal.telephony.SmsHeader;
25 import android.provider.Telephony;
26 import android.telephony.SmsMessage;
350 mIsEmail = Telephony.Mms.isEmailAddress(mEmailFrom);
  /packages/apps/Messaging/src/android/support/v7/mms/
DefaultApnSettingsLoader.java 26 import android.provider.Telephony;
215 Telephony.Carriers.TYPE,
216 Telephony.Carriers.MMSC,
217 Telephony.Carriers.MMSPROXY,
218 Telephony.Carriers.MMSPORT,
279 * Load matching APNs from telephony provider.
289 uri = Uri.withAppendedPath(Telephony.Carriers.CONTENT_URI, "/subId/" + subId);
291 uri = Telephony.Carriers.CONTENT_URI;
351 selectionBuilder.append(Telephony.Carriers.CURRENT).append(" IS NOT NULL");
358 selectionBuilder.append(Telephony.Carriers.APN).append("=?")
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
WapPushOverSmsTest.java 17 package com.android.internal.telephony;
35 import android.provider.Telephony;
96 assertEquals(Telephony.Sms.Intents.WAP_PUSH_DELIVER_ACTION, intent.getAction());
138 assertEquals(Telephony.Sms.Intents.RESULT_SMS_HANDLED,
SmsStorageMonitorTest.java 17 package com.android.internal.telephony;
22 import android.provider.Telephony;
26 import com.android.internal.telephony.test.SimulatedCommands;
27 import com.android.internal.telephony.test.SimulatedCommandsVerifier;
83 assertEquals(Telephony.Sms.Intents.SIM_FULL_ACTION,
  /packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertServiceTest.java 20 import android.provider.Telephony;
21 import android.telephony.CellBroadcastMessage;
22 import android.telephony.SmsCbCmasInfo;
23 import android.telephony.SmsCbLocation;
24 import android.telephony.SmsCbMessage;
26 import com.android.internal.telephony.gsm.SmsCbConstants;
75 intent.setAction(Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/compat/
TelephonyThreadsCompat.java 25 import android.provider.Telephony;
36 * This class contains static utility methods and variables extracted from Telephony and
39 * it synced with Telephony and SqliteWrapper.
51 return Telephony.Threads.getOrCreateThreadId(context, recipient);
57 // Below is code copied from Telephony and SqliteWrapper
78 * Copied from {@link Telephony.Threads#getOrCreateThreadId(Context, String)}
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
SyncMessageBatch.java 21 import android.provider.Telephony;
22 import android.provider.Telephony.Mms;
23 import android.provider.Telephony.Sms;
205 if (type == Telephony.Sms.MESSAGE_TYPE_FAILED ||
206 type == Telephony.Sms.MESSAGE_TYPE_OUTBOX ||
207 type == Telephony.Sms.MESSAGE_TYPE_QUEUED ||
208 (type == Telephony.Sms.MESSAGE_TYPE_SENT &&
209 status == Telephony.Sms.STATUS_FAILED)) {
InsertNewMessageAction.java 23 import android.provider.Telephony;
47 * the telephony db, but {@link SendMessageAction} is responsible for inserting MMS message into
48 * the telephony DB. The latter also does the actual sending of the message in the background.
306 // Insert message into telephony database sms message table
308 Telephony.Sms.CONTENT_URI,
313 Telephony.Sms.STATUS_COMPLETE,
314 Telephony.Sms.MESSAGE_TYPE_SENT, threadId);
341 + " inserted into telephony DB");
346 * Insert SMS messaging into our database and telephony db.
377 // Insert message into telephony database sms message tabl
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ApnPreference.java 23 import android.provider.Telephony;
118 Uri url = ContentUris.withAppendedId(Telephony.Carriers.CONTENT_URI, pos);
  /development/samples/devbytes/telephony/SmsSampleProject/app/src/main/java/com/example/android/smssample/receiver/
MessagingReceiver.java 21 import android.provider.Telephony.Sms.Intents;
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/
CdmaInboundSmsHandlerTest.java 17 package com.android.internal.telephony.cdma;
28 import android.provider.Telephony;
32 import com.android.internal.telephony.FakeSmsContentProvider;
33 import com.android.internal.telephony.InboundSmsHandler;
34 import com.android.internal.telephony.SmsStorageMonitor;
35 import com.android.internal.telephony.TelephonyTest;
36 import com.android.internal.telephony.cdma.sms.SmsEnvelope;
50 import static com.android.internal.telephony.TelephonyTestUtils.waitForMs;
66 private android.telephony.SmsMessage mSmsMessage;
144 Telephony.Sms.CONTENT_URI.getAuthority(), mContentProvider)
    [all...]
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastContentProvider.java 31 import android.provider.Telephony;
32 import android.telephony.CellBroadcastMessage;
118 orderBy = Telephony.CellBroadcasts.DEFAULT_SORT_ORDER;
221 Telephony.CellBroadcasts._ID + "=?",
260 cv.put(Telephony.CellBroadcasts.MESSAGE_READ, 1);
CellBroadcastListActivity.java 35 import android.provider.Telephony;
36 import android.telephony.CellBroadcastMessage;
146 Telephony.CellBroadcasts.QUERY_COLUMNS, null, null,
147 Telephony.CellBroadcasts.DELIVERY_TIME + " DESC");
203 Telephony.CellBroadcasts._ID)));
CellBroadcastReceiver.java 26 import android.provider.Telephony;
27 import android.telephony.ServiceState;
28 import android.telephony.cdma.CdmaSmsCbProgramData;
31 import com.android.internal.telephony.IccCardConstants;
32 import com.android.internal.telephony.TelephonyIntents;
33 import com.android.internal.telephony.cdma.sms.SmsEnvelope;
83 } else if (Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION.equals(action) ||
84 Telephony.Sms.Intents.SMS_CB_RECEIVED_ACTION.equals(action)) {
95 } else if (Telephony.Sms.Intents.SMS_SERVICE_CATEGORY_PROGRAM_DATA_RECEIVED_ACTION
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsSmsDatabaseHelper.java 17 package com.android.providers.telephony;
29 import android.provider.Telephony;
30 import android.provider.Telephony.Mms;
31 import android.provider.Telephony.Mms.Addr;
32 import android.provider.Telephony.Mms.Part;
33 import android.provider.Telephony.Mms.Rate;
34 import android.provider.Telephony.MmsSms;
35 import android.provider.Telephony.MmsSms.PendingMessages;
36 import android.provider.Telephony.Sms;
37 import android.provider.Telephony.Threads
    [all...]
MmsProvider.java 17 package com.android.providers.telephony;
37 import android.provider.Telephony;
38 import android.provider.Telephony.CanonicalAddressesColumns;
39 import android.provider.Telephony.Mms;
40 import android.provider.Telephony.Mms.Addr;
41 import android.provider.Telephony.Mms.Part;
42 import android.provider.Telephony.Mms.Rate;
43 import android.provider.Telephony.MmsSms;
44 import android.provider.Telephony.Threads;
412 finalValues.put(Telephony.Mms.CREATOR, callerPkg)
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GsmSmsDispatcherTest.java 17 package com.android.internal.telephony.gsm;
31 import android.provider.Telephony;
35 import com.android.internal.telephony.ISub;
36 import com.android.internal.telephony.ImsSMSDispatcher;
37 import com.android.internal.telephony.TelephonyTest;
38 import com.android.internal.telephony.TelephonyTestUtils;
47 private android.telephony.SmsMessage mSmsMessage;
102 Telephony.Sms.Intents.RESULT_SMS_HANDLED, null);

Completed in 702 milliseconds

12 3 4 5