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

  /packages/apps/Nfc/src/com/android/nfc/
RegisteredComponentCache.java 75 IntentFilter sdFilter = new IntentFilter();
76 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
77 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
78 mContext.registerReceiver(receiver, sdFilter);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/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);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderCustom.java 192 IntentFilter sdFilter = new IntentFilter();
193 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
194 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
195 mLoader.getContext().registerReceiver(this, sdFilter);
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderCustomSupport.java 195 IntentFilter sdFilter = new IntentFilter();
196 sdFilter.addAction(IntentCompat.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
197 sdFilter.addAction(IntentCompat.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
198 mLoader.getContext().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/Contacts/src/com/android/contacts/model/
AccountTypeManager.java 304 IntentFilter sdFilter = new IntentFilter();
305 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
306 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
307 mContext.registerReceiver(mBroadcastReceiver, sdFilter);
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
ApplicationsState.java 260 IntentFilter sdFilter = new IntentFilter();
261 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
262 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
263 mContext.registerReceiver(this, sdFilter);
    [all...]
  /frameworks/base/services/java/com/android/server/
AlarmManagerService.java 803 IntentFilter sdFilter = new IntentFilter();
804 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
805 mContext.registerReceiver(this, sdFilter);
    [all...]
AppWidgetService.java 213 IntentFilter sdFilter = new IntentFilter();
214 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
215 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
216 mContext.registerReceiver(mBroadcastReceiver, sdFilter);
    [all...]
NotificationManagerService.java 440 IntentFilter sdFilter = new IntentFilter(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
441 mContext.registerReceiver(mIntentReceiver, sdFilter);
    [all...]
LocationManagerService.java 543 IntentFilter sdFilter = new IntentFilter(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
544 mContext.registerReceiver(mBroadcastReceiver, sdFilter);
    [all...]
BackupManagerService.java     [all...]

Completed in 951 milliseconds