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

  /packages/apps/Nfc/src/com/android/nfc/
RegisteredComponentCache.java 76 IntentFilter sdFilter = new IntentFilter();
77 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
78 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
79 mContext.registerReceiverAsUser(receiver, UserHandle.ALL, sdFilter, null, null);
  /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/services/java/com/android/server/
AppWidgetService.java 93 IntentFilter sdFilter = new IntentFilter();
94 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
95 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
97 sdFilter, null, null);
AlarmManagerService.java     [all...]
NotificationManagerService.java 649 IntentFilter sdFilter = new IntentFilter(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
650 mContext.registerReceiver(mIntentReceiver, sdFilter);
    [all...]
BackupManagerService.java     [all...]
  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCache.java 135 IntentFilter sdFilter = new IntentFilter();
136 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
137 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
138 mContext.registerReceiver(mExternalReceiver, sdFilter);
  /packages/apps/Contacts/src/com/android/contacts/model/
AccountTypeManager.java 310 IntentFilter sdFilter = new IntentFilter();
311 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
312 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
313 mContext.registerReceiver(mBroadcastReceiver, sdFilter);
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
ApplicationsState.java 273 IntentFilter sdFilter = new IntentFilter();
274 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
275 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
276 mContext.registerReceiver(this, sdFilter);
    [all...]

Completed in 529 milliseconds