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 17 jdk.hotspot.agent.jmod - Hotspot Agent Module
JDK 17 jdk.hotspot.agent.jmod is the JMOD file for JDK 17 Hotspot Agent module.
JDK 17 Hotspot Agent module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.hotspot.agent.jmod.
JDK 17 Hotspot Agent module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Hotspot Agent module source code files are stored in \fyicenter\jdk-17.0.5\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, 2020, 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 long getSize();
}
⏎ sun/jvm/hotspot/debugger/posix/elf/ELFSymbol.java
Or download all of them as a single archive file:
File name: jdk.hotspot.agent-17.0.5-src.zip File size: 1238587 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.httpserver.jmod - HTTP Server Module
2023-10-04, ≈95🔥, 0💬
Popular Posts:
What Is junit-3.8.1.jar? junit-3.8.1.jar is the version 3.8.1 of JUnit JAR library file. JUnit is a ...
What is ojdbc.jar - JDBC Driver for Oracle? ojdbc.jar is a JDBC driver from Oracle that provides dat...
MP3SPI is a Java Service Provider Interface that adds MP3 (MPEG 1/2/2.5 Layer 1/2/3) audio format su...
ANTLR is a powerful parser generator for multiple programming languages including Java. ANTLR contai...
What Is mail.jar of JavaMail 1.4.2? I got the JAR file from javamail-1.4.2.zip. mail.jar in javamail...