HomeSort by relevance Sort by last modified time
    Searched refs:sdFilter (Results 1 - 8 of 8) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/model/
Sources.java 98 IntentFilter sdFilter = new IntentFilter();
99 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
100 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
101 mApplicationContext.registerReceiver(this, sdFilter);
  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCache.java 121 IntentFilter sdFilter = new IntentFilter();
122 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
123 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
124 mContext.registerReceiver(receiver, sdFilter);
  /packages/apps/Settings/src/com/android/settings/applications/
ApplicationsState.java 227 IntentFilter sdFilter = new IntentFilter();
228 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
229 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
230 mContext.registerReceiver(this, sdFilter);
  /frameworks/base/services/java/com/android/server/
AppWidgetService.java 151 IntentFilter sdFilter = new IntentFilter();
152 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
153 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
154 mContext.registerReceiver(mBroadcastReceiver, sdFilter);
    [all...]
AlarmManagerService.java 818 IntentFilter sdFilter = new IntentFilter();
819 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
820 mContext.registerReceiver(this, sdFilter);
    [all...]
BackupManagerService.java 653 IntentFilter sdFilter = new IntentFilter();
654 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
655 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
656 mContext.registerReceiver(mBroadcastReceiver, sdFilter);
    [all...]
NotificationManagerService.java 478 IntentFilter sdFilter = new IntentFilter(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
479 mContext.registerReceiver(mIntentReceiver, sdFilter);
    [all...]
LocationManagerService.java 536 IntentFilter sdFilter = new IntentFilter(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
537 mContext.registerReceiver(mBroadcastReceiver, sdFilter);
    [all...]

Completed in 813 milliseconds