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

  /cts/tests/tests/media/src/android/media/cts/
MediaScannerTest.java 128 // add nomedia file and insert into database, file should no longer be in audio view
129 File nomedia = new File(mMediaFile.getParent() + "/.nomedia"); local
130 nomedia.createNewFile();
132 values.put(MediaStore.MediaColumns.DATA, nomedia.getAbsolutePath());
135 // clean up nomedia file
136 nomedia.delete();
143 // with nomedia file removed, do media scan and check that entry is in audio table again
  /system/core/sdcard/
sdcard.c 1001 /* When creating /Android/data and /Android/obb, mark them as .nomedia */
1003 char nomedia[PATH_MAX]; local
1004 snprintf(nomedia, PATH_MAX, "%s/.nomedia", child_path);
1005 if (touch(nomedia, 0664) != 0) {
1006 ERROR("Failed to touch(%s): %s\n", nomedia, strerror(errno));
1011 char nomedia[PATH_MAX]; local
1012 snprintf(nomedia, PATH_MAX, "%s/.nomedia", fuse->obbpath);
1013 if (touch(nomedia, 0664) != 0)
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java 3619 final File nomedia = new File(path); local
3639 File nomedia = new File(path); local
    [all...]

Completed in 61 milliseconds