Searched refs:symbol (Results 1 - 25 of 76) sorted by relevance

1234

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DNoSuchSymbolException.java28 private String symbol; field in class:NoSuchSymbolException
30 public NoSuchSymbolException(String symbol) { argument
32 this.symbol = symbol;
35 public NoSuchSymbolException(String symbol, Throwable cause) { argument
37 this.symbol = symbol;
40 public NoSuchSymbolException(String symbol, String detail) { argument
42 this.symbol = symbol;
45 NoSuchSymbolException(String symbol, String detail, Throwable cause) argument
[all...]
H A DSymbolLookup.java28 /** Looks up the given symbol in the context of the given object.
40 public Address lookup(String objectName, String symbol); argument
42 /** Looks up the given symbol in the context of the given object,
43 assuming that symbol refers to a Java object.
60 public OopHandle lookupOop(String objectName, String symbol); argument
/openjdk7/hotspot/src/os/solaris/vm/
H A Ddecoder_solaris.cpp29 bool ElfDecoder::demangle(const char* symbol, char *buf, int buflen) { argument
30 return !cplus_demangle(symbol, buf, (size_t)buflen);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DSymbolTable.java24 * This class is a symbol table implementation that guarantees that
29 * The symbol table performs the same task as <code>String.intern()</code>
38 * Users of the symbol table can provide their own symbol hashing
71 /** Constructs a symbol table with a default number of buckets. */
76 /** Constructs a symbol table with a specified number of buckets. */
87 * Adds the specified symbol to the symbol table and returns a
88 * reference to the unique symbol. If the symbol alread
94 addSymbol(String symbol) argument
169 hash(String symbol) argument
207 containsSymbol(String symbol) argument
280 public String symbol; field in class:SymbolTable.Entry
300 Entry(String symbol, Entry next) argument
[all...]
H A DShadowedSymbolTable.java25 * Shadowed symbol table.
27 * The table has a reference to the main symbol table and is
28 * not allowed to add new symbols to the main symbol table.
29 * New symbols are added to the shadow symbol table and are local
42 /** Main symbol table. */
49 /** Constructs a shadow of the specified symbol table. */
59 * Adds the specified symbol to the symbol table and returns a
60 * reference to the unique symbol. If the symbol alread
66 addSymbol(String symbol) argument
102 hash(String symbol) argument
[all...]
H A DSynchronizedSymbolTable.java24 * Synchronized symbol table.
39 /** Main symbol table. */
46 /** Constructs a synchronized symbol table. */
51 // construct synchronized symbol table of default size
56 // construct synchronized symbol table of given size
66 * Adds the specified symbol to the symbol table and returns a
67 * reference to the unique symbol. If the symbol already exists,
68 * the previous symbol referenc
73 addSymbol(String symbol) argument
105 containsSymbol(String symbol) argument
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Ddecoder_linux.cpp30 bool ElfDecoder::demangle(const char* symbol, char *buf, int buflen) { argument
38 if ((result = abi::__cxa_demangle(symbol, NULL, NULL, &status)) != NULL) {
/openjdk7/jdk/src/macosx/native/jobjc/src/core/java/com/apple/jobjc/
H A DMacOSXFramework.java31 private static native void getConstant(final long frameworkPtr, String symbol, final long bufferPtr, final int size); argument
60 protected void getConstant(final String symbol, final long retValPtr, final int size){ argument
63 getConstant(getFrameworkPtr(), symbol, retValPtr, size);
66 protected void getConstant(final String symbol, final NativeArgumentBuffer out, final int size){ argument
67 getConstant(symbol, out.retValPtr, size);
70 protected void getConstant(final String symbol, final Struct out, final int size){ argument
71 getConstant(symbol, out.raw.bufferPtr, size);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DInstanceConstructor.java55 ClosestSymbol symbol = lo.closestSymbolToPC(vtblPtr);
56 if (symbol != null) {
57 message += " (nearest symbol is " + symbol.getName() + ")";
/openjdk7/jdk/src/macosx/native/jobjc/src/core/native/
H A DMacOSXFramework.m60 const char *symbol = (*env)->GetStringUTFChars(env, constSymbol, JNI_FALSE);
62 void *data = dlsym(handle, symbol);
63 (*env)->ReleaseStringUTFChars(env, constSymbol, symbol);
/openjdk7/jdk/test/java/util/Formattable/
H A DStockName.java36 private String symbol, companyName, frenchCompanyName; field in class:StockName
38 public StockName(String symbol, String companyName, argument
41 this.symbol = symbol;
55 String out = (usesymbol ? symbol : name);
78 return String.format("%s - %s", symbol, companyName);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DHotSpotSolarisVtblAccess.java50 private String mangle(String symbol) { argument
51 String[] parts = symbol.split("::");
/openjdk7/jdk/test/sun/misc/IoTrace/
H A DioTraceTest.sh28 ${TESTJAVA}/bin/javac -XDignore.symbol.file=true -d ${TESTCLASSES} *.java
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/
H A DValidationContext.java58 // get symbol from symbol table
59 public String getSymbol (String symbol); argument
/openjdk7/hotspot/src/os/bsd/vm/
H A Ddecoder_machO.hpp41 virtual bool demangle(const char* symbol, char* buf, int buflen);
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddecoder_elf.hpp44 bool demangle(const char* symbol, char *buf, int buflen);
H A Ddecoder.hpp40 file_not_found, // could not found symbol file (on windows), such as jvm.pdb or jvm.map
52 // demangle a C++ symbol
53 virtual bool demangle(const char* symbol, char* buf, int buflen) = 0;
91 virtual bool demangle(const char* symbol, char* buf, int buflen) { argument
105 static bool demangle(const char* symbol, char* buf, int buflen);
/openjdk7/hotspot/src/share/vm/ci/
H A DciSignature.cpp39 ciSignature::ciSignature(ciKlass* accessing_klass, constantPoolHandle cpool, ciSymbol* symbol) { argument
43 _symbol = symbol;
52 Symbol* sh = symbol->get_symbol();
85 ciSignature::ciSignature(ciKlass* accessing_klass, ciSymbol* symbol, ciMethodType* method_type) : argument
86 _symbol(symbol),
147 tty->print("<ciSignature symbol=");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DDLL.java70 /** Look up a symbol; returns absolute address or null if symbol was
72 public Address lookupSymbol(String symbol) throws COFFException { argument
77 return lookupSymbol(symbol, exports,
167 private Address lookupSymbol(String symbol, ExportDirectoryTable exports, argument
172 if (symbol.equals(cur)) {
177 if (symbol.compareTo(cur) < 0) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdDebuggerLocal.java38 (libsaproc.so). Library maps and symbol table management are done in
89 private native long lookupByName0(String objectName, String symbol) argument
347 private long handleGCC32ABI(long addr, String symbol) throws DebuggerException { argument
348 if (useGCC32ABI && symbol.startsWith("_ZTV")) {
356 public synchronized Address lookup(String objectName, String symbol) { argument
363 long addr = lookupByName0(objectName, symbol);
364 return (addr == 0)? null : new BsdAddress(this, handleGCC32ABI(addr, symbol));
367 String objectName, symbol;
371 long addr = debugger.lookupByName0(objectName, symbol);
372 result = (addr == 0 ? null : new BsdAddress(debugger, handleGCC32ABI(addr, symbol)));
385 lookupOop(String objectName, String symbol) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxDebuggerLocal.java38 (libsaproc.so). Library maps and symbol table management are done in
87 private native long lookupByName0(String objectName, String symbol) argument
345 private long handleGCC32ABI(long addr, String symbol) throws DebuggerException { argument
346 if (useGCC32ABI && symbol.startsWith("_ZTV")) {
354 public synchronized Address lookup(String objectName, String symbol) { argument
361 long addr = lookupByName0(objectName, symbol);
362 return (addr == 0)? null : new LinuxAddress(this, handleGCC32ABI(addr, symbol));
365 String objectName, symbol;
369 long addr = debugger.lookupByName0(objectName, symbol);
370 result = (addr == 0 ? null : new LinuxAddress(debugger, handleGCC32ABI(addr, symbol)));
383 lookupOop(String objectName, String symbol) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/elf/
H A DELFFileParser.java153 /** Used to cache symbol table lookup. */
155 /** Used to cache dynamic symbol table lookup. */
302 // Check dynamic symbol table for symbol name.
303 ELFSymbol symbol = null;
310 (symbol = sh.getELFSymbol(i)).getName())) {
311 return symbol;
313 (symbol = sh.getELFSymbol(
315 return symbol;
320 // Check symbol tabl
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/validation/
H A DValidationState.java186 public String getSymbol (String symbol) { argument
188 return fSymbolTable.addSymbol(symbol);
189 // if there is no symbol table, we return java-internalized string,
190 // because symbol table strings are also java-internalzied.
192 // compared by reference with other symbol table string. -SG
193 return symbol.intern();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/
H A DRemoteDebugger.java55 public long lookupInProcess(String objectName, String symbol) throws RemoteException; argument
/openjdk7/hotspot/src/os/windows/vm/
H A Ddecoder_windows.hpp48 bool demangle(const char* symbol, char *buf, int buflen);

Completed in 59 milliseconds

1234