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 133 // add nomedia file and insert into database, file should no longer be in audio view
134 File nomedia = new File(mMediaFile.getParent() + "/.nomedia"); local
135 nomedia.createNewFile();
137 values.put(MediaStore.MediaColumns.DATA, nomedia.getAbsolutePath());
140 // clean up nomedia file
141 nomedia.delete();
148 // with nomedia file removed, do media scan and check that entry is in audio table again
  /system/core/sdcard/
sdcard.c 981 /* When creating /Android/data and /Android/obb, mark them as .nomedia */
983 char nomedia[PATH_MAX]; local
984 snprintf(nomedia, PATH_MAX, "%s/.nomedia", child_path);
985 if (touch(nomedia, 0664) != 0) {
986 ERROR("Failed to touch(%s): %s\n", nomedia, strerror(errno));
991 char nomedia[PATH_MAX]; local
992 snprintf(nomedia, PATH_MAX, "%s/.nomedia", fuse->global->obb_path);
993 if (touch(nomedia, 0664) != 0)
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java 3781 final File nomedia = new File(path); local
3803 File nomedia = new File(path); local
    [all...]

Completed in 1373 milliseconds