/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/ |
D | BluetoothDiscoverableTimeoutReceiver.java | 40 PendingIntent pending = PendingIntent.getBroadcast( in setDiscoverableAlarm() local 45 if (pending != null) { in setDiscoverableAlarm() 47 alarmManager.cancel(pending); in setDiscoverableAlarm() 50 pending = PendingIntent.getBroadcast( in setDiscoverableAlarm() 53 alarmManager.set(AlarmManager.RTC_WAKEUP, alarmTime, pending); in setDiscoverableAlarm() 61 PendingIntent pending = PendingIntent.getBroadcast( in cancelDiscoverableAlarm() local 63 if (pending != null) { in cancelDiscoverableAlarm() 68 alarmManager.cancel(pending); in cancelDiscoverableAlarm()
|
/frameworks/base/core/java/android/content/ |
D | SyncStatusInfo.java | 43 public boolean pending; field in SyncStatusInfo 85 parcel.writeInt(pending ? 1 : 0); in writeToParcel() 115 pending = parcel.readInt() != 0; in SyncStatusInfo() 147 pending = other.pending; in SyncStatusInfo()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/ |
D | Chronograph.java | 80 List<Set<AlarmEntry>> pending = new ArrayList<Set<AlarmEntry>>(); in run() local 92 pending.add(entry.getValue()); in run() 102 for (Set<AlarmEntry> alarmEntries : pending) { in run()
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
D | SaveFragment.java | 146 public void setPending(boolean pending) { in setPending() argument 147 mSave.setVisibility(pending ? View.INVISIBLE : View.VISIBLE); in setPending() 148 mProgress.setVisibility(pending ? View.VISIBLE : View.GONE); in setPending()
|
D | BaseActivity.java | 450 void setPending(boolean pending) { in setPending() argument 453 save.setPending(pending); in setPending()
|
/frameworks/base/core/java/com/android/internal/os/ |
D | SamplingProfilerIntegration.java | 53 private static final AtomicBoolean pending = new AtomicBoolean(false); field in SamplingProfilerIntegration 133 if (pending.compareAndSet(false, true)) { in writeSnapshot() 139 pending.set(false); in writeSnapshot()
|
/frameworks/base/core/java/android/app/ |
D | LoaderManager.java | 403 LoaderInfo pending = mPendingLoader; in onLoadCanceled() local 404 if (pending != null) { in onLoadCanceled() 408 if (DEBUG) Log.v(TAG, " Switching to pending loader: " + pending); in onLoadCanceled() 412 installLoader(pending); in onLoadCanceled() 432 LoaderInfo pending = mPendingLoader; in onLoadComplete() local 433 if (pending != null) { in onLoadComplete() 437 if (DEBUG) Log.v(TAG, " Switching to pending loader: " + pending); in onLoadComplete() 441 installLoader(pending); in onLoadComplete()
|
D | ActivityTransitionCoordinator.java | 917 Runnable pending = mPendingTransition; in onTransitionStart() local 919 if (pending != null) { in onTransitionStart() 920 startTransition(pending); in onTransitionStart()
|
/frameworks/support/v4/java/android/support/v4/app/ |
D | LoaderManager.java | 396 LoaderInfo pending = mPendingLoader; in onLoadCanceled() local 397 if (pending != null) { in onLoadCanceled() 401 if (DEBUG) Log.v(TAG, " Switching to pending loader: " + pending); in onLoadCanceled() 405 installLoader(pending); in onLoadCanceled() 425 LoaderInfo pending = mPendingLoader; in onLoadComplete() local 426 if (pending != null) { in onLoadComplete() 430 if (DEBUG) Log.v(TAG, " Switching to pending loader: " + pending); in onLoadComplete() 434 installLoader(pending); in onLoadComplete()
|
/frameworks/base/tests/FixVibrateSetting/src/com/android/fixvibratesetting/ |
D | FixVibrateSetting.java | 113 PendingIntent pending = PendingIntent.getActivity(this, 0, intent, 0); in test() local 121 .setContentIntent(pending) in test()
|
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/ |
D | ExternalStorageProvider.java | 422 final LinkedList<File> pending = new LinkedList<File>(); in querySearchDocuments() local 423 pending.add(parent); in querySearchDocuments() 424 while (!pending.isEmpty() && result.getCount() < 24) { in querySearchDocuments() 425 final File file = pending.removeFirst(); in querySearchDocuments() 428 pending.add(child); in querySearchDocuments()
|
/frameworks/base/docs/html/training/notify-user/ |
D | expanded.jd | 94 defines a pending intent that should be fired when the user 112 // This sets the pending intent that should be fired when the user clicks the 139 their associated pending intents) that will appear in the notification's
|
/frameworks/base/docs/html/preview/features/ |
D | power-mgmt.jd | 37 …ef periods of time so that the system can perform app syncing and any other pending operations.</p> 54 <p>When the device exits Doze mode, it executes any jobs and syncs that are pending.</p> 94 state, allowing them to freely access the network and to execute any pending jobs and syncs. If the
|
/frameworks/base/core/jni/ |
D | android_net_LocalSocketImpl.cpp | 363 int pending; in socket_pending() local 364 int ret = ioctl(fd, TIOCOUTQ, &pending); in socket_pending() 375 return (jint)pending; in socket_pending()
|
/frameworks/base/docs/html/training/scheduling/ |
D | alarms.jd | 154 <li>A pending intent that fires when the alarm is triggered. When you set a second alarm 155 that uses the same pending intent, it replaces the original alarm.</li> 193 <li>{@link android.app.AlarmManager#ELAPSED_REALTIME}—Fires the pending intent based 198 fires the pending intent after the specified length of time has elapsed since device 201 <li>{@link android.app.AlarmManager#RTC}—Fires the pending intent 205 device to fire the pending intent at the specified time.</li>
|
/frameworks/base/docs/html/google/play/billing/v2/ |
D | billing_integrate.jd | 624 <h5>Using the pending intent</h5> 626 <p>How you use the pending intent depends on which version of Android a device is running. On 627 Android 1.6, you must use the pending intent to launch the checkout UI in its own separate task 628 instead of your application's activity stack. On Android 2.0 and higher, you can use the pending 664 <p class="caution"><strong>Important:</strong> You must launch the pending intent from an activity 667 pending intent. If you do either of these, the Android system will not attach the pending intent to 692 must assume that a purchase request is pending from the time you receive a <code>RESULT_OK</code> 694 transaction is pending, the Google Play checkout UI displays an "Authorizing purchase..." 700 <li>Add an {@link android.app.Activity} to your application that shows users the status of pending 707 message that says "Purchase pending" when your application receives a <code>RESULT_OK</code> [all …]
|
/frameworks/base/core/java/android/widget/ |
D | VideoView.java | 352 for (Pair<InputStream, MediaFormat> pending: mPendingSubtitleTracks) { in openVideo() 354 mMediaPlayer.addSubtitleSource(pending.first, pending.second); in openVideo()
|
/frameworks/base/services/appwidget/java/com/android/server/appwidget/ |
D | AppWidgetServiceImpl.java | 3893 final int pending = countPendingUpdates(updates); in restoreFinished() local 3895 Slog.i(TAG, "Provider " + provider + " pending: " + pending); in restoreFinished() 3897 if (pending > 0) { in restoreFinished() 3898 int[] oldIds = new int[pending]; in restoreFinished() 3899 int[] newIds = new int[pending]; in restoreFinished() 3927 final int pending = countPendingUpdates(updates); in restoreFinished() local 3929 Slog.i(TAG, "Host " + host + " pending: " + pending); in restoreFinished() 3931 if (pending > 0) { in restoreFinished() 3932 int[] oldIds = new int[pending]; in restoreFinished() 3933 int[] newIds = new int[pending]; in restoreFinished() [all …]
|
/frameworks/base/docs/html/design/patterns/ |
D | notifications_k.jd | 173 pending, avoid creating 177 notifications of a particular kind are pending.</p> 188 sense of which notifications are pending and if they are interesting enough to 200 what kinds of notifications are currently pending.</p>
|
/frameworks/base/docs/html/tools/help/ |
D | sdk-manager.jd | 48 to the checkbox to indicate the pending update. An update icon 50 indicate pending removals.</p>
|
/frameworks/base/docs/html/training/wearables/apps/ |
D | always-on.jd | 253 <p>The alarm manager launches a pending intent that updates the screen and schedules the next alarm. 254 The following example shows how to declare the alarm manager and the pending intent in the 282 <p>When the alarm triggers and launches the pending intent, update the screen and schedule the next
|
/frameworks/base/docs/html/guide/topics/appwidgets/ |
D | index.jd | 1122 setOnClickFillInIntent()}. This entails setting up up a pending intent template 1137 android.appwidget.AppWidgetProvider} subclass) creates a pending intent that has 1157 <h5>Setting up the pending intent template</h5> 1160 android.appwidget.AppWidgetProvider} subclass) sets up a pending intent. 1161 Individuals items of a collection cannot set up their own pending intents. 1162 Instead, the collection as a whole sets up a pending intent template, and the 1216 … // It does this by setting up a pending intent template. Individuals items of a collection 1217 // cannot set up their own pending intents. Instead, the collection as a whole sets 1218 // up a pending intent template, and the individual items set a fillInIntent 1288 // Next, set a fill-intent, which will be used to fill in the pending intent template
|
/frameworks/base/docs/html/training/multiple-threads/ |
D | run-code.jd | 133 any pending interrupt requests before attempting an operation :
|
/frameworks/base/docs/html/training/location/ |
D | geofencing.jd | 188 // We use FLAG_UPDATE_CURRENT so that we get the same pending intent back when 297 // This is the same pending intent that was used in addGeofences().
|
/frameworks/base/docs/html/training/auto/messaging/ |
D | index.jd | 167 pending intent. The app should discard the {@link 431 method and provide a pending intent to pass that user action back to your app. The 464 pending intents you created in the previous step.</p> 502 <dd>The pending intent object you created in
|