sun.jvm.hotspot.debugger.NotInHeapException Java Examples

The following examples show how to use sun.jvm.hotspot.debugger.NotInHeapException. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: LinuxDebuggerLocal.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/** From the LinuxDebugger interface */
public LinuxOopHandle readOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readAddressValue(address);
    return (value == 0 ? null : new LinuxOopHandle(this, value));
}
 
Example #2
Source File: BsdDebuggerLocal.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/** From the BsdDebugger interface */
public BsdOopHandle readOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readAddressValue(address);
    return (value == 0 ? null : new BsdOopHandle(this, value));
}
 
Example #3
Source File: LinuxDebuggerLocal.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/** From the LinuxDebugger interface */
public LinuxOopHandle readOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readAddressValue(address);
    return (value == 0 ? null : new LinuxOopHandle(this, value));
}
 
Example #4
Source File: LinuxDebuggerLocal.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/** From the LinuxDebugger interface */
public LinuxOopHandle readOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readAddressValue(address);
    return (value == 0 ? null : new LinuxOopHandle(this, value));
}
 
Example #5
Source File: BsdDebuggerLocal.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/** From the BsdDebugger interface */
public BsdOopHandle readOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readAddressValue(address);
    return (value == 0 ? null : new BsdOopHandle(this, value));
}
 
Example #6
Source File: BsdDebuggerLocal.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/** From the BsdDebugger interface */
public BsdOopHandle readOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readAddressValue(address);
    return (value == 0 ? null : new BsdOopHandle(this, value));
}
 
Example #7
Source File: LinuxDebuggerLocal.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/** From the LinuxDebugger interface */
public LinuxOopHandle readOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readAddressValue(address);
    return (value == 0 ? null : new LinuxOopHandle(this, value));
}
 
Example #8
Source File: BsdDebuggerLocal.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/** From the BsdDebugger interface */
public BsdOopHandle readOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readAddressValue(address);
    return (value == 0 ? null : new BsdOopHandle(this, value));
}
 
Example #9
Source File: LinuxDebuggerLocal.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/** From the LinuxDebugger interface */
public LinuxOopHandle readOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readAddressValue(address);
    return (value == 0 ? null : new LinuxOopHandle(this, value));
}
 
Example #10
Source File: BsdDebuggerLocal.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/** From the BsdDebugger interface */
public BsdOopHandle readOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readAddressValue(address);
    return (value == 0 ? null : new BsdOopHandle(this, value));
}
 
Example #11
Source File: BsdDebuggerLocal.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/** From the BsdDebugger interface */
public BsdOopHandle readOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readAddressValue(address);
    return (value == 0 ? null : new BsdOopHandle(this, value));
}
 
Example #12
Source File: LinuxDebuggerLocal.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
/** From the LinuxDebugger interface */
public LinuxOopHandle readOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readAddressValue(address);
    return (value == 0 ? null : new LinuxOopHandle(this, value));
}
 
Example #13
Source File: BsdDebuggerLocal.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
/** From the BsdDebugger interface */
public BsdOopHandle readOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readAddressValue(address);
    return (value == 0 ? null : new BsdOopHandle(this, value));
}
 
Example #14
Source File: LinuxDebuggerLocal.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/** From the LinuxDebugger interface */
public LinuxOopHandle readOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readAddressValue(address);
    return (value == 0 ? null : new LinuxOopHandle(this, value));
}
 
Example #15
Source File: LinuxDebuggerLocal.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/** From the LinuxDebugger interface */
public LinuxOopHandle readOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readAddressValue(address);
    return (value == 0 ? null : new LinuxOopHandle(this, value));
}
 
Example #16
Source File: BsdDebuggerLocal.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/** From the BsdDebugger interface */
public BsdOopHandle readOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readAddressValue(address);
    return (value == 0 ? null : new BsdOopHandle(this, value));
}
 
Example #17
Source File: LinuxDebuggerLocal.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public LinuxOopHandle readCompOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readCompOopAddressValue(address);
    return (value == 0 ? null : new LinuxOopHandle(this, value));
}
 
Example #18
Source File: LinuxDebuggerLocal.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public LinuxOopHandle readCompOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readCompOopAddressValue(address);
    return (value == 0 ? null : new LinuxOopHandle(this, value));
}
 
Example #19
Source File: BsdDebuggerLocal.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public BsdOopHandle readCompOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readCompOopAddressValue(address);
    return (value == 0 ? null : new BsdOopHandle(this, value));
}
 
Example #20
Source File: BsdDebuggerLocal.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public BsdOopHandle readCompOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readCompOopAddressValue(address);
    return (value == 0 ? null : new BsdOopHandle(this, value));
}
 
Example #21
Source File: LinuxDebuggerLocal.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public LinuxOopHandle readCompOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readCompOopAddressValue(address);
    return (value == 0 ? null : new LinuxOopHandle(this, value));
}
 
Example #22
Source File: BsdDebuggerLocal.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public BsdOopHandle readCompOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readCompOopAddressValue(address);
    return (value == 0 ? null : new BsdOopHandle(this, value));
}
 
Example #23
Source File: LinuxDebuggerLocal.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public LinuxOopHandle readCompOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readCompOopAddressValue(address);
    return (value == 0 ? null : new LinuxOopHandle(this, value));
}
 
Example #24
Source File: BsdDebuggerLocal.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public BsdOopHandle readCompOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readCompOopAddressValue(address);
    return (value == 0 ? null : new BsdOopHandle(this, value));
}
 
Example #25
Source File: LinuxDebuggerLocal.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
public LinuxOopHandle readCompOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readCompOopAddressValue(address);
    return (value == 0 ? null : new LinuxOopHandle(this, value));
}
 
Example #26
Source File: BsdDebuggerLocal.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
public BsdOopHandle readCompOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readCompOopAddressValue(address);
    return (value == 0 ? null : new BsdOopHandle(this, value));
}
 
Example #27
Source File: LinuxDebuggerLocal.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
public LinuxOopHandle readCompOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readCompOopAddressValue(address);
    return (value == 0 ? null : new LinuxOopHandle(this, value));
}
 
Example #28
Source File: BsdDebuggerLocal.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
public BsdOopHandle readCompOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readCompOopAddressValue(address);
    return (value == 0 ? null : new BsdOopHandle(this, value));
}
 
Example #29
Source File: LinuxDebuggerLocal.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
public LinuxOopHandle readCompOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readCompOopAddressValue(address);
    return (value == 0 ? null : new LinuxOopHandle(this, value));
}
 
Example #30
Source File: BsdDebuggerLocal.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
public BsdOopHandle readCompOopHandle(long address)
        throws UnmappedAddressException, UnalignedAddressException,
            NotInHeapException {
    long value = readCompOopAddressValue(address);
    return (value == 0 ? null : new BsdOopHandle(this, value));
}