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

  /packages/apps/SoundRecorder/src/com/android/soundrecorder/
SoundRecorder.java 510 IntentFilter iFilter = new IntentFilter();
511 iFilter.addAction(Intent.ACTION_MEDIA_EJECT);
512 iFilter.addAction(Intent.ACTION_MEDIA_MOUNTED);
513 iFilter.addDataScheme("file");
514 registerReceiver(mSDCardMountEventReceiver, iFilter);
  /packages/apps/Music/src/com/android/music/
MediaPlaybackService.java 746 IntentFilter iFilter = new IntentFilter();
747 iFilter.addAction(Intent.ACTION_MEDIA_EJECT);
748 iFilter.addAction(Intent.ACTION_MEDIA_MOUNTED);
749 iFilter.addDataScheme("file");
750 registerReceiver(mUnmountReceiver, iFilter);
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java 489 IntentFilter iFilter = new IntentFilter(Intent.ACTION_MEDIA_EJECT);
490 iFilter.addDataScheme("file");
491 context.registerReceiver(mUnmountReceiver, iFilter);
    [all...]

Completed in 189 milliseconds