HomeSort by relevance Sort by last modified time
    Searched refs:mPendingUpdate (Results 1 - 5 of 5) sorted by null

  /frameworks/base/services/core/java/com/android/server/location/
GeofenceManager.java 111 private boolean mPendingUpdate;
230 if (!mPendingUpdate) {
231 mPendingUpdate = true;
277 mPendingUpdate = false;
421 if (mPendingUpdate) {
424 mPendingUpdate = true;
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppNotification.java 104 private int mPendingUpdate = 0;
161 mPendingUpdate++;
162 if (mPendingUpdate > 1) {
177 // 2. Update thread will clear mPendingUpdate.
186 if (mPendingUpdate > 0 && mUpdateNotificationThread == null) {
192 } else if (mPendingUpdate > 0) {
216 mPendingUpdate = 0;
BluetoothOppService.java 111 private boolean mPendingUpdate;
435 mPendingUpdate = true;
469 if (V) Log.v(TAG, "pendingUpdate is " + mPendingUpdate + " keepUpdateThread is "
472 if (!mPendingUpdate) {
476 mPendingUpdate = false;
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/ui/list/
ScheduleRowAdapter.java 56 private final Set<ScheduleRow> mPendingUpdate = new ArraySet<>();
352 mPendingUpdate.add(row);
359 for (ScheduleRow row : mPendingUpdate) {
365 mPendingUpdate.clear();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
LintPreferencePage.java 417 if (mPendingUpdate != null) {
420 getShell().getDisplay().timerExec(-1, mPendingUpdate);
422 mPendingUpdate = null;
426 private Runnable mPendingUpdate;
429 if (mPendingUpdate == null) {
430 mPendingUpdate = new Runnable() {
433 mPendingUpdate = null;
438 getShell().getDisplay().timerExec(250 /*ms*/, mPendingUpdate);

Completed in 268 milliseconds