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/posix/elf/ELFSymbol.java
/* * Copyright (c) 2001, 2003, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * */ package sun.jvm.hotspot.debugger.posix.elf; public interface ELFSymbol { /** Binding specifying that local symbols are not visible outside the * object file that contains its definition. */ public static final int BINDING_LOCAL = 0; /** Binding specifying that global symbols are visible to all object files * being combined. */ public static final int BINDING_GLOBAL = 1; /** Binding secifying that the symbol resembles a global symbol, but has * a lower precedence. */ public static final int BINDING_WEAK = 2; /** Lower bound binding values reserverd for processor specific * semantics. */ public static final int BINDING_LOPROC = 13; /** Upper bound binding values reserverd for processor specific * semantics. */ public static final int BINDING_HIPROC = 15; /** Type specifying that the symbol is unspecified. */ public static final byte TYPE_NOOBJECT = 0; /** Type specifying that the symbol is associated with an object. */ public static final byte TYPE_OBJECT = 1; /** Type specifying that the symbol is associated with a function. */ public static final byte TYPE_FUNCTION = 2; /** Type specifying that the symbol is associated with a section. Symbol * table entries of this type exist for relocation and normally have the * binding BINDING_LOCAL. */ public static final byte TYPE_SECTION = 3; /** Type defining that the symbol is associated with a file. */ public static final byte TYPE_FILE = 4; /** Lower bound type reserved for processor specific semantics. */ public static final byte TYPE_LOPROC = 13; /** Upper bound type reserved for processor specific semantics. */ public static final byte TYPE_HIPROC = 15; /** Returns the location from the beginning of the file to the symbol. */ public long getOffset(); /** Returns the name of the symbol or null if the symbol has no name. */ public String getName(); /** Returns the binding for this symbol. */ public int getBinding(); /** Returns the symbol type. */ public int getType(); /** Value of the associated symbol. This may be a relativa address for .so * or absolute address for other ELFs. */ public long getValue(); /** Size of the symbol. 0 if the symbol has no size or the size * is unknown. */ public int getSize(); }
⏎ sun/jvm/hotspot/debugger/posix/elf/ELFSymbol.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, 144818👍, 0💬
Popular Posts:
Snappy-Java is a Java port of the "snappy", a fast C++ compresser/decompresser developed by Google. ...
Apache Log4j 1.2 Bridge allows applications coded to use Log4j 1.2 API to use Log4j 2 instead. Bytec...
JDK 17 jdk.localedata.jmod is the JMOD file for JDK 17 Localedata module. JDK 17 Locale Data module ...
Java Architecture for XML Binding (JAXB) is a Java API that allows Java developers to map Java class...
JDK 11 java.security.jgss.jmod is the JMOD file for JDK 11 Security JGSS (Java Generic Security Serv...