Searched refs:db (Results 226 - 250 of 470) sorted by relevance

1234567891011>>

/openjdk9/jdk/src/jdk.httpserver/share/classes/sun/net/httpserver/
H A DLeftOverInputStream.java110 byte[] db = new byte [bufSize];
112 long len = readImpl (db, 0, bufSize);
/openjdk9/jdk/test/sun/security/pkcs11/KeyStore/
H A DClientAuth.sh121 ${CP} ${TESTSRC}${FS}ClientAuthData${FS}cert8.db ${TESTCLASSES}
122 ${CHMOD} +w ${TESTCLASSES}${FS}cert8.db
124 ${CP} ${TESTSRC}${FS}ClientAuthData${FS}key3.db ${TESTCLASSES}
125 ${CHMOD} +w ${TESTCLASSES}${FS}key3.db
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/solaris_sparc/
H A DSolarisSPARCJavaThreadPDAccess.java54 private static synchronized void initialize(TypeDataBase db) { argument
55 Type type = db.lookupType("JavaThread");
56 Type anchorType = db.lookupType("JavaFrameAnchor");
60 hasFlushed = db.lookupIntConstant("JavaFrameAnchor::flushed").intValue();
62 type = db.lookupType("OSThread");
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/linux_sparc/
H A DLinuxSPARCJavaThreadPDAccess.java54 private static synchronized void initialize(TypeDataBase db) { argument
55 Type type = db.lookupType("JavaThread");
56 Type anchorType = db.lookupType("JavaFrameAnchor");
59 hasFlushed = db.lookupIntConstant("JavaFrameAnchor::flushed").intValue();
61 type = db.lookupType("OSThread");
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/db/glassfish/
H A DWrapperBridge.java26 package com.sun.xml.internal.ws.db.glassfish;
45 import com.sun.xml.internal.ws.spi.db.BindingContext;
46 import com.sun.xml.internal.ws.spi.db.XMLBridge;
47 import com.sun.xml.internal.ws.spi.db.TypeInfo;
48 import com.sun.xml.internal.ws.spi.db.WrapperComposite;
H A DMarshallerBridge.java26 package com.sun.xml.internal.ws.db.glassfish;
47 import com.sun.xml.internal.ws.spi.db.BindingContext;
48 import com.sun.xml.internal.ws.spi.db.DatabindingException;
49 import com.sun.xml.internal.ws.spi.db.TypeInfo;
53 implements com.sun.xml.internal.ws.spi.db.XMLBridge {
H A DJAXBRIContextFactory.java26 package com.sun.xml.internal.ws.db.glassfish;
43 import com.sun.xml.internal.ws.spi.db.BindingContext;
44 import com.sun.xml.internal.ws.spi.db.BindingContextFactory;
45 import com.sun.xml.internal.ws.spi.db.BindingInfo;
46 import com.sun.xml.internal.ws.spi.db.DatabindingException;
47 import com.sun.xml.internal.ws.spi.db.TypeInfo;
48 import com.sun.xml.internal.ws.spi.db.WrapperComposite;
/openjdk9/langtools/src/jdk.jdeps/share/classes/com/sun/tools/jdeprscan/
H A DDeprDB.java120 DeprDB db = new DeprDB();
128 db.types.put(dd.typeName, dd);
132 db.methods.computeIfAbsent(dd.typeName, k -> new HashMap<>())
137 db.fields.computeIfAbsent(dd.typeName, k -> new HashMap<>())
143 return db;
/openjdk9/jdk/src/java.desktop/share/classes/sun/swing/plaf/synth/
H A DPaint9Painter.java194 int db = dInsets.bottom;
199 db = dt = sb = st = Math.max(0, ih / 2);
207 if (dt + db > h) {
208 dt = db = Math.max(0, h / 2 - 1);
220 drawChunk(image, g, stretch, x, y + dt, x + dl, y + h - db,
237 x + w - dr, y + dt, x + w, y + h - db,
241 drawImage(image, g, x + w - dr, y + h - db, x + w, y + h,
246 x + dl, y + h - db, x + w - dr, y + h,
250 drawImage(image, g, x, y + h - db, x + dl, y + h,
254 drawImage(image, g, x + dl, y + dt, x + w - dr, y + h - db,
[all...]
/openjdk9/jdk/test/java/awt/image/DrawImage/
H A DIncorrectClipXorModeSW2Surface.java137 final DataBuffer db = bi.getRaster().getDataBuffer();
138 if (db instanceof DataBufferInt) {
139 ((DataBufferInt) db).getData();
140 } else if (db instanceof DataBufferShort) {
141 ((DataBufferShort) db).getData();
142 } else if (db instanceof DataBufferByte) {
143 ((DataBufferByte) db).getData();
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicEnumType.java97 Type resolveTypes(BasicCDebugInfoDataBase db, ResolveListener listener) { argument
98 super.resolveTypes(db, listener);
99 underlyingType = db.resolveType(this, underlyingType, listener, "resolving enum type");
H A DBasicCompoundType.java83 Type resolveTypes(BasicCDebugInfoDataBase db, ResolveListener listener) { argument
84 super.resolveTypes(db, listener);
88 b.resolveTypes(this, db, listener);
94 b.resolveTypes(this, db, listener);
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/
H A DGenCollectedHeap.java52 private static synchronized void initialize(TypeDataBase db) { argument
53 Type type = db.lookupType("GenCollectedHeap");
60 Type collectorPolicyType = db.lookupType("GenCollectorPolicy");
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/
H A DJNIHandleBlock.java49 private static synchronized void initialize(TypeDataBase db) { argument
50 Type type = db.lookupType("JNIHandleBlock");
56 blockSizeInOops = db.lookupIntConstant("JNIHandleBlock::block_size_in_oops").intValue();
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/linux_ppc64/
H A DLinuxPPC64JavaThreadPDAccess.java55 private static synchronized void initialize(TypeDataBase db) { argument
56 Type type = db.lookupType("JavaThread");
59 Type osThreadType = db.lookupType("OSThread");
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/
H A DCompactHashTable.java43 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { argument
44 Type type = db.lookupType("SymbolCompactHashTable");
50 uintSize = db.lookupType("u4").getSize();
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/solaris_x86/
H A DSolarisX86JavaThreadPDAccess.java60 private static synchronized void initialize(TypeDataBase db) { argument
61 Type type = db.lookupType("JavaThread");
62 Type anchorType = db.lookupType("JavaFrameAnchor");
67 type = db.lookupType("OSThread");
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/solaris_amd64/
H A DSolarisAMD64JavaThreadPDAccess.java58 private static synchronized void initialize(TypeDataBase db) { argument
59 Type type = db.lookupType("JavaThread");
60 Type anchorType = db.lookupType("JavaFrameAnchor");
65 type = db.lookupType("OSThread");
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/win32_amd64/
H A DWin32AMD64JavaThreadPDAccess.java60 private static synchronized void initialize(TypeDataBase db) { argument
61 Type type = db.lookupType("JavaThread");
62 Type anchorType = db.lookupType("JavaFrameAnchor");
66 type = db.lookupType("OSThread");
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/win32_x86/
H A DWin32X86JavaThreadPDAccess.java59 private static synchronized void initialize(TypeDataBase db) { argument
60 Type type = db.lookupType("JavaThread");
61 Type anchorType = db.lookupType("JavaFrameAnchor");
65 type = db.lookupType("OSThread");
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/bsd_amd64/
H A DBsdAMD64JavaThreadPDAccess.java59 private static synchronized void initialize(TypeDataBase db) { argument
60 Type type = db.lookupType("JavaThread");
63 Type anchorType = db.lookupType("JavaFrameAnchor");
66 Type osThreadType = db.lookupType("OSThread");
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/bsd_x86/
H A DBsdX86JavaThreadPDAccess.java55 private static synchronized void initialize(TypeDataBase db) { argument
56 Type type = db.lookupType("JavaThread");
59 Type anchorType = db.lookupType("JavaFrameAnchor");
62 Type osThreadType = db.lookupType("OSThread");
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/linux_aarch64/
H A DLinuxAARCH64JavaThreadPDAccess.java56 private static synchronized void initialize(TypeDataBase db) { argument
57 Type type = db.lookupType("JavaThread");
60 Type anchorType = db.lookupType("JavaFrameAnchor");
63 Type osThreadType = db.lookupType("OSThread");
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/linux_amd64/
H A DLinuxAMD64JavaThreadPDAccess.java56 private static synchronized void initialize(TypeDataBase db) { argument
57 Type type = db.lookupType("JavaThread");
60 Type anchorType = db.lookupType("JavaFrameAnchor");
63 Type osThreadType = db.lookupType("OSThread");
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/linux_x86/
H A DLinuxX86JavaThreadPDAccess.java55 private static synchronized void initialize(TypeDataBase db) { argument
56 Type type = db.lookupType("JavaThread");
59 Type anchorType = db.lookupType("JavaFrameAnchor");
62 Type osThreadType = db.lookupType("OSThread");

Completed in 1276 milliseconds

1234567891011>>