Home
last modified time | relevance | path

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

/packages/apps/Contacts/src/com/android/contacts/
DSimImportService.java51 public class SimImportService extends Service { class
83 SimImportService.class.getName() + "#serviceStateChanged";
85 SimImportService.class.getName() + "#simImportComplete";
108 return SimImportService.isImporting(sim);
143 context.startService(new Intent(context, SimImportService.class) in startImport()
300 FeedbackHelper.sendFeedback(SimImportService.this, TAG, in doInBackground()
334 LocalBroadcastManager.getInstance(SimImportService.this).sendBroadcast(result); in onPostExecute()
DSimImportFragment.java300 SimImportService.startImport(getContext(), mSubscriptionId, importableContacts, in importCurrentSelections()
/packages/apps/Contacts/src/com/android/contacts/preference/
DDisplayOptionsPreferenceFragment.java57 import com.android.contacts.SimImportService;
218 new IntentFilter(SimImportService.BROADCAST_SIM_IMPORT_COMPLETE)); in onViewCreated()
484 SimImportService.EXTRA_OPERATION_REQUESTED_AT_TIME, now);
490 final int code = intent.getIntExtra(SimImportService.EXTRA_RESULT_CODE,
491 SimImportService.RESULT_UNKNOWN);
492 final int count = intent.getIntExtra(SimImportService.EXTRA_RESULT_COUNT, -1);
493 if (code == SimImportService.RESULT_SUCCESS && count > 0) {
501 } else if (code == SimImportService.RESULT_FAILURE) {
/packages/apps/Contacts/
Dproguard.flags85 -keep class com.android.contacts.SimImportService { *; }
86 -keep class com.android.contacts.SimImportService$* { *; }
/packages/apps/Contacts/tests/src/com/android/contacts/activities/
DSimImportActivityTest.java57 import com.android.contacts.SimImportService;
353 SimImportService.BROADCAST_SIM_IMPORT_COMPLETE)); in nextImportCompleteBroadcast()