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 74 IntentFilter sdFilter = new IntentFilter();
75 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
76 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
77 mContext.registerReceiver(receiver, sdFilter);
  /frameworks/base/services/java/com/android/server/
AppWidgetService.java 170 IntentFilter sdFilter = new IntentFilter();
171 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
172 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
173 mContext.registerReceiver(mBroadcastReceiver, sdFilter);
AlarmManagerService.java     [all...]
NotificationManagerService.java 627 IntentFilter sdFilter = new IntentFilter(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
628 mContext.registerReceiver(mIntentReceiver, sdFilter);
    [all...]
LocationManagerService.java 613 IntentFilter sdFilter = new IntentFilter(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
614 mContext.registerReceiver(mBroadcastReceiver, sdFilter);
    [all...]
BackupManagerService.java     [all...]
  /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 267 IntentFilter sdFilter = new IntentFilter();
268 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
269 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
270 mContext.registerReceiver(this, sdFilter);
    [all...]

Completed in 860 milliseconds