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 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/services/java/com/android/server/
AppWidgetService.java 101 IntentFilter sdFilter = new IntentFilter();
102 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
103 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
105 sdFilter, null, null);
AlarmManagerService.java     [all...]
NotificationManagerService.java     [all...]
BackupManagerService.java     [all...]
  /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 320 IntentFilter sdFilter = new IntentFilter();
321 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
322 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
323 mContext.registerReceiver(mBroadcastReceiver, sdFilter);
    [all...]

Completed in 405 milliseconds