/packages/apps/Mms/src/com/android/mms/transaction/ |
PushReceiver.java | 20 import static android.provider.Telephony.Sms.Intents.WAP_PUSH_RECEIVED_ACTION; 52 * Receives Intent.WAP_PUSH_RECEIVED_ACTION intents and starts the 67 protected Void doInBackground(Intent... intents) { 68 Intent intent = intents[0];
|
SimFullReceiver.java | 41 Telephony.Sms.Intents.SIM_FULL_ACTION.equals(intent.getAction())) {
|
/packages/apps/Stk/src/com/android/stk/ |
StkCmdReceiver.java | 27 * Receiver class to get STK intents, broadcasted by telephony layer.
|
/frameworks/base/docs/html/guide/topics/connectivity/ |
wifip2p.jd | 12 <li><a href="#creating-br">Creating a Broadcast Receiver for Wi-Fi Direct Intents</a></li> 53 <li>Intents that notify you of specific events detected by the Wi-Fi Direct framework, 171 <p>The Wi-Fi Direct APIs define intents that are broadcast when certain Wi-Fi Direct events happen, 173 to receive these intents in your application by <a href="#creating-br">creating a broadcast 174 receiver</a> that handles these intents:</p> 176 <p class="table-caption"><strong>Table 3.</strong> Wi-Fi Direct Intents</p> 207 <h2 id="creating-br">Creating a Broadcast Receiver for Wi-Fi Direct Intents</h2> 209 <p>A broadcast receiver allows you to receive intents broadcast by the Android system, 211 for creating a broadcast receiver to handle Wi-Fi Direct intents are as follows:</p> 221 <li>In the broadcast receiver, check for the intents that you are interested i [all...] |
/frameworks/base/docs/html/training/notify-user/ |
expanded.jd | 29 <a href="{@docRoot}guide/components/intents-filters.html"> 30 Intents and Intent Filters 141 their associated pending intents) that will appear in the notification's
|
/frameworks/base/test-runner/src/android/test/ |
IsolatedContext.java | 65 /** Returns the list of intents that were broadcast since the last call to this method. */ 67 List<Intent> intents = mBroadcastIntents; local 69 return intents;
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
SmsStorageMonitor.java | 27 import android.provider.Telephony.Sms.Intents; 79 // Register for device storage intents. Use these to notify the RIL 140 Intent intent = new Intent(Intents.SIM_FULL_ACTION);
|
TelephonyTester.java | 29 * Telephony tester receives the following intents where {name} is the phone name
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
CellBroadcastReceiver.java | 68 } else if (Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION.equals(action) || 69 Telephony.Sms.Intents.SMS_CB_RECEIVED_ACTION.equals(action)) { 80 } else if (Telephony.Sms.Intents.SMS_SERVICE_CATEGORY_PROGRAM_DATA_RECEIVED_ACTION
|
/packages/apps/Contacts/src/com/android/contacts/activities/ |
ContactEditorAccountsChangedActivity.java | 22 import android.provider.ContactsContract.Intents; 44 * {@link #Intents.Insert.ACCOUNT} that contains the {@link AccountWithDataSet} to create 188 intent.putExtra(Intents.Insert.ACCOUNT, account);
|
/frameworks/base/docs/html/google/play/billing/v2/ |
api.jd | 16 <li><a href="#billing-response">Broadcast intents</a></li> 32 asynchronous and uses service messages sent as broadcast intents, so 104 Play application in the form of asynchronous broadcast intents. Your application 244 <p>The asynchronous response messages are sent in the form of individual broadcast intents and 291 href="{@docRoot}google/play/billing/v2/billing_reference.html#billing-intents">In-app Billing 292 Broadcast Intents</a>.</p> 297 each <code>sendBillingRequest()</code> method are shown in <strong>bold</strong>, broadcast intents 299 broadcast intents that are sent for every request.</p> 348 each <code>sendBillingRequest()</code> method are shown in <strong>bold</strong>, broadcast intents 350 broadcast intents that are sent for every request.</p [all...] |
billing_reference.jd | 12 <li><a href="#billing-intents">Broadcast Intents</a></li> 278 <h3 id="billing-intents">In-app billing broadcast intents</h3> 280 <p>The following section describes the In-app Billing broadcast intents that are sent by the Google 281 Play application. These broadcast intents inform your application about In-app Billing actions 283 receive these broadcast intents, such as the <code>BillingReceiver</code> that's shown in the in-app 343 <p class="note"><strong>Note:</strong> Your application should map the broadcast intents and extras 410 <!--<h2 id="other-intents">Other Intents</h2> [all...] |
/frameworks/base/docs/html/sdk/api_diff/5/ |
user_comments_for_4_to_5.xml | [all...] |
/packages/apps/CellBroadcastReceiver/tests/src/com/android/cellbroadcastreceiver/tests/ |
SendTestMessages.java | 21 import android.provider.Telephony.Sms.Intents; 426 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION); 432 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION); 439 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION); 446 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION); 453 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION); 463 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION); 470 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION); 477 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION); 485 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION) [all...] |
/frameworks/base/core/java/android/content/ |
ContextWrapper.java | 311 public void startActivities(Intent[] intents) { 312 mBase.startActivities(intents); 316 public void startActivities(Intent[] intents, Bundle options) { 317 mBase.startActivities(intents, options); 322 public void startActivitiesAsUser(Intent[] intents, Bundle options, UserHandle userHandle) { 323 mBase.startActivitiesAsUser(intents, options, userHandle);
|
/frameworks/base/docs/html/training/run-background-service/ |
report-status.jd | 18 <a href="{@docRoot}guide/components/intents-filters.html">Intents and Intent Filters</a> 118 * Handle Intents here.
|
/developers/samples/android/connectivity/sync/BasicSyncAdapter/BasicSyncAdapter/src/main/java/com/example/android/network/sync/basicsyncadapter/ |
SyncService.java | 26 * <p>This service is invoked in response to Intents with action android.content.SyncAdapter, and
|
/development/apps/BluetoothDebug/src/com/android/bluetoothdebug/ |
DebugReceiver.java | 32 * Prints Bluetooth intents to logcat. For example:
|
/development/samples/Spinner/ |
AndroidManifest.xml | 46 This activity responds to MAIN and LAUNCHER intents
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowRemoteViews.java | 18 * Shadow for {@code RemoteViews} that simulates its implementation. Supports pending intents for events, changing
|
/frameworks/base/core/java/android/widget/ |
QuickContactBadge.java | 33 import android.provider.ContactsContract.Intents; 196 {@link android.provider.ContactsContract.Intents.Insert} 237 * {@link android.provider.ContactsContract.Intents.Insert} 360 final Intent intent = new Intent(Intents.SHOW_OR_CREATE_CONTACT, createUri);
|
/frameworks/base/docs/html/training/sharing/ |
send.jd | 25 <li><a href="{@docRoot}guide/components/intents-filters.html">Intents and 41 <p>Sending and receiving data between applications with intents is most commonly used for social 42 sharing of content. Intents allow users to share information quickly and easily, using their
|
/frameworks/base/packages/VpnDialogs/res/values-ca/ |
strings.xml | 19 <string name="prompt" msgid="8359175999006833462">"<xliff:g id="APP">%s</xliff:g> intents de crear una connexió VPN."</string>
|
/packages/apps/Exchange/exchange2/src/com/android/exchange/service/ |
ExchangeBroadcastProcessorService.java | 30 * The service that really handles broadcast intents on a worker thread.
|
/packages/apps/Settings/src/com/android/settings/ |
DebugIntentSender.java | 31 * A simple activity that provides a UI for sending intents
|