Home
last modified time | relevance | path

Searched refs:thread (Results 1 – 10 of 10) sorted by relevance

/packages/apps/Gallery/src/com/android/camera/
DBitmapManager.java137 Thread thread = Thread.currentThread(); in decodeFileDescriptor() local
138 if (!canThreadDecoding(thread)) { in decodeFileDescriptor()
139 Log.d(TAG, "Thread " + thread + " is not allowed to decode."); in decodeFileDescriptor()
143 setDecodingOptions(thread, options); in decodeFileDescriptor()
146 removeDecodingOptions(thread); in decodeFileDescriptor()
/packages/apps/Camera/src/com/android/camera/
DBitmapManager.java137 Thread thread = Thread.currentThread(); in decodeFileDescriptor() local
138 if (!canThreadDecoding(thread)) { in decodeFileDescriptor()
139 Log.d(TAG, "Thread " + thread + " is not allowed to decode."); in decodeFileDescriptor()
143 setDecodingOptions(thread, options); in decodeFileDescriptor()
146 removeDecodingOptions(thread); in decodeFileDescriptor()
/packages/apps/Email/src/com/android/email/service/
DEmailServiceProxy.java104 Thread thread = new Thread(mRunnable); in runTask() local
105 thread.start(); in runTask()
107 thread.join(); in runTask()
/packages/apps/GlobalSearch/src/com/android/globalsearch/
DSuggestionProvider.java67 final Thread thread = new SuggestionThread(
69 return thread;
/packages/apps/Phone/src/com/android/phone/
DSimContacts.java282 ImportAllSimContactsThread thread = new ImportAllSimContactsThread(); in onOptionsItemSelected() local
289 getString(R.string.cancel), thread); in onOptionsItemSelected()
294 thread.start(); in onOptionsItemSelected()
/packages/apps/Calendar/src/com/android/calendar/
DAlertService.java458 HandlerThread thread = new HandlerThread("AlertService", in onCreate() local
460 thread.start(); in onCreate()
462 mServiceLooper = thread.getLooper(); in onCreate()
/packages/apps/Mms/src/com/android/mms/transaction/
DSmsReceiverService.java110 HandlerThread thread = new HandlerThread(TAG, Process.THREAD_PRIORITY_BACKGROUND); in onCreate() local
111 thread.start(); in onCreate()
113 mServiceLooper = thread.getLooper(); in onCreate()
DTransactionService.java162 HandlerThread thread = new HandlerThread("TransactionService"); in onCreate() local
163 thread.start(); in onCreate()
165 mServiceLooper = thread.getLooper(); in onCreate()
/packages/apps/Email/src/com/android/exchange/
DSyncManager.java987 Thread thread = svc.mThread; in reloadFolderList() local
988 thread.setName(thread.getName() + " (Stopped)"); in reloadFolderList()
989 thread.interrupt(); in reloadFolderList()
1284 Thread thread = new Thread(service, mailboxName + "(" + accountName + ")"); in startService() local
1286 thread.start(); in startService()
1596 Thread thread = service.mThread; in checkMailboxes() local
1598 if (thread != null && !thread.isAlive() && !mSyncErrorMap.containsKey(mid)) { in checkMailboxes()
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarProvider.java335 Thread thread = new TimezoneCheckerThread(); in updateTimezoneDependentFields() local
336 thread.start(); in updateTimezoneDependentFields()
3390 Thread thread = new AlarmScheduler(removeAlarms); in scheduleNextAlarm() local
3391 thread.start(); in scheduleNextAlarm()