/external/chromium_org/tools/memory_inspector/memory_inspector/data/ |
serialization.py | 22 from memory_inspector.core import symbol namespace 30 if isinstance(obj, symbol.Symbols): 33 if isinstance(obj, (symbol.Symbol, symbol.SourceInfo)): 52 # Strip out the symbol information from stack frames. Symbols are stored 54 # share the same symbol db. Serializing the symbol information for each 85 symbols = symbol.Symbols() 87 sym = symbol.Symbol(sym_dict['name'] [all...] |
/external/lzma/CPP/7zip/Compress/ |
RangeCoder.h | 89 void EncodeBit(UInt32 size0, UInt32 numTotalBits, UInt32 symbol)
92 if (symbol == 0)
184 UInt32 symbol;
local 187 symbol = 0;
192 symbol = 1;
197 return symbol;
|
/bionic/tests/ |
stack_unwinding_test.cpp | 43 const char* symbol = "<unknown>"; local 49 symbol = info.dli_sname; 55 fprintf(stderr, " #%02d %p %s%+d (%s)\n", *count_ptr, ip, symbol, offset, info.dli_fname ? info.dli_fname : "??");
|
/external/chromium_org/third_party/webrtc/base/ |
latebindingsymboltable.cc | 42 void **symbol) { 44 *symbol = dlsym(handle, symbol_name); 47 LOG(LS_ERROR) << "Error loading symbol " << symbol_name << ": " << err; 49 } else if (!*symbol) { 52 LOG(LS_ERROR) << "Symbol " << symbol_name << " is NULL"; 96 // RTLD_NOW front-loads symbol resolution so that errors are 99 // seeing symbol definitions in the newly-loaded tree. This 104 // RTLD_DEEPBIND makes symbol dependencies in the
|
/external/chromium_org/tools/memory_inspector/memory_inspector/core/ |
symbol.py | 10 self.symbols = {} # 'foo.so+0x1234' -> |Symbol| 12 def Add(self, exec_file_rel_path, offset, symbol): 13 assert(isinstance(symbol, Symbol)) 14 self.symbols[Symbols._GetKey(exec_file_rel_path, offset)] = symbol 31 class Symbol(object): 32 """Debug information relative to a symbol. 34 Note: a symbol can have more than one source line associated to it. 53 """Source file + line information for a given |Symbol|."""
|
/external/lldb/examples/python/ |
globals.py | 30 # Iterate through all symbols in the symbol table and watch for any DATA symbols 31 for symbol in module.symbols: 32 if symbol.type == lldb.eSymbolTypeData: 33 # The symbol is a DATA symbol, lets try and find all global variables 35 global_name = symbol.name
|
/external/oprofile/libpp/ |
profile_container.cpp | 20 #include "symbol.h" 71 // the range of sample_entry inside each symbol entry are valid 125 symbol_entry const * symbol = symbols->insert(symb_entry); local 128 add_samples(abfd, i, p_it, symbol, pclass, start); 136 symbol_entry const * symbol, size_t pclass, 159 samples->insert(symbol, sample); 201 // contain sample does not work: a symbol can contain samples and this 202 // symbol is in a source file that contain zero sample because only 276 profile_container::find_sample(symbol_entry const * symbol, bfd_vma vma) const 278 return samples->find_by_vma(symbol, vma) [all...] |
profile_container.h | 45 * to record them at symbol level. 69 /// Find a symbol from its image_name, vma, return zero if no symbol 75 /// symbol_collection if no symbol at this location 79 /// Find a sample by its symbol, vma, return zero if there is no sample 81 sample_entry const * find_sample(symbol_entry const * symbol, 84 /// Find a symbol. Return NULL if not found. 85 symbol_entry const * find(symbol_entry const & symbol) const; 128 /// return an iterator to the first symbol 130 /// return an iterator to the last symbol [all...] |
symbol_container.h | 18 #include "symbol.h" 39 * Insert a new symbol. If the symbol already exists in the container, 41 * Returns the newly created symbol or the existing one. This pointer 55 /// find the symbol with the given image_name vma if any 59 /// Search a symbol. Return NULL if not found. 60 symbol_entry const * find(symbol_entry const & symbol) const; 69 /// build the symbol by file-location cache 79 * Differently-named symbol at same file location are allowed e.g.
|
/bionic/libc/include/ |
dlfcn.h | 40 const char *dli_sname; /* Name of nearest symbol with address 42 void *dli_saddr; /* Exact address of symbol named 49 extern void* dlsym(void* handle, const char* symbol);
|
/build/tools/ |
adbs | 25 import symbol namespace
|
/cts/tools/dasm/src/java_cup/ |
lr_item_core.java | 35 symbol after_dot = null; 53 /* cache the symbol after the dot */ 103 /** Cache of symbol after the dot. */ 104 protected symbol _symbol_after_dot = null; 116 /** Return the symbol after the dot. If there is no symbol after the dot 118 public symbol symbol_after_dot() 120 /* use the cached symbol */ 131 symbol sym; 133 /* get the symbol after the dot * [all...] |
/development/ndk/platforms/android-L/include/ |
dlfcn.h | 40 const char *dli_sname; /* Name of nearest symbol with address 42 void *dli_saddr; /* Exact address of symbol named 49 extern void* dlsym(void* handle, const char* symbol);
|
/external/chromium-trace/trace-viewer/third_party/gl-matrix/jsdoc-template/ |
publish.js | 75 var symbol = classes[i]; 77 symbol.events = symbol.getEvents(); // 1 order matters 78 symbol.methods = symbol.getMethods(); // 2 80 Link.currentSymbol= symbol; 82 output = classTemplate.process(symbol); 84 IO.saveFile(publish.conf.outDir+"symbols/", ((JSDOC.opt.u)? Link.filemap[symbol.alias] : symbol.alias) + publish.conf.ext, output); 111 allFiles.push(new JSDOC.Symbol(files[i], [], "FILE", new JSDOC.DocComment("/** */"))) [all...] |
/external/chromium_org/third_party/android_platform/development/scripts/ |
stack_core.py | 21 import symbol namespace 55 # TODO(cjhopman): it seems that symbol.SymbolInformation always fails to 77 if symbol.ARCH == "arm64" or symbol.ARCH == "x86_64": 91 # #00 pc 001cf42e /data/data/com.my.project/lib/libmyproject.so (symbol) 108 # bea4170c 8018e4e9 /data/data/com.my.project/lib/libmyproject.so (symbol) 130 # It is faster to get symbol information with a single call rather than with 131 # separate calls for each line. Since symbol.SymbolInformation caches results, 132 # we can extract all the addresses that we will want symbol information for 133 # from the log and call symbol.SymbolInformation so that the results ar [all...] |
/external/chromium_org/third_party/angle/src/compiler/translator/ |
InitializeVariables.cpp | 93 TIntermSymbol *symbol = new TIntermSymbol(0, varInfo.name, varInfo.type); local 94 indexDirect->setLeft(symbol); 108 TIntermSymbol *symbol = new TIntermSymbol(0, varInfo.name, varInfo.type); local 109 assign->setLeft(symbol);
|
/external/clang/test/CXX/temp/temp.spec/ |
cxx1y-variable-template-no-body.cpp | 23 expected-error{{redefinition of 'pi0' as different kind of symbol}}
|
/external/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/ |
neg_format.pass.cpp | 59 assert(p.field[0] == std::money_base::symbol); 67 assert(p.field[0] == std::money_base::symbol); 75 assert(p.field[0] == std::money_base::symbol); 83 assert(p.field[0] == std::money_base::symbol);
|
pos_format.pass.cpp | 59 assert(p.field[0] == std::money_base::symbol); 67 assert(p.field[0] == std::money_base::symbol); 75 assert(p.field[0] == std::money_base::symbol); 83 assert(p.field[0] == std::money_base::symbol);
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
unwind.h | 6 #include "symbol.h" 10 struct symbol *sym;
|
/external/llvm/test/MC/Mips/ |
sym-expr.s | 1 # Check parsing symbol expressions
|
/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/valgrind/main/gdbserver_tests/ |
hginfo.stderrB.exp | 4 Address 0x........ is 0 bytes inside data symbol "mx" 14 Address 0x........ is 0 bytes inside data symbol "mx"
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/ |
neg_format.pass.cpp | 59 assert(p.field[0] == std::money_base::symbol); 67 assert(p.field[0] == std::money_base::symbol); 75 assert(p.field[0] == std::money_base::symbol); 83 assert(p.field[0] == std::money_base::symbol);
|
pos_format.pass.cpp | 59 assert(p.field[0] == std::money_base::symbol); 67 assert(p.field[0] == std::money_base::symbol); 75 assert(p.field[0] == std::money_base::symbol); 83 assert(p.field[0] == std::money_base::symbol);
|