Searched refs:pending (Results 1 - 16 of 16) sorted by relevance

/frameworks/rs/cpu_ref/linkloader/utils/
H A Dtraits.h26 char pending; member in struct:TypeTraits::AlignmentTest
/frameworks/base/core/java/android/content/
H A DSyncStatusInfo.java43 public boolean pending; field in class:SyncStatusInfo
85 parcel.writeInt(pending ? 1 : 0);
115 pending = parcel.readInt() != 0;
147 pending = other.pending;
/frameworks/base/core/java/com/android/internal/os/
H A DSamplingProfilerIntegration.java53 private static final AtomicBoolean pending = new AtomicBoolean(false); field in class:SamplingProfilerIntegration
133 if (pending.compareAndSet(false, true)) {
139 pending.set(false);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DSaveFragment.java146 public void setPending(boolean pending) { argument
147 mSave.setVisibility(pending ? View.INVISIBLE : View.VISIBLE);
148 mProgress.setVisibility(pending ? View.VISIBLE : View.GONE);
H A DDocumentsActivity.java693 public void setPending(boolean pending) { argument
696 save.setPending(pending);
/frameworks/base/tests/FixVibrateSetting/src/com/android/fixvibratesetting/
H A DFixVibrateSetting.java115 PendingIntent pending = PendingIntent.getActivity(this, 0, intent, 0);
116 n.setLatestEventInfo(this, "Test notification", "Test notification", pending);
/frameworks/base/core/java/android/app/
H A DLoaderManager.java403 LoaderInfo pending = mPendingLoader;
404 if (pending != null) {
405 // There is a new request pending and we were just
408 if (DEBUG) Log.v(TAG, " Switching to pending loader: " + pending);
412 installLoader(pending);
432 LoaderInfo pending = mPendingLoader;
433 if (pending != null) {
434 // There is a new request pending and we were just
437 if (DEBUG) Log.v(TAG, " Switching to pending loade
[all...]
H A DActivityTransitionCoordinator.java803 * Cancels any pending transitions and returns true if there is a transition is in
901 Runnable pending = mPendingTransition;
903 if (pending != null) {
904 startTransition(pending);
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DExternalStorageProvider.java469 final LinkedList<File> pending = new LinkedList<File>();
470 pending.add(parent);
471 while (!pending.isEmpty() && result.getCount() < 24) {
472 final File file = pending.removeFirst();
475 pending.add(child);
/frameworks/support/v4/java/android/support/v4/app/
H A DLoaderManager.java376 LoaderInfo pending = mPendingLoader;
377 if (pending != null) {
378 // There is a new request pending and we were just
381 if (DEBUG) Log.v(TAG, " Switching to pending loader: " + pending);
385 installLoader(pending);
627 if (DEBUG) Log.v(TAG, " Removing pending loader: " + info.mPendingLoader);
631 if (DEBUG) Log.v(TAG, " Enqueuing as new pending loader");
/frameworks/base/core/java/android/widget/
H A DVideoView.java358 for (Pair<InputStream, MediaFormat> pending: mPendingSubtitleTracks) {
360 mMediaPlayer.addSubtitleSource(pending.first, pending.second);
H A DSearchView.java1565 PendingIntent pending = PendingIntent.getActivity(getContext(), 0, queryIntent,
1568 // Now set up the bundle that will be inserted into the pending intent
1609 voiceIntent.putExtra(RecognizerIntent.EXTRA_RESULTS_PENDINGINTENT, pending);
/frameworks/base/core/jni/
H A Dandroid_net_LocalSocketImpl.cpp360 int pending; local
361 int ret = ioctl(fd, TIOCOUTQ, &pending);
366 //ALOGD("socket_pending, ioctl ret:%d, pending:%d", ret, pending);
372 return (jint)pending;
570 // Add any pending outbound file descriptors to the message
700 // A return of -1 above means an exception is pending
726 // A return of -1 above means an exception is pending
762 // A return of -1 above means an exception is pending
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
H A DAppWidgetServiceImpl.java3777 final int pending = countPendingUpdates(updates);
3779 Slog.i(TAG, "Provider " + provider + " pending: " + pending);
3781 if (pending > 0) {
3782 int[] oldIds = new int[pending];
3783 int[] newIds = new int[pending];
3811 final int pending = countPendingUpdates(updates);
3813 Slog.i(TAG, "Host " + host + " pending: " + pending);
3815 if (pending >
[all...]
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncStorageEngine.java170 // Keep around for sake up updating from pending.bin to pending.xml
197 * @return true if the two pending ops are the same.
467 * This file contains the pending sync operations. It is a binary file,
498 mPendingFile = new AtomicFile(new File(syncDir, "pending.xml"));
1091 status.pending = true;
1098 * Remove from list of pending operations. If successful, search through list for matching
1099 * authorities. If there are no more pending syncs for the same target,
1133 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "no more pending!");
1135 status.pending
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSearchView.java1471 PendingIntent pending = PendingIntent.getActivity(getContext(), 0, queryIntent,
1474 // Now set up the bundle that will be inserted into the pending intent
1517 voiceIntent.putExtra(RecognizerIntent.EXTRA_RESULTS_PENDINGINTENT, pending);

Completed in 448 milliseconds