HomeSort by relevance Sort by last modified time
    Searched defs:tempFilename (Results 1 - 2 of 2) sorted by null

  /libcore/ojluni/src/main/java/sun/net/www/
MimeLauncher.java 67 String tempFilename = template;
73 int wildcard = tempFilename.lastIndexOf("%s");
74 String prefix = tempFilename.substring(0, wildcard);
77 if (wildcard < tempFilename.length() - 2) {
78 suffix = tempFilename.substring(wildcard + 2);
103 tempFilename = prefix + filename + timestamp + extension + suffix;
105 return tempFilename;
  /platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
AuptTestCase.java 487 String tempFilename = "/data/local/tmp/" + filename;
489 String command = String.format("am dumpheap %s %s", proc, tempFilename);
492 getProcessOutput(String.format("cp %s %s", tempFilename, finalFilename));

Completed in 160 milliseconds