Searched refs:sdFilter (Results 1 – 5 of 5) sorted by relevance
138 IntentFilter sdFilter = new IntentFilter(); in RegisteredServicesCache() local139 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in RegisteredServicesCache()140 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in RegisteredServicesCache()141 mContext.registerReceiver(mExternalReceiver, sdFilter); in RegisteredServicesCache()
1933 IntentFilter sdFilter = new IntentFilter(); in UninstallReceiver() local1934 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in UninstallReceiver()1935 sdFilter.addAction(Intent.ACTION_USER_STOPPED); in UninstallReceiver()1936 getContext().registerReceiver(this, sdFilter); in UninstallReceiver()
239 IntentFilter sdFilter = new IntentFilter(); in registerBroadcastReceiver() local240 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in registerBroadcastReceiver()241 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in registerBroadcastReceiver()243 sdFilter, null, null); in registerBroadcastReceiver()
960 IntentFilter sdFilter = new IntentFilter(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in onStart() local961 getContext().registerReceiverAsUser(mPackageIntentReceiver, UserHandle.ALL, sdFilter, null, in onStart()
1253 IntentFilter sdFilter = new IntentFilter(); in initPackageTracking() local1254 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in initPackageTracking()1255 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in initPackageTracking()1256 mContext.registerReceiver(mBroadcastReceiver, sdFilter); in initPackageTracking()