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

  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
AsmGeneratorTest.java 41 private File mTempFile;
51 mTempFile = File.createTempFile("mock", "jar");
52 mOsDestJar = mTempFile.getAbsolutePath();
53 mTempFile.deleteOnExit();
58 if (mTempFile != null) {
59 mTempFile.delete();
60 mTempFile = null;
  /packages/apps/Gallery3D/src/com/cooliris/media/
Wallpaper.java 58 private File mTempFile;
117 mTempFile = new File(icicle.getString(TEMP_FILE_PATH_ICICLE));
124 icicle.putString(TEMP_FILE_PATH_ICICLE, mTempFile.getAbsolutePath());
160 mTempFile = getFileStreamPath("temp-wallpaper");
161 mTempFile.getParentFile().mkdirs();
171 intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(mTempFile));
182 InputStream s = new FileInputStream(mTempFile);
186 Log.e(LOG_TAG, "Failed to set wallpaper. " + "Couldn't get bitmap for path " + mTempFile);
189 new SetWallpaperThread(bitmap, mHandler, this, mTempFile).start();
196 Log.e(LOG_TAG, "file not found: " + mTempFile, ex)
    [all...]
Photographs.java 60 private File mTempFile;
120 mTempFile = new File(icicle.getString(TEMP_FILE_PATH_ICICLE));
127 icicle.putString(TEMP_FILE_PATH_ICICLE, mTempFile.getAbsolutePath());
171 mTempFile = getFileStreamPath("temp-wallpaper");
172 mTempFile.getParentFile().mkdirs();
182 intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(mTempFile));
193 InputStream s = new FileInputStream(mTempFile);
197 Log.e(LOG_TAG, "Failed to set wallpaper. " + "Couldn't get bitmap for path " + mTempFile);
200 new SetWallpaperThread(bitmap, mHandler, this, mTempFile).start();
207 Log.e(LOG_TAG, "file not found: " + mTempFile, ex)
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
EventLogPanel.java 109 private File mTempFile = null;
250 FileInputStream fis = new FileInputStream(mTempFile);
452 mTempFile = File.createTempFile("android-event-", ".log");
563 if (mTempFile != null) {
564 mTempFile.delete();
565 mTempFile = null;
745 if (mTempFile != null) {
747 FileOutputStream fos = new FileOutputStream(mTempFile, true /* append */);
  /packages/apps/Contacts/src/com/android/contacts/
ImportVCardActivity.java 167 private File mTempFile;
205 mTempFile = null;
292 if (mTempFile != null) {
293 if (!mTempFile.delete()) {
296 mTempFile = null;
    [all...]

Completed in 133 milliseconds