Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
JDK 11 jdk.hotspot.agent.jmod - Hotspot Agent Module
JDK 11 jdk.hotspot.agent.jmod is the JMOD file for JDK 11 Hotspot Agent module.
JDK 11 Hotspot Agent module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.hotspot.agent.jmod.
JDK 11 Hotspot Agent module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Hotspot Agent module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.hotspot.agent.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ sun/jvm/hotspot/debugger/win32/coff/OptionalHeaderWindowsSpecificFields.java
/*
* Copyright (c) 2000, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package sun.jvm.hotspot.debugger.win32.coff;
/** Models the information stored in the Windows-specific fields
portion of the optional header of a Portable Executable file.
(Some of the descriptions are taken directly from Microsoft's
documentation and are copyrighted by Microsoft.) */
public interface OptionalHeaderWindowsSpecificFields {
/** Preferred address of first byte of image when loaded into
memory; must be a multiple of 64K. The default for DLLs is
0x10000000. The default for Windows CE EXEs is 0x00010000. The
default for Windows NT, Windows 95, and Windows 98 is
0x00400000. */
public long getImageBase();
/** Alignment (in bytes) of sections when loaded into memory. Must
be greater or equal to File Alignment. Default is the page size
for the architecture. */
public int getSectionAlignment();
/** Alignment factor (in bytes) used to align the raw data of
sections in the image file. The value should be a power of 2
between 512 and 64K inclusive. The default is 512. If the
SectionAlignment is less than the architecture's page size than
this must match the SectionAlignment. */
public int getFileAlignment();
/** Major version number of required OS. */
public short getMajorOperatingSystemVersion();
/** Minor version number of required OS. */
public short getMinorOperatingSystemVersion();
/** Major version number of image. */
public short getMajorImageVersion();
/** Minor version number of image. */
public short getMinorImageVersion();
/** Major version number of subsystem. */
public short getMajorSubsystemVersion();
/** Minor version number of subsystem. */
public short getMinorSubsystemVersion();
/** Size, in bytes, of image, including all headers; must be a
multiple of Section Alignment. */
public int getSizeOfImage();
/** Combined size of MS-DOS stub, PE Header, and section headers
rounded up to a multiple of FileAlignment. */
public int getSizeOfHeaders();
/** Image file checksum. The algorithm for computing is incorporated
into IMAGHELP.DLL. The following are checked for validation at
load time: all drivers, any DLL loaded at boot time, and any DLL
that ends up in the server. */
public int getCheckSum();
/** Subsystem required to run this image; returns one of the
constants defined in {@link
sun.jvm.hotspot.debugger.win32.coff.WindowsNTSubsystem}. */
public short getSubsystem();
/** Indicates characteristics of a DLL; see {@link
sun.jvm.hotspot.debugger.win32.coff.DLLCharacteristics}. */
public short getDLLCharacteristics();
/** Size of stack to reserve. Only the Stack Commit Size is
committed; the rest is made available one page at a time, until
reserve size is reached. */
public long getSizeOfStackReserve();
/** Size of stack to commit. */
public long getSizeOfStackCommit();
/** Size of local heap space to reserve. Only the Heap Commit Size
is committed; the rest is made available one page at a time,
until reserve size is reached. */
public long getSizeOfHeapReserve();
/** Size of local heap space to commit. */
public long getSizeOfHeapCommit();
/** Obsolete. */
public int getLoaderFlags();
/** Number of data-dictionary entries in the remainder of the
Optional Header. Each describes a location and size. */
public int getNumberOfRvaAndSizes();
}
⏎ sun/jvm/hotspot/debugger/win32/coff/OptionalHeaderWindowsSpecificFields.java
Or download all of them as a single archive file:
File name: jdk.hotspot.agent-11.0.1-src.zip File size: 1243786 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.httpserver.jmod - HTTP Server Module
2020-02-29, ≈227🔥, 0💬
Popular Posts:
JDK 7 tools.jar is the JAR file for JDK 7 tools. It contains Java classes to support different JDK t...
ANTLR is a powerful parser generator for multiple programming languages including Java. ANTLR contai...
Joda-Time provides a quality replacement for the Java date and time classes. The design allows for m...
What Is mail.jar of JavaMail 1.4.2? I got the JAR file from javamail-1.4.2.zip. mail.jar in javamail...
commons-io-2.6-sources.j aris the source JAR file for Apache Commons IO 2.6, which is a library of u...