Searched defs:pending (Results 1 - 8 of 8) sorted by relevance

/frameworks/rs/cpu_ref/linkloader/utils/
H A Dtraits.h26 char pending; member in struct:TypeTraits::AlignmentTest
/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/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/packages/DocumentsUI/src/com/android/documentsui/
H A DSaveFragment.java147 public void setPending(boolean pending) { argument
148 mSave.setVisibility(pending ? View.INVISIBLE : View.VISIBLE);
149 mProgress.setVisibility(pending ? View.VISIBLE : View.GONE);
H A DDocumentsActivity.java666 public void setPending(boolean pending) { argument
669 save.setPending(pending);
/frameworks/base/core/jni/
H A Dandroid_net_LocalSocketImpl.cpp365 int pending; local
366 int ret = ioctl(fd, TIOCOUTQ, &pending);
371 //ALOGD("socket_pending, ioctl ret:%d, pending:%d", ret, pending);
377 return (jint)pending;
574 // Add any pending outbound file descriptors to the message
704 // A return of -1 above means an exception is pending
730 // A return of -1 above means an exception is pending
766 // A return of -1 above means an exception is pending
/frameworks/base/services/java/com/android/server/am/
H A DActivityStack.java726 Slog.e(TAG, "Trying to pause when pause is already pending for "
755 if (DEBUG_PAUSE) Slog.v(TAG, "Enqueueing pending pause: " + prev);
873 if (DEBUG_PAUSE) Slog.v(TAG, "Enqueueing pending stop: " + prev);
896 if (DEBUG_PAUSE) Slog.v(TAG, "To many pending stops, forcing idle");
1275 // Make sure we have executed any pending transitions, since there
1317 // Make sure we have executed any pending transitions, since there
1573 // Deliver all pending results.
2437 // to the pending list so we can correctly update the clients.
2527 if (localLOGV) Slog.v(TAG, "Enqueueing pending finish: " + r);
2639 // Make sure this record is no longer in the pending finishe
3421 getTasksLocked(IThumbnailReceiver receiver, PendingThumbnailsRecord pending, List<RunningTaskInfo> list) argument
[all...]
H A DActivityStackSupervisor.java178 * pending thumbnail receiver. */
541 PendingThumbnailsRecord pending, List<RunningTaskInfo> list) {
551 final ActivityRecord ar = stack.getTasksLocked(receiver, pending, stackTaskList);
540 getTasksLocked(int maxNum, IThumbnailReceiver receiver, PendingThumbnailsRecord pending, List<RunningTaskInfo> list) argument

Completed in 629 milliseconds