Lines Matching defs:loader
30 * 1. Adds a jar file to the bootstrap class loader search; Loads a class known
32 * loader.
34 * 2. Adds a jar file to the system class loader search; Loads a class known
36 * class loader.
47 // check that the given class is loaded by the given loader
48 static void checkLoadedByLoader(String name, ClassLoader loader) {
52 String loaderName = (actual == null) ? "boot class loader" : actual.toString();
53 if (actual != loader) {
72 // BootSupport is loaded by the bootstrap class loader
77 // AgentSupport is loaded by the system class loader.
82 System.out.println("System class loader does not support adding to class path");