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

  /packages/apps/Nfc/src/com/android/nfc/
RegisteredComponentCache.java 77 IntentFilter sdFilter = new IntentFilter();
78 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
79 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
80 mContext.registerReceiverAsUser(receiver, UserHandle.ALL, sdFilter, null, null);
  /packages/apps/Settings/src/com/android/settings/applications/
AppOpsCategory.java 101 IntentFilter sdFilter = new IntentFilter();
102 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
103 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
104 mLoader.getContext().registerReceiver(this, sdFilter);
ApplicationsState.java 300 IntentFilter sdFilter = new IntentFilter();
301 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
302 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
303 mContext.registerReceiver(this, sdFilter);
    [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 194 IntentFilter sdFilter = new IntentFilter();
195 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
196 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
197 mLoader.getContext().registerReceiver(this, sdFilter);
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderCustomSupport.java 196 IntentFilter sdFilter = new IntentFilter();
197 sdFilter.addAction(IntentCompat.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
198 sdFilter.addAction(IntentCompat.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
199 mLoader.getContext().registerReceiver(this, sdFilter);
  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCache.java 137 IntentFilter sdFilter = new IntentFilter();
138 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
139 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
140 mContext.registerReceiver(mExternalReceiver, sdFilter);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
AccountTypeManager.java 318 IntentFilter sdFilter = new IntentFilter();
319 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
320 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
321 mContext.registerReceiver(mBroadcastReceiver, sdFilter);
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
RegisteredServicesCache.java 156 IntentFilter sdFilter = new IntentFilter();
157 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
158 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
159 mContext.registerReceiverAsUser(mReceiver.get(), UserHandle.ALL, sdFilter, null, null);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
ApplicationsState.java 194 IntentFilter sdFilter = new IntentFilter();
195 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
196 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
197 mContext.registerReceiver(this, sdFilter);
  /frameworks/base/services/core/java/com/android/server/
AlarmManagerService.java     [all...]
  /frameworks/base/services/appwidget/java/com/android/server/appwidget/
AppWidgetServiceImpl.java 239 IntentFilter sdFilter = new IntentFilter();
240 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
241 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
243 sdFilter, null, null);
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationManagerService.java     [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/
BackupManagerService.java     [all...]

Completed in 483 milliseconds