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

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/
ReportExporter.java 60 String storagePath = System.getenv("EXTERNAL_STORAGE");
61 if (storagePath.length() == 0 || storagePath.equals("")) {
62 storagePath = Environment.getExternalStorageDirectory().getPath();
64 File reportPath = new File(storagePath, REPORT_DIRECTORY);
  /frameworks/base/services/core/java/com/android/server/pm/
CompilerStats.java 82 String storagePath = getStoredPathFromCodePath(codePath);
84 Long l = compileTimePerCodePath.get(storagePath);
93 String storagePath = getStoredPathFromCodePath(codePath);
96 compileTimePerCodePath.remove(storagePath);
98 compileTimePerCodePath.put(storagePath, compileTimeInMs);

Completed in 414 milliseconds