Lines Matching defs:file
5 * you may not use this file except in compliance with the License.
23 import java.io.File;
32 * This class handles the mini-thumb file. A mini-thumb file consists
42 * @hide This file is shared between MediaStore and MediaProvider and should remained internal use
62 for (MiniThumbFile file : sThumbFiles.values()) {
63 file.deactivate();
70 MiniThumbFile file = sThumbFiles.get(type);
72 if (file == null) {
73 file = new MiniThumbFile(
75 sThumbFiles.put(type, file);
78 return file;
90 File oldFile = new File(oldPath);
104 File directory = new File(path).getParentFile();
111 File f = new File(path);
146 // Get the magic number for the specified id in the mini-thumb file.
149 // check the mini thumb file for the right data. Right is
170 Log.v(TAG, "Got exception checking file magic: ", ex);