/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/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()
|
/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 | 901 Runnable pending = mPendingTransition; in onTransitionStart() local 903 if (pending != null) { in onTransitionStart() 904 startTransition(pending); in onTransitionStart()
|
/frameworks/base/tests/FixVibrateSetting/src/com/android/fixvibratesetting/ |
D | FixVibrateSetting.java | 115 PendingIntent pending = PendingIntent.getActivity(this, 0, intent, 0); in test() local 116 n.setLatestEventInfo(this, "Test notification", "Test notification", pending); in test()
|
/frameworks/rs/cpu_ref/linkloader/utils/ |
D | traits.h | 26 char pending; member
|
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/ |
D | ExternalStorageProvider.java | 469 final LinkedList<File> pending = new LinkedList<File>(); in querySearchDocuments() local 470 pending.add(parent); in querySearchDocuments() 471 while (!pending.isEmpty() && result.getCount() < 24) { in querySearchDocuments() 472 final File file = pending.removeFirst(); in querySearchDocuments() 475 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/support/v4/java/android/support/v4/app/ |
D | LoaderManager.java | 376 LoaderInfo pending = mPendingLoader; in onLoadComplete() local 377 if (pending != null) { in onLoadComplete() 381 if (DEBUG) Log.v(TAG, " Switching to pending loader: " + pending); in onLoadComplete() 385 installLoader(pending); in onLoadComplete()
|
/frameworks/base/core/jni/ |
D | android_net_LocalSocketImpl.cpp | 360 int pending; in socket_pending() local 361 int ret = ioctl(fd, TIOCOUTQ, &pending); in socket_pending() 372 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 | 358 for (Pair<InputStream, MediaFormat> pending: mPendingSubtitleTracks) { in openVideo() 360 mMediaPlayer.addSubtitleSource(pending.first, pending.second); in openVideo()
|
/frameworks/base/services/appwidget/java/com/android/server/appwidget/ |
D | AppWidgetServiceImpl.java | 3777 final int pending = countPendingUpdates(updates); in restoreFinished() local 3779 Slog.i(TAG, "Provider " + provider + " pending: " + pending); in restoreFinished() 3781 if (pending > 0) { in restoreFinished() 3782 int[] oldIds = new int[pending]; in restoreFinished() 3783 int[] newIds = new int[pending]; in restoreFinished() 3811 final int pending = countPendingUpdates(updates); in restoreFinished() local 3813 Slog.i(TAG, "Host " + host + " pending: " + pending); in restoreFinished() 3815 if (pending > 0) { in restoreFinished() 3816 int[] oldIds = new int[pending]; in restoreFinished() 3817 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>
|
D | notifications.jd | 497 <p>If a notification of a certain type is already pending when your app tries to send a new 503 notifications of a particular kind are pending.</p> 523 notifications are pending and if they are interesting enough to read in 547 notifications are currently pending.</p>
|
/frameworks/base/docs/html/google/gcm/ |
D | ccs.jd | 460 that haven't received one of these responses are considered pending. If the pending 462 and wait for CCS to acknowledge some of the existing pending messages as illustrated in 474 to maintain a constant flow of incoming messages. The aforementioned pending message limit doesn't 475 apply to these ACKs. Even if the pending message count reaches 100, the 3rd-party app server 481 to resend the upstream message before ACKing it again. Similarly, all pending messages for which an
|
D | server.jd | 406 is established, GCM will deliver all pending messages to the device, regardless of 430 available tokens, new messages are buffered in a pending queue until 434 number of messages within a short period of time. Messages in the pending
|
/frameworks/base/docs/html/training/multiple-threads/ |
D | run-code.jd | 133 any pending interrupt requests before attempting an operation :
|
/frameworks/base/docs/html/guide/topics/appwidgets/ |
D | index.jd | 1195 setOnClickFillInIntent()}. This entails setting up up a pending intent template 1210 android.appwidget.AppWidgetProvider} subclass) creates a pending intent that has 1230 <h5>Setting up the pending intent template</h5> 1233 android.appwidget.AppWidgetProvider} subclass) sets up a pending intent. 1234 Individuals items of a collection cannot set up their own pending intents. 1235 Instead, the collection as a whole sets up a pending intent template, and the 1289 … // It does this by setting up a pending intent template. Individuals items of a collection 1290 // cannot set up their own pending intents. Instead, the collection as a whole sets 1291 // up a pending intent template, and the individual items set a fillInIntent 1361 // Next, set a fill-intent, which will be used to fill in the pending intent template
|
/frameworks/base/services/core/java/com/android/server/content/ |
D | SyncStorageEngine.java | 1091 status.pending = true; in insertIntoPending() 1135 status.pending = false; in deleteFromPending() 1533 if (cur.pending) { in isSyncPending() 2316 st.pending = getIntColumn(c, "pending") != 0; in readAndDeleteLegacyAccountInfoLocked() 2375 status.pending = false; in readStatusLocked()
|
/frameworks/base/docs/html/design/handhelds/ |
D | index.jd | 77 <p>Displays pending notifications on the left and status, such as time, battery level, or signal
|
/frameworks/base/docs/html/training/volley/ |
D | simple.jd | 122 practice is that you can cancel all of your pending requests in your activity's
|
/frameworks/base/docs/html/training/efficient-downloads/ |
D | efficient-network-access.jd | 118 <p>With that in mind it's important to bundle your data transfers and create a pending transfer que… 122 …ed updates and regular prefetching should initiate the execution of your pending transfer queue.</…
|