Searched defs:symbol (Results 1 - 25 of 42) sorted by relevance

12

/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/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/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DHotSpotSolarisVtblAccess.java50 private String mangle(String symbol) { argument
51 String[] parts = symbol.split("::");
H A DHotSpotTypeDataBase.java148 // Fetch the address of the VMTypeEntry*. We get this symbol first
149 // and try to use it to make sure that symbol lookup is working.
565 private long getLongValueFromProcess(String symbol) { argument
566 return lookupInProcess(symbol).getCIntegerAt(0, C_INT64_SIZE, true);
569 private Address lookupInProcess(String symbol) throws NoSuchSymbolException { argument
572 Address addr = symbolLookup.lookup(jvmLibNames[i], symbol);
585 throw new NoSuchSymbolException(symbol,
586 "Could not find symbol \"" + symbol +
/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/jaxp/src/com/sun/org/apache/xerces/internal/util/
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...]
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...]
/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/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/src/share/vm/utilities/
H A Ddecoder.cpp106 bool Decoder::demangle(const char* symbol, char* buf, int buflen) { argument
113 return decoder->demangle(symbol, buf, 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/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/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/debugger/posix/
H A DDSO.java122 /** Look up a symbol; returns absolute address or null if symbol was
124 public Address lookupSymbol(String symbol) throws ELFException { argument
125 ELFSymbol sym = getFile().getHeader().getELFSymbol(symbol);
/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
H A DRemoteDebuggerServer.java64 public long lookupInProcess(String objectName, String symbol) throws RemoteException { argument
65 Address addr = debugger.lookup(objectName, 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/src/os/bsd/vm/
H A Ddecoder_machO.cpp35 bool MachODecoder::demangle(const char* symbol, char *buf, int buflen) { argument
42 if ((result = abi::__cxa_demangle(symbol, NULL, NULL, &status)) != NULL) {
59 uint32_t off = symt->symoff; /* symbol table offset (within this mach file) */
60 uint32_t nsyms = symt->nsyms; /* number of symbol table entries */
64 // iterate through symbol table trying to match our offset
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/comp/
H A DApt.java193 void computeAnnotationSet(Symbol symbol, Set<String> annotationSet) { argument
194 if (symbol != null ) {
195 if (symbol.getAnnotationMirrors() != null)
196 for(Attribute.Compound compound: symbol.getAnnotationMirrors())
199 if (symbol instanceof Symbol.MethodSymbol) // add parameter annotations
200 for(Symbol param: ((MethodSymbol) symbol).params())
203 if (symbol.members() != null) {
204 for(Scope.Entry e = symbol.members().elems; e != null; e = e.sibling)
/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/dummy/
H A DDummyDebugger.java108 public Address lookup(String objectName, String symbol) { argument
112 public OopHandle lookupOop(String objectName, String symbol) { argument
/openjdk7/hotspot/src/share/vm/classfile/
H A Ddictionary.hpp239 Symbol* symbol() const { return literal(); } function in class:SymbolPropertyEntry
261 symbol()->print_value_on(st);
300 SymbolPropertyEntry* new_entry(unsigned int hash, Symbol* symbol, intptr_t symbol_mode) { argument
301 SymbolPropertyEntry* entry = (SymbolPropertyEntry*) Hashtable<Symbol*, mtSymbol>::new_entry(hash, symbol);
303 symbol->increment_refcount();
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DRFC2253Parser.java413 * @param symbol
416 static String removeWhiteSpace(String str, String symbol) { argument
417 return removeWSandReplace(str, symbol, symbol);
424 * @param symbol
428 static String removeWSandReplace(String str, String symbol, String replace) { argument
435 for (int j = 0; (k = str.indexOf(symbol, j)) >= 0; j = k + 1) {

Completed in 74 milliseconds

12