OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
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
);
/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
281
IntentFilter
sdFilter
= new IntentFilter();
282
sdFilter
.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
283
sdFilter
.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
284
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
210
IntentFilter
sdFilter
= new IntentFilter();
211
sdFilter
.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
212
sdFilter
.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
213
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 409 milliseconds