Searched refs:CodeStore (Results 1 - 4 of 4) sorted by relevance

/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DCodeStore.java52 public abstract class CodeStore implements Loggable { class in inherits:Loggable
59 protected CodeStore() { method in class:CodeStore
79 public static CodeStore newCodeStore(final Context context) {
81 final CodeStore store = new DirectoryCodeStore(context);
85 context.getLogger(CodeStore.class).warning("failed to create cache directory ", e);
181 public static class DirectoryCodeStore extends CodeStore {
H A DContext.java33 import static jdk.nashorn.internal.runtime.CodeStore.newCodeStore;
369 private CodeStore codeStore;
1489 final String cacheKey = useCodeStore ? CodeStore.getCacheKey("script", null) : null;
H A DCompiledFunction.java861 final String cacheKey = CodeStore.getCacheKey(functionNodeId, paramTypes);
H A DRecompilableScriptFunctionData.java715 cacheKey = CodeStore.getCacheKey(functionNodeId, paramTypes);

Completed in 198 milliseconds