/openjdk7/jdk/test/com/sun/jdi/ |
H A D | ClassLoaderTarg.java | 31 private Hashtable loaded = new Hashtable(); field in class:ClassLoaderTarg 76 Class klass = (Class)loaded.get(cname); 80 loaded.put(cname, klass); 81 System.err.println("ClassLoaderTarg (" + id +") loaded: " + cname);
|
/openjdk7/jdk/src/solaris/native/java/nio/ |
H A D | MappedByteBuffer.c | 39 jboolean loaded = JNI_TRUE; local 63 loaded = JNI_FALSE; 68 return loaded;
|
/openjdk7/jdk/src/windows/native/java/nio/ |
H A D | MappedByteBuffer.c | 37 jboolean loaded = JNI_FALSE; local 43 return loaded;
|
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/ |
H A D | ClassTab.java | 53 private static final String loadedPlotterKey = "loaded"; 242 private void updateClassInfo(long total, long loaded) { argument 243 long unloaded = (total - loaded); 245 loaded, unloaded, total));
|
/openjdk7/jdk/src/share/native/sun/security/pkcs11/ |
H A D | j2secmod.h | 61 * for the loaded modules */ 62 PRBool loaded; /* Set to true if module has been loaded */ member in struct:SECMODModuleStr
|
/openjdk7/jdk/src/share/classes/sun/nio/ch/ |
H A D | Util.java | 478 private static boolean loaded = false; field in class:Util 482 if (loaded) 484 loaded = true;
|
/openjdk7/jdk/src/share/classes/java/awt/image/ |
H A D | ColorModel.java | 181 * loaded in java.awt.image also: 194 * loaded by the java.* classes, which do not necessarily know the 203 private static boolean loaded = false; field in class:ColorModel 205 if (!loaded) { 208 loaded = true; 213 /* ensure that the proper libraries are loaded */
|
/openjdk7/hotspot/agent/src/os/win32/windbg/ |
H A D | sawindbg.cpp | 411 ULONG loaded = 0, unloaded = 0; local 412 if (ptrIDebugSymbols->GetNumberModules(&loaded, &unloaded) != S_OK) { 416 AutoArrayPtr<DEBUG_MODULE_PARAMETERS> params(new DEBUG_MODULE_PARAMETERS[loaded]); 422 if (ptrIDebugSymbols->GetModuleParameters(loaded, 0, NULL, params.asPtr()) != S_OK) { 426 for (int u = 0; u < (int)loaded; u++) {
|
/openjdk7/hotspot/src/os/windows/launcher/ |
H A D | java_md.c | 235 static int loaded = 0; local 238 if (!loaded) { 240 * The Microsoft C Runtime Library needs to be loaded first. A copy is 257 loaded = 1; 270 * NOTE: this call must be made before jvm.dll is loaded, or jvm.cfg 312 /* The Microsoft C Runtime Library needs to be loaded first. */ 445 /* The Microsoft C Runtime Library needs to be loaded first. */ 1438 // awt.dll is not loaded yet 1446 // jvm.dll is already loaded, so we need only java.dll;
|
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | Toolkit.java | 777 * classes to load. Each class is loaded in the order given 785 * (and therefore can be loaded using the class loader returned by 843 * classes to load. Each class is loaded in the order given 916 * still contain stale information which was loaded from the 918 * Previously loaded image data can be manually discarded by 953 * Previously loaded image data can be manually discarded by 1628 * loaded by the java.* classes, which do not necessarily know the 1639 * classes can be loaded in java.awt.image that depend on 1643 private static boolean loaded = false; field in class:Toolkit 1645 if (!loaded) { [all...] |
/openjdk7/jdk/src/windows/bin/ |
H A D | java_md.c | 72 /* CR6999872: fastdebug crashes if awt library is loaded before JVM is 255 static int loaded = 0; local 258 if (!loaded) { 260 * The Microsoft C Runtime Library needs to be loaded first. A copy is 294 loaded = 1; 371 * The Microsoft C Runtime Library needs to be loaded first. A copy is 1286 /* awt.dll is not loaded yet */ 1294 * jvm.dll is already loaded, so we need only java.dll;
|
/openjdk7/jdk/src/windows/classes/sun/awt/windows/ |
H A D | WToolkit.java | 93 private static boolean loaded = false; field in class:WToolkit 95 if (!loaded) { 98 loaded = true; 162 * class loader which loaded WToolkit must be finalized before it is
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | type.cpp | 2471 // It is the type that is loaded from an object of this type. 2838 "cannot have constants with non-loaded klass"); 2909 const TypeInstPtr *loaded = is_loaded() ? this : tinst; local 2911 if( loaded->klass()->equals(ciEnv::current()->Object_klass()) ) { 2925 assert(loaded->ptr() != TypePtr::Null, "insanity check"); 2927 if( loaded->ptr() == TypePtr::TopPTR ) { return unloaded; } 2928 else if (loaded->ptr() == TypePtr::AnyNull) { return TypeInstPtr::make( ptr, unloaded->klass(), false, NULL, off, instance_id ); } 2929 else if (loaded->ptr() == TypePtr::BotPTR ) { return TypeInstPtr::BOTTOM; } 2930 else if (loaded->ptr() == TypePtr::Constant || loaded [all...] |
/openjdk7/hotspot/src/share/vm/oops/ |
H A D | instanceKlass.hpp | 147 loaded, // loaded and inserted in class hierarchy (but not linked yet) enumerator in enum:instanceKlass::ClassState 305 // named, or a previously loaded anonymous class. A non-anonymous class 306 // or an anonymous class loaded through normal classloading does not 426 bool is_loaded() const { return _init_state >= loaded; }
|