HomeSort by relevance Sort by last modified time
    Searched full:symbol (Results 176 - 200 of 5049) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/base/third_party/symbolize/
symbolize.h 33 // counters to their corresponding symbol names on linux platforms.
34 // This library has a minimal implementation of an ELF symbol table
42 // 2. Open the mapped file and find a regular symbol table inside.
43 // Iterate over symbols in the symbol table and look for the symbol
44 // containing the program counter. If such a symbol is found,
45 // obtain the symbol name, and demangle the symbol if possible.
46 // If the symbol isn't found in the regular symbol table (binary i
    [all...]
  /external/llvm/include/llvm/Object/
Archive.h 124 class Symbol {
130 bool operator ==(const Symbol &other) const {
134 Symbol(const Archive *p, uint32_t symi, uint32_t stri)
140 Symbol getNext() const;
144 Symbol symbol; member in class:llvm::object::Archive::symbol_iterator
146 symbol_iterator(const Symbol &s) : symbol(s) {}
147 const Symbol *operator->() const {
148 return &symbol;
    [all...]
  /external/lzma/C/
Ppmd7Enc.c 77 void Ppmd7_EncodeSymbol(CPpmd7 *p, CPpmd7z_RangeEnc *rc, int symbol)
85 if (s->Symbol == symbol)
97 if ((++s)->Symbol == symbol)
108 p->HiBitsFlag = p->HB2Flag[p->FoundState->Symbol];
110 MASK(s->Symbol) = 0;
112 do { MASK((--s)->Symbol) = 0; } while (--i);
119 if (s->Symbol == symbol)
    [all...]
  /frameworks/compile/libbcc/lib/ExecutionEngine/
ELFObjectLoaderImpl.cpp 42 // Retrive the pointer to the symbol table.
46 ALOGW("Object doesn't contain any symbol table.");
107 const ELFSymbol<32> *symbol = mSymTab->getByName(pName); local
108 if (symbol == NULL) {
109 ALOGV("Request symbol '%s' is not found in the object!", pName);
113 return symbol->getAddress(mObject->getHeader()->getMachine(),
122 const ELFSymbol<32> *symbol = mSymTab->getByName(pName); local
124 if (symbol == NULL) {
125 ALOGV("Request symbol '%s' is not found in the object!", pName);
129 return static_cast<size_t>(symbol->getSize())
156 ELFSymbol<32> *symbol = (*mSymTab)[i]; local
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
workaround.hpp 233 # define BOOST_WORKAROUND(symbol, test) \
234 ((symbol ## _WORKAROUND_GUARD + 0 == 0) && \
235 (symbol != 0) && (1 % (( (symbol test) ) + 1)))
242 // (symbol test) + 1 => if (symbol test) then 2 else 1
243 // 1 % ((symbol test) + 1) => if (symbol test) then 1 else 0
249 // symbol test => if (symbol <= x) then 1 else -
    [all...]
  /external/llvm/tools/llvm-readobj/
MachODumper.cpp 196 MachOSymbol &Symbol) {
199 Symbol.StringIndex = Entry.StringIndex;
200 Symbol.Type = Entry.Type;
201 Symbol.SectionIndex = Entry.SectionIndex;
202 Symbol.Flags = Entry.Flags;
203 Symbol.Value = Entry.Value;
207 Symbol.StringIndex = Entry.StringIndex;
208 Symbol.Type = Entry.Type;
209 Symbol.SectionIndex = Entry.SectionIndex;
210 Symbol.Flags = Entry.Flags
    [all...]
  /bionic/libdl/
dltest.c 41 {"symbol", required_argument, 0, 's'},
48 "specify a library path to look up symbol",
49 "specify symbol to look up",
56 "\t%s [-l <libname>] -s <symbol name>\n"
117 fprintf(stderr, "You must specify a symbol!\n");
124 void *handle, *symbol; local
132 printf("opening symbol [%s]\n", symname);
133 symbol = dlsym(handle, symname);
141 else printf("successfully opened symbol\n");
  /cts/tools/signature-tools/src/signature/converter/dex/
GenericSignatureParser.java 98 private char symbol; // 0: eof; else valid term symbol or first char of field in class:GenericSignatureParser
153 switch (symbol) {
274 while (symbol > 0) {
287 if (symbol == '<') {
290 while ((symbol != '>') && (symbol > 0)) {
311 if (symbol == 'L' || symbol == '[' || symbol == 'T')
    [all...]
  /external/chromium_org/third_party/libxml/src/
xmlmodule.c 98 * @name: the name of the symbol
99 * @symbol: the resulting symbol address
101 * Lookup for a symbol address in the given module
103 * Returns 0 if the symbol was found, or -1 in case of error
106 xmlModuleSymbol(xmlModulePtr module, const char *name, void **symbol)
110 if ((NULL == module) || (symbol == NULL)) {
117 rc = xmlModulePlatformSymbol(module->handle, name, symbol);
123 "failed to find symbol: %s\n",
231 * returns 0 on success and the loaded symbol in result, and -1 on error
    [all...]
  /external/elfutils/libelf/
gelf.h 93 /* Symbol table entry. */
97 every dynamic symbol. */
126 /* Type for version symbol information. */
232 /* Retrieve symbol information from the symbol table at the given index. */
235 /* Update symbol information in the symbol table at the given index. */
239 /* Retrieve symbol information and separate section index from the
240 symbol table at the given index. */
245 /* Update symbol information and separate section index in the symbo
    [all...]
  /external/iptables/extensions/
libxt_tos.c 41 const struct tos_symbol_info *symbol; local
46 "[!] --tos symbol Match TOS field (IPv4 only) by symbol\n"
49 for (symbol = tos_symbol_names; symbol->name != NULL; ++symbol)
51 symbol->value, symbol->value, symbol->name);
  /external/libxml2/
xmlmodule.c 98 * @name: the name of the symbol
99 * @symbol: the resulting symbol address
101 * Lookup for a symbol address in the given module
103 * Returns 0 if the symbol was found, or -1 in case of error
106 xmlModuleSymbol(xmlModulePtr module, const char *name, void **symbol)
110 if ((NULL == module) || (symbol == NULL)) {
117 rc = xmlModulePlatformSymbol(module->handle, name, symbol);
123 "failed to find symbol: %s\n",
231 * returns 0 on success and the loaded symbol in result, and -1 on error
    [all...]
  /external/openfst/src/include/fst/script/
print-impl.h 80 string symbol = syms->Find(id); local
81 if (symbol == "") {
83 << " is not mapped to any textual symbol"
84 << ", symbol table = " << syms->Name()
86 symbol = "?";
88 *ostrm_ << symbol; local
137 const SymbolTable *isyms_; // ilabel symbol table
138 const SymbolTable *osyms_; // olabel symbol table
139 const SymbolTable *ssyms_; // slabel symbol table
  /external/oprofile/libpp/
callgraph_container.h 19 #include "symbol.h"
43 * Add a symbol arc.
44 * @param caller The calling symbol
45 * @param callee The called symbol
70 * the symbol to the relevant arc data.
77 /// callers of this symbol
79 /// callees of this symbol
93 /// symbol objects pointed to by pointers in vector cg_syms
113 * @param sym_filter symbol filter
  /frameworks/compile/mclinker/include/mcld/LD/
NamePool.h 34 * \brief Store symbol and search symbol by name. Can help symbol resolution.
50 /// createSymbol - create a symbol but do not insert into the pool.
51 /// The created symbol did not go through the path of symbol resolution.
60 /// insertSymbol - insert a symbol and resolve the symbol immediately
63 /// @param pResult the result of symbol resultion.
  /external/chromium/base/debug/
stack_trace_posix.cc 68 // Look for the start of a mangled symbol, from search_from.
72 break; // Mangled symbol not found.
75 // Look for the end of the mangled symbol.
84 // Try to demangle the mangled symbol candidate.
89 // Remove the mangled symbol.
91 // Insert the demangled symbol.
93 // Next time, we'll start right after the demangled symbol we inserted.
105 // Gets the backtrace as a vector of strings. If possible, resolve symbol
107 // if any symbol name is resolved. Returns false on error and *may* fill
119 char symbol[1024] local
    [all...]
  /external/chromium_org/tools/
unused-symbols-report.py 29 """Demangle a C++ symbol by passing it through c++filt."""
39 """Attempt to prettify a C++ symbol by some basic heuristics."""
58 (target name, path to .o file, demangled symbol)
66 symbol, path = match.groups()
67 symbol = Unyuck(Demangle(symbol))
78 yield target, path, symbol
105 .symbol {
126 """Print HTML given an iterable of (target, path, symbol) tuples."""
128 for target, path, symbol in iter
    [all...]
  /external/llvm/test/MC/ELF/
tls-i386.s 20 // CHECK: Symbol {
29 // CHECK-NEXT: Symbol {
38 // CHECK-NEXT: Symbol {
47 // CHECK-NEXT: Symbol {
56 // CHECK-NEXT: Symbol {
65 // CHECK-NEXT: Symbol {
74 // CHECK-NEXT: Symbol {
83 // CHECK-NEXT: Symbol {
92 // CHECK-NEXT: Symbol {
101 // CHECK-NEXT: Symbol {
    [all...]
  /external/kernel-headers/original/linux/
a.out.h 200 /* The following type indicates the definition of a symbol as being
201 an indirect reference to another symbol. The other symbol
202 appears as an undefined reference, immediately following this symbol.
204 Indirection is asymmetrical. The other symbol's value will be used
205 to satisfy requests for the indirect symbol, but not vice versa.
206 If the other symbol does not have a definition, libraries will
216 The address of the set is made into an N_SETV symbol
218 This symbol acts like a N_DATA global symbol
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include-fixed/linux/
a.out.h 209 /* The following type indicates the definition of a symbol as being
210 an indirect reference to another symbol. The other symbol
211 appears as an undefined reference, immediately following this symbol.
213 Indirection is asymmetrical. The other symbol's value will be used
214 to satisfy requests for the indirect symbol, but not vice versa.
215 If the other symbol does not have a definition, libraries will
225 The address of the set is made into an N_SETV symbol
227 This symbol acts like a N_DATA global symbol
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
a.out.h 200 /* The following type indicates the definition of a symbol as being
201 an indirect reference to another symbol. The other symbol
202 appears as an undefined reference, immediately following this symbol.
204 Indirection is asymmetrical. The other symbol's value will be used
205 to satisfy requests for the indirect symbol, but not vice versa.
206 If the other symbol does not have a definition, libraries will
216 The address of the set is made into an N_SETV symbol
218 This symbol acts like a N_DATA global symbol
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/linux/
a.out.h 209 /* The following type indicates the definition of a symbol as being
210 an indirect reference to another symbol. The other symbol
211 appears as an undefined reference, immediately following this symbol.
213 Indirection is asymmetrical. The other symbol's value will be used
214 to satisfy requests for the indirect symbol, but not vice versa.
215 If the other symbol does not have a definition, libraries will
225 The address of the set is made into an N_SETV symbol
227 This symbol acts like a N_DATA global symbol
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
a.out.h 200 /* The following type indicates the definition of a symbol as being
201 an indirect reference to another symbol. The other symbol
202 appears as an undefined reference, immediately following this symbol.
204 Indirection is asymmetrical. The other symbol's value will be used
205 to satisfy requests for the indirect symbol, but not vice versa.
206 If the other symbol does not have a definition, libraries will
216 The address of the set is made into an N_SETV symbol
218 This symbol acts like a N_DATA global symbol
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/linux/
a.out.h 209 /* The following type indicates the definition of a symbol as being
210 an indirect reference to another symbol. The other symbol
211 appears as an undefined reference, immediately following this symbol.
213 Indirection is asymmetrical. The other symbol's value will be used
214 to satisfy requests for the indirect symbol, but not vice versa.
215 If the other symbol does not have a definition, libraries will
225 The address of the set is made into an N_SETV symbol
227 This symbol acts like a N_DATA global symbol
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
a.out.h 200 /* The following type indicates the definition of a symbol as being
201 an indirect reference to another symbol. The other symbol
202 appears as an undefined reference, immediately following this symbol.
204 Indirection is asymmetrical. The other symbol's value will be used
205 to satisfy requests for the indirect symbol, but not vice versa.
206 If the other symbol does not have a definition, libraries will
216 The address of the set is made into an N_SETV symbol
218 This symbol acts like a N_DATA global symbol
    [all...]

Completed in 859 milliseconds

1 2 3 4 5 6 78 91011>>