Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
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 (309)
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/SectionFlags.java
/* * Copyright (c) 2000, 2001, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * */ package sun.jvm.hotspot.debugger.win32.coff; /** Constants indicating attributes of the section. (Some of the descriptions are taken directly from Microsoft's documentation and are copyrighted by Microsoft.) */ public interface SectionFlags { /** Reserved for future use. */ public static final int IMAGE_SCN_TYPE_REG = 0x00000000; /** Reserved for future use. */ public static final int IMAGE_SCN_TYPE_DSECT = 0x00000001; /** Reserved for future use. */ public static final int IMAGE_SCN_TYPE_NOLOAD = 0x00000002; /** Reserved for future use. */ public static final int IMAGE_SCN_TYPE_GROUP = 0x00000004; /** Section should not be padded to next boundary. This is obsolete and replaced by IMAGE_SCN_ALIGN_1BYTES. This is valid for object files only. */ public static final int IMAGE_SCN_TYPE_NO_PAD = 0x00000008; /** Reserved for future use. */ public static final int IMAGE_SCN_TYPE_COPY = 0x00000010; /** Section contains executable code. */ public static final int IMAGE_SCN_CNT_CODE = 0x00000020; /** Section contains initialized data. */ public static final int IMAGE_SCN_CNT_INITIALIZED_DATA = 0x00000040; /** Section contains uninitialized data. */ public static final int IMAGE_SCN_CNT_UNINITIALIZED_DATA = 0x00000080; /** Reserved for future use. */ public static final int IMAGE_SCN_LNK_OTHER = 0x00000100; /** Section contains comments or other information. The .drectve section has this type. This is valid for object files only. */ public static final int IMAGE_SCN_LNK_INFO = 0x00000200; /** Reserved for future use. */ public static final int IMAGE_SCN_TYPE_OVER = 0x00000400; /** Section will not become part of the image. This is valid for object files only. */ public static final int IMAGE_SCN_LNK_REMOVE = 0x00000800; /** Section contains COMDAT data; see {@link sun.jvm.hotspot.debugger.win32.coff.COMDATSelectionTypes}. This is valid for object files only. */ public static final int IMAGE_SCN_LNK_COMDAT = 0x00001000; /** Reserved for future use. */ public static final int IMAGE_SCN_MEM_FARDATA = 0x00008000; /** Reserved for future use. */ public static final int IMAGE_SCN_MEM_PURGEABLE = 0x00020000; /** Reserved for future use. */ public static final int IMAGE_SCN_MEM_16BIT = 0x00020000; /** Reserved for future use. */ public static final int IMAGE_SCN_MEM_LOCKED = 0x00040000; /** Reserved for future use. */ public static final int IMAGE_SCN_MEM_PRELOAD = 0x00080000; /** Align data on a 1-byte boundary. This is valid for object files only. */ public static final int IMAGE_SCN_ALIGN_1BYTES = 0x00100000; /** Align data on a 2-byte boundary. This is valid for object files only. */ public static final int IMAGE_SCN_ALIGN_2BYTES = 0x00200000; /** Align data on a 4-byte boundary. This is valid for object files only. */ public static final int IMAGE_SCN_ALIGN_4BYTES = 0x00300000; /** Align data on a 8-byte boundary. This is valid for object files only. */ public static final int IMAGE_SCN_ALIGN_8BYTES = 0x00400000; /** Align data on a 16-byte boundary. This is valid for object files only. */ public static final int IMAGE_SCN_ALIGN_16BYTES = 0x00500000; /** Align data on a 32-byte boundary. This is valid for object files only. */ public static final int IMAGE_SCN_ALIGN_32BYTES = 0x00600000; /** Align data on a 64-byte boundary. This is valid for object files only. */ public static final int IMAGE_SCN_ALIGN_64BYTES = 0x00700000; /** Align data on a 128-byte boundary. This is valid for object files only. */ public static final int IMAGE_SCN_ALIGN_128BYTES = 0x00800000; /** Align data on a 256-byte boundary. This is valid for object files only. */ public static final int IMAGE_SCN_ALIGN_256BYTES = 0x00900000; /** Align data on a 512-byte boundary. This is valid for object files only. */ public static final int IMAGE_SCN_ALIGN_512BYTES = 0x00A00000; /** Align data on a 1024-byte boundary. This is valid for object files only. */ public static final int IMAGE_SCN_ALIGN_1024BYTES = 0x00B00000; /** Align data on a 2048-byte boundary. This is valid for object files only. */ public static final int IMAGE_SCN_ALIGN_2048BYTES = 0x00C00000; /** Align data on a 4096-byte boundary. This is valid for object files only. */ public static final int IMAGE_SCN_ALIGN_4096BYTES = 0x00D00000; /** Align data on a 8192-byte boundary. This is valid for object files only. */ public static final int IMAGE_SCN_ALIGN_8192BYTES = 0x00E00000; /** Section contains extended relocations. */ public static final int IMAGE_SCN_LNK_NRELOC_OVFL = 0x01000000; /** Section can be discarded as needed. */ public static final int IMAGE_SCN_MEM_DISCARDABLE = 0x02000000; /** Section cannot be cached. */ public static final int IMAGE_SCN_MEM_NOT_CACHED = 0x04000000; /** Section is not pageable. */ public static final int IMAGE_SCN_MEM_NOT_PAGED = 0x08000000; /** Section can be shared in memory. */ public static final int IMAGE_SCN_MEM_SHARED = 0x10000000; /** Section can be executed as code. */ public static final int IMAGE_SCN_MEM_EXECUTE = 0x20000000; /** Section can be read. */ public static final int IMAGE_SCN_MEM_READ = 0x40000000; /** Section can be written to. */ public static final int IMAGE_SCN_MEM_WRITE = 0x80000000; }
⏎ sun/jvm/hotspot/debugger/win32/coff/SectionFlags.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, 145090👍, 0💬
Popular Posts:
JDK 11 jdk.scripting.nashorn.jm odis the JMOD file for JDK 11 Scripting Nashorn module. JDK 11 Scrip...
How to read XML document with DTD validation from socket connections with the socket\DelayedInput.ja.. .
What is the dom\GetElementsByTagName .javaprovided in the Apache Xerces package? I have Apache Xerce...
How to download and install Apache XMLBeans Source Package? The source package contains Java source ...
What Is commons-fileupload-1.3.3 .jar?commons-fileupload-1.3.3 .jaris the JAR file for Apache Common...