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

/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.java174 public void setPending(boolean pending) { argument
175 mSave.setVisibility(pending ? View.INVISIBLE : View.VISIBLE);
176 mProgress.setVisibility(pending ? View.VISIBLE : View.GONE);
H A DBaseActivity.java557 public void setPending(boolean pending) { argument
560 save.setPending(pending);

Completed in 743 milliseconds