< prev index next >

src/hotspot/share/classfile/classLoaderExt.hpp

Print this page

*** 45,57 **** }; static char* get_class_path_attr(const char* jar_path, char* manifest, jint manifest_size); static void setup_app_search_path(); // Only when -Xshare:dump static void process_module_table(ModuleEntryTable* met, TRAPS); - static SharedPathsMiscInfo* shared_paths_misc_info() { - return (SharedPathsMiscInfo*)_shared_paths_misc_info; - } // index of first app JAR in shared classpath entry table static jshort _app_class_paths_start_index; // index of first modular JAR in shared modulepath entry table static jshort _app_module_paths_start_index; // the largest path index being used during CDS dump time --- 45,54 ----
*** 82,93 **** // Do not remove new-line continuations, so we can easily pass it as an argument to // java.util.jar.Manifest.getManifest() at run-time. return read_manifest(entry, manifest_size, false, THREAD); } - static void finalize_shared_paths_misc_info(); - static jshort app_class_paths_start_index() { return _app_class_paths_start_index; } static jshort app_module_paths_start_index() { return _app_module_paths_start_index; } static jshort max_used_path_index() { return _max_used_path_index; } --- 79,88 ----
< prev index next >