HomeSort by relevance Sort by last modified time
    Searched defs:mMainHandler (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/sync/test/android/javatests/src/org/chromium/sync/test/util/
MockAccountManager.java 85 private final Handler mMainHandler;
94 mMainHandler = new Handler(mContext.getMainLooper());
487 return mHandler == null ? mMainHandler : mHandler;
  /packages/apps/Camera2/src/com/android/camera/util/
QuickActivity.java 56 private Handler mMainHandler;
99 mMainHandler = new Handler(getMainLooper());
119 mMainHandler.removeCallbacks(mOnResumeTasks);
121 mMainHandler.postDelayed(mOnResumeTasks, ON_RESUME_DELAY_MILLIS);
136 mMainHandler.removeCallbacks(mOnResumeTasks);
  /packages/apps/Camera2/src/com/android/camera/session/
CaptureSessionManagerImpl.java 336 private final Handler mMainHandler = new Handler(Looper.getMainLooper());
425 mMainHandler.post(new Runnable() {
442 mMainHandler.post(new Runnable() {
459 mMainHandler.post(new Runnable() {
476 mMainHandler.post(new Runnable() {
493 mMainHandler.post(new Runnable() {
510 mMainHandler.post(new Runnable() {
539 mMainHandler.post(new Runnable() {
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionEngine.java 112 private Handler mMainHandler;
123 mMainHandler = new Handler() {
331 mMainHandler.sendMessage(mMainHandler.obtainMessage(MESSAGE_DATA_CURSOR, dataCursor));
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AlbumDataLoader.java 67 private final Handler mMainHandler;
87 mMainHandler = new SynchronizedHandler(context.getGLRoot()) {
224 mMainHandler.sendMessage(
225 mMainHandler.obtainMessage(MSG_RUN_OBJECT, task));
347 mMainHandler.sendEmptyMessage(loading ? MSG_LOAD_START : MSG_LOAD_FINISH);
AlbumSetDataLoader.java 73 private final Handler mMainHandler;
87 mMainHandler = new SynchronizedHandler(activity.getGLRoot()) {
315 mMainHandler.sendMessage(
316 mMainHandler.obtainMessage(MSG_RUN_OBJECT, task));
335 mMainHandler.sendEmptyMessage(loading ? MSG_LOAD_START : MSG_LOAD_FINISH);
PhotoDataAdapter.java 140 private final Handler mMainHandler;
189 mMainHandler = new SynchronizedHandler(activity.getGLRoot()) {
488 mMainHandler.sendEmptyMessage(MSG_UPDATE_IMAGE_REQUESTS);
863 mMainHandler.sendMessage(
864 mMainHandler.obtainMessage(MSG_RUN_OBJECT, this));
885 mMainHandler.sendMessage(
886 mMainHandler.obtainMessage(MSG_RUN_OBJECT, this));
914 mMainHandler.sendMessage(
915 mMainHandler.obtainMessage(MSG_RUN_OBJECT, task));
    [all...]
  /frameworks/base/core/java/android/accounts/
AccountManager.java 237 private final Handler mMainHandler;
255 mMainHandler = new Handler(mContext.getMainLooper());
264 mMainHandler = handler;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSFooter.java 53 private final Handler mMainHandler;
66 mMainHandler = new Handler();
127 mMainHandler.post(mUpdateDisplayState);
  /packages/apps/Camera2/src/com/android/camera/
CaptureModule.java 239 private Handler mMainHandler;
291 mMainHandler = new Handler(activity.getMainLooper());
407 mMainHandler.post(new Runnable() {
556 mMainHandler.removeCallbacksAndMessages(null);
722 mMainHandler.removeCallbacks(mHideAutoFocusTargetRunnable);
724 mMainHandler.postDelayed(new Runnable() {
727 mMainHandler.post(mHideAutoFocusTargetRunnable);
772 mMainHandler.removeCallbacks(mHideAutoFocusTargetRunnable);
773 mMainHandler.post(new Runnable() {
785 mMainHandler.post(new Runnable()
    [all...]
CameraActivity.java 229 private Handler mMainHandler;
    [all...]
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/v1/
TestingCamera2.java 113 Handler mMainHandler;
173 mMainHandler = new Handler();
176 mCameraOps = CameraOps.create(this, mCameraOpsListener, mMainHandler);
440 if (mMainHandler != null) {
441 mMainHandler.post (new Runnable() {
  /packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java 153 private Handler mMainHandler;
158 mMainHandler = new Handler(Looper.getMainLooper());
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ActionModeHandler.java 79 private final Handler mMainHandler;
130 mMainHandler = new Handler(activity.getMainLooper());
412 mMainHandler.post(new Runnable() {
451 mMainHandler.post(new Runnable() {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
ApplicationsState.java 308 private final MainHandler mMainHandler = new MainHandler();
530 if (!mMainHandler.hasMessages(MainHandler.MSG_PACKAGE_LIST_CHANGED)) {
531 mMainHandler.sendEmptyMessage(MainHandler.MSG_PACKAGE_LIST_CHANGED);
552 if (!mMainHandler.hasMessages(MainHandler.MSG_PACKAGE_LIST_CHANGED)) {
553 mMainHandler.sendEmptyMessage(MainHandler.MSG_PACKAGE_LIST_CHANGED);
629 Message msg = mMainHandler.obtainMessage(
631 mMainHandler.sendMessage(msg);
662 Message m = mMainHandler.obtainMessage(
664 mMainHandler.sendMessage(m);
700 Message m = mMainHandler.obtainMessage
    [all...]
  /packages/apps/Camera/src/com/android/camera/
PanoramaModule.java 149 private Handler mMainHandler;
288 mMainHandler = new Handler() {
440 mMainHandler.removeMessages(MSG_CONFIG_MOSAIC_PREVIEW);
441 mMainHandler.obtainMessage(MSG_CONFIG_MOSAIC_PREVIEW, w, h).sendToTarget();
481 mMainHandler.sendEmptyMessage(MSG_RESET_TO_PREVIEW);
604 mMainHandler.sendMessage(mMainHandler.obtainMessage(
607 mMainHandler.sendMessage(mMainHandler.obtainMessage(
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
PanoramaActivity.java 161 private Handler mMainHandler;
298 mMainHandler = new Handler() {
628 mMainHandler.sendMessage(mMainHandler.obtainMessage(
631 mMainHandler.sendMessage(mMainHandler.obtainMessage(
    [all...]
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
AccessibilityManagerService.java 183 private final MainHandler mMainHandler;
234 mMainHandler = new MainHandler(mContext.getMainLooper());
237 new AccessibilityContentObserver(mMainHandler).register(
429 mMainHandler.obtainMessage(MainHandler.MSG_SEND_ACCESSIBILITY_EVENT_TO_INPUT_FILTER,
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
ApplicationsState.java 410 final MainHandler mMainHandler = new MainHandler();
596 if (!mMainHandler.hasMessages(MainHandler.MSG_REBUILD_COMPLETE, this)) {
597 Message msg = mMainHandler.obtainMessage(
599 mMainHandler.sendMessage(msg);
782 if (!mMainHandler.hasMessages(MainHandler.MSG_PACKAGE_LIST_CHANGED)) {
783 mMainHandler.sendEmptyMessage(MainHandler.MSG_PACKAGE_LIST_CHANGED);
814 if (!mMainHandler.hasMessages(MainHandler.MSG_PACKAGE_LIST_CHANGED)) {
815 mMainHandler.sendEmptyMessage(MainHandler.MSG_PACKAGE_LIST_CHANGED);
    [all...]
  /packages/apps/FMRadio/src/com/android/fmradio/views/
FmScroller.java 99 private Handler mMainHandler;
198 mMainHandler = new Handler(Looper.getMainLooper());
220 mMainHandler.removeCallbacks(null);
221 mMainHandler.postDelayed(new Runnable() {
    [all...]

Completed in 345 milliseconds