Home
last modified time | relevance | path

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

/packages/apps/UnifiedEmail/src/com/android/mail/widget/
DWidgetService.java238 private CursorLoader mConversationCursorLoader; field in WidgetService.MailFactory
319 mConversationCursorLoader = new CursorLoader(mContext, widgetConversationQueryUri, in onCreate()
321 mConversationCursorLoader.registerListener(CONVERSATION_CURSOR_LOADER_ID, this); in onCreate()
322 mConversationCursorLoader.setUpdateThrottle( in onCreate()
324 mConversationCursorLoader.startLoading(); in onCreate()
343 if (mConversationCursorLoader != null) { in onDestroy()
344 mConversationCursorLoader.reset(); in onDestroy()
345 mConversationCursorLoader.unregisterListener(this); in onDestroy()
346 mConversationCursorLoader = null; in onDestroy()
592 } else if (loader == mConversationCursorLoader) { in onLoadComplete()