Home
last modified time | relevance | path

Searched refs:mBackgroundThread (Results 1 – 3 of 3) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DCallLogProvider.java159 private HandlerThread mBackgroundThread; field in CallLogProvider
191 mBackgroundThread = new HandlerThread(getProviderName() + "Worker", in onCreate()
193 mBackgroundThread.start(); in onCreate()
194 mBackgroundHandler = new Handler(mBackgroundThread.getLooper()) { in onCreate()
DContactsProvider2.java1530 private HandlerThread mBackgroundThread; field in ContactsProvider2
1599 mBackgroundThread = new HandlerThread("ContactsProviderWorker", in initialize()
1601 mBackgroundThread.start(); in initialize()
1602 mBackgroundHandler = new Handler(mBackgroundThread.getLooper()) { in initialize()
/packages/apps/Settings/src/com/android/settings/applications/
DRunningState.java224 final HandlerThread mBackgroundThread; field in RunningState
787 mBackgroundThread = new HandlerThread("RunningState:Background"); in RunningState()
788 mBackgroundThread.start(); in RunningState()
789 mBackgroundHandler = new BackgroundHandler(mBackgroundThread.getLooper()); in RunningState()