Searched defs:compileTimePerCodePath (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/
H A DCompilerStats.java62 private final Map<String, Long> compileTimePerCodePath; field in class:CompilerStats.PackageStats
70 compileTimePerCodePath = new ArrayMap<>(2);
83 synchronized (compileTimePerCodePath) {
84 Long l = compileTimePerCodePath.get(storagePath);
94 synchronized (compileTimePerCodePath) {
96 compileTimePerCodePath.remove(storagePath);
98 compileTimePerCodePath.put(storagePath, compileTimeInMs);
109 synchronized (compileTimePerCodePath) {
110 if (compileTimePerCodePath.size() == 0) {
113 for (Map.Entry<String, Long> e : compileTimePerCodePath
[all...]

Completed in 91 milliseconds