Uses of Class
javax.tools.diagnostics.image.CorruptDataException

Packages that use CorruptDataException
javax.tools.diagnostics.image Package of interfaces representing a snapshot of a program. 
javax.tools.diagnostics.runtime Definition of an abstract view of a managed runtime. 
javax.tools.diagnostics.runtime.java Definition of an abstract view of a Java runtime. 
 

Uses of CorruptDataException in javax.tools.diagnostics.image
 

Methods in javax.tools.diagnostics.image that throw CorruptDataException
 ImagePointer ImageStackFrame.getBasePointer()
          Get the base pointer of the stack frame.
 byte ImagePointer.getByteAt(long index)
          Get the value at the given offset from this pointer.
 java.lang.String ImageProcess.getCommandLine()
          Fetch the command line for this process.
 ImageThread ImageProcess.getCurrentThread()
          Find the thread which triggered the creation of the image
 double ImagePointer.getDoubleAt(long index)
          Get the value at the given offset from this pointer.
 java.util.Properties ImageProcess.getEnvironment()
          Get the environment variables for this process.
 ImageModule ImageProcess.getExecutable()
          Get the module representing the executable within the image.
 float ImagePointer.getFloatAt(long index)
          Get the value at the given offset from this pointer.
 java.lang.String Image.getHostName()
          Get the host name of the system where the image was running.
 java.lang.String ImageProcess.getID()
          Get the system-wide identifier for the process.
 java.lang.String ImageThread.getID()
          Fetch a unique identifier for the thread.
 int ImagePointer.getIntAt(long index)
          Get the value at the given offset from this pointer.
 java.util.List<ImageModule> ImageProcess.getLibraries()
          Get the set of shared libraries which are loaded in this process.
 long ImagePointer.getLongAt(long index)
          Get the value at the given offset from this pointer.
 java.lang.String ImageModule.getName()
          Get the file name of the shared library.
 ImagePointer ImagePointer.getPointerAt(long index)
          Get the value at the given offset from this pointer.
 ImagePointer ImageStackFrame.getProcedureAddress()
          Get the address of the current instruction within the procedure being executed.
 java.lang.String ImageStackFrame.getProcedureName()
          Returns a string describing the procedure at this stack frame.
 java.lang.String Image.getProcessorSubType()
          Get the precise model of the CPU.
 java.lang.String Image.getProcessorType()
          Get the family name for the processor on which the image was running.
 java.util.Properties ImageModule.getProperties()
          Get the table of properties associated with this module.
 short ImagePointer.getShortAt(long index)
          Get the value at the given offset from this pointer.
 java.lang.String ImageProcess.getSignalName()
          Get the name of the OS signal in this process which triggered the creation of this image.
 int ImageProcess.getSignalNumber()
          Get the OS signal number in this process which triggered the creation of this image.
 java.lang.String Image.getSystemSubType()
          Get the detailed name of the operating system.
 java.lang.String Image.getSystemType()
          Get the family name for the operating system.
 java.lang.Number ImageRegister.getValue()
          Get the value for the register.
 

Uses of CorruptDataException in javax.tools.diagnostics.runtime
 

Methods in javax.tools.diagnostics.runtime that throw CorruptDataException
 java.lang.String ManagedRuntime.getFullVersion()
          Deprecated. Use "getVersion()" instead
 java.lang.String ManagedRuntime.getVersion()
          Returns version data available for this runtime instance.
 

Uses of CorruptDataException in javax.tools.diagnostics.runtime.java
 

Methods in javax.tools.diagnostics.runtime.java that throw CorruptDataException
 void JavaObject.arraycopy(int srcStart, java.lang.Object dst, int dstStart, int length)
          Copies data from the array this JavaObject represents into an array.
 JavaClass JavaClassLoader.findClass(java.lang.String name)
           Find a class by name within this class loader.
 java.lang.Object JavaField.get(JavaObject object)
           Get the contents of a field of an Object.
 ImagePointer JavaLocation.getAddress()
           Fetches the absolute address of the code which this location represents.
 int JavaObject.getArraySize()
          Get the number of elements in this array.
 ImagePointer JavaStackFrame.getBasePointer()
          Get a pointer to the base of this stack frame within memory.
 boolean JavaField.getBoolean(JavaObject object)
           Get the contents of a boolean field
 byte JavaField.getByte(JavaObject object)
           Get the contents of a byte field
 char JavaField.getChar(JavaObject object)
           Get the contents of a char field
 JavaClassLoader JavaClass.getClassLoader()
          Fetch the class loader associated with this class.
 int JavaLocation.getCompilationLevel()
           Get the compilation level for this location.
 JavaClass JavaClass.getComponentType()
          For array classes, returns a JavaClass representing the component type of this array class.
 JavaClass JavaMember.getDeclaringClass()
           Get the class which declares this field or method
 double JavaField.getDouble(JavaObject object)
           Get the contents of a double field or of another primitive field whose type is convertible to double via a widening conversion.
 ImagePointer JavaVMOption.getExtraInfo()
          Fetch the extraInfo component of this option.
 java.lang.String JavaLocation.getFilename()
           Get the source file name.
 float JavaField.getFloat(JavaObject object)
           Get the contents of a float field or of another primitive field whose type is convertible to float via a widening conversion.
 long JavaObject.getHashcode()
          Fetch the basic hash code for the object.
 JavaHeap JavaObject.getHeap()
          Gets the heap where this object is located.
 boolean JavaVMInitArgs.getIgnoreUnrecognized()
          Fetch the ignoreUnrecognized field from the JavaVMInitArgs structure used to create this Java Virtual Machine.
 ImageThread JavaThread.getImageThread()
          Returns the operating system level thread that executes the Java thread.
 int JavaField.getInt(JavaObject object)
           Get the contents of an int field or of another primitive field whose type is convertible to int via a widening conversion.
 JavaClass JavaObject.getJavaClass()
          Get the JavaClass instance which represents the class of this object.
 ImagePointer JavaRuntime.getJavaVM()
          Get the object that represents the virtual machine
 JavaVMInitArgs JavaRuntime.getJavaVMInitArgs()
          Fetch the JavaVMInitArgs which were used to create this VM.
 ImagePointer JavaThread.getJNIEnv()
          Get the address of the JNIEnv structure which represents this thread instance in JNI.
 int JavaLocation.getLineNumber()
           Get the line number.
 JavaLocation JavaStackFrame.getLocation()
           Returns the JavaLocation that represents the location of this JavaStackFrame within the Java program.
 long JavaField.getLong(JavaObject object)
           Get the contents of a long field or of another primitive field whose type is convertible to long via a widening conversion.
 JavaMethod JavaLocation.getMethod()
           Get the method which contains the point of execution.
 int JavaMember.getModifiers()
           Get the set of modifiers for this field or method - a set of bits The values for the constants representing the modifiers can be obtained from Modifier.
 int JavaClass.getModifiers()
           Return the Java language modifiers for this class.
 java.lang.String JavaMember.getName()
           Get the name of the field or method
 java.lang.String JavaClass.getName()
          Get the name of the class in a form that follows the Class.getName() definition.
 java.lang.String JavaThread.getName()
          Return the name of the thread.
 java.lang.String JavaMonitor.getName()
          Get the name of a monitor.
 JavaObject JavaClass.getObject()
           Fetch the Class object associated with this class.
 JavaObject JavaThread.getObject()
          Returns the JavaObject representing the instance of the class or subclass of Thread that represents this thread in the Java Virtual Machine.
 JavaObject JavaClassLoader.getObject()
          Get the ClassLoader instance (represented by a JavaObject associated with this class loader.
 JavaObject JavaRuntime.getObjectAtAddress(ImagePointer address)
          Gets the object located at address address in the heap.
 java.lang.String JavaVMOption.getOptionString()
          Fetch the optionString component of the option.
 JavaThread JavaMonitor.getOwner()
          Get the thread which currently owns the monitor.
 long JavaObject.getPersistentHashcode()
          Fetch the basic hash code of the object in the image.
 int JavaThread.getPriority()
          Get the Java priority of the thread.
 int JavaReference.getReachability()
           Get the reachability of the target object via this specific reference.
 int JavaReference.getReferenceType()
           Get the reference type, as defined in the JVMTI specification.
 int JavaReference.getRootType()
           Get the root type, as defined in the JVMTI specification.
 short JavaField.getShort(JavaObject object)
           Get the contents of a short field or of another primitive field whose type is convertible to short via a widening conversion.
 java.lang.String JavaMember.getSignature()
           Get the signature of the field or method
 long JavaObject.getSize()
          Get the number of bytes of memory occupied by this object.
 java.lang.Object JavaReference.getSource()
           Get the source of this reference if available.
 int JavaThread.getState()
          Get the state of the thread when the dump was generated.
 java.lang.String JavaField.getString(JavaObject object)
           Get the contents of a string field
 JavaClass JavaClass.getSuperclass()
           Get the super class of this class.
 java.lang.Object JavaReference.getTarget()
           Get the object referred to by this reference.
 java.lang.Object JavaRuntime.getTraceBuffer(java.lang.String bufferName, boolean formatted)
           
 java.lang.Object JavaStackFrame.getVariable(int slot)
          Gets the value of a variable from a stack frame.
 int JavaVMInitArgs.getVersion()
          Fetch the JNI version from the JavaVMInitArgs structure used to create this Java Virtual Machine.
 boolean JavaObject.isArray()
          Returns true if this JavaObject represents an array.
 boolean JavaClass.isArray()
          This method returns true if the class represented by this JavaClass is an array class.
 boolean JavaReference.isClassReference()
           Check to see if this reference points to a class.
 boolean JavaReference.isObjectReference()
           Check to see if this reference points to an object in the heap
 



Copyright © 2010. All Rights Reserved.