Searched refs:compileTimePerCodePath (Results 1 – 1 of 1) sorted by relevance
62 private final Map<String, Long> compileTimePerCodePath; field in CompilerStats.PackageStats70 compileTimePerCodePath = new ArrayMap<>(2); in PackageStats()83 synchronized (compileTimePerCodePath) { in getCompileTime()84 Long l = compileTimePerCodePath.get(storagePath); in getCompileTime()94 synchronized (compileTimePerCodePath) { in setCompileTime()96 compileTimePerCodePath.remove(storagePath); in setCompileTime()98 compileTimePerCodePath.put(storagePath, compileTimeInMs); in setCompileTime()109 synchronized (compileTimePerCodePath) { in dump()110 if (compileTimePerCodePath.size() == 0) { in dump()113 for (Map.Entry<String, Long> e : compileTimePerCodePath.entrySet()) { in dump()[all …]