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.java49 public class SimImportService extends Service { class
81 SimImportService.class.getName() + "#serviceStateChanged";
83 SimImportService.class.getName() + "#simImportComplete";
106 return SimImportService.isImporting(sim);
141 context.startService(new Intent(context, SimImportService.class) in startImport()
298 FeedbackHelper.sendFeedback(SimImportService.this, TAG, in doInBackground()
332 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.java51 import com.android.contacts.SimImportService;
204 new IntentFilter(SimImportService.BROADCAST_SIM_IMPORT_COMPLETE)); in onViewCreated()
422 SimImportService.EXTRA_OPERATION_REQUESTED_AT_TIME, now);
428 final int code = intent.getIntExtra(SimImportService.EXTRA_RESULT_CODE,
429 SimImportService.RESULT_UNKNOWN);
430 final int count = intent.getIntExtra(SimImportService.EXTRA_RESULT_COUNT, -1);
431 if (code == SimImportService.RESULT_SUCCESS && count > 0) {
435 } else if (code == SimImportService.RESULT_FAILURE) {
/packages/apps/Contacts/
Dproguard.flags86 -keep class com.android.contacts.SimImportService { *; }
87 -keep class com.android.contacts.SimImportService$* { *; }
/packages/apps/Contacts/tests/src/com/android/contacts/activities/
DSimImportActivityTest.java55 import com.android.contacts.SimImportService;
349 SimImportService.BROADCAST_SIM_IMPORT_COMPLETE)); in nextImportCompleteBroadcast()