HomeSort by relevance Sort by last modified time
    Searched defs:dso (Results 1 - 17 of 17) sorted by null

  /external/compiler-rt/test/asan/TestCases/Linux/
activation-options.cc 56 void *dso = dlopen(path.c_str(), RTLD_NOW); local
57 if (!dso) {
  /system/extras/simpleperf/
environment_test.cpp 22 #include "dso.h"
42 std::unique_ptr<Dso> dso = Dso::CreateDso(DSO_ELF_FILE, "[vdso]", local
44 ASSERT_TRUE(dso != nullptr);
45 ASSERT_NE(dso->GetDebugFilePath(), "[vdso]");
thread_tree.h 26 #include "dso.h"
42 Dso* dso; member in struct:simpleperf::MapEntry
46 Dso* dso, bool in_kernel)
51 dso(dso),
84 unknown_dso_ = Dso::CreateDso(DSO_ELF_FILE, "unknown");
87 kernel_dso_ = Dso::CreateDso(DSO_KERNEL, DEFAULT_KERNEL_MMAP_NAME);
104 uint64_t* pvaddr_in_file, Dso** pdso = nullptr)
    [all...]
cmd_debug_unwind.cpp 168 if (!Dso::SetSymFsDir(args[i])) {
281 Dso* dso = map->dso; local
282 if (!dso->HasDumpId()) {
283 dso->CreateDumpId();
285 const Symbol* symbol = thread_tree_.FindSymbol(map, ip, nullptr, &dso);
287 dso->CreateSymbolDumpId(symbol);
thread_tree.cpp 108 Dso* dso = FindKernelDsoOrNew(filename); local
110 AllocateMap(MapEntry(start_addr, len, pgoff, time, dso, true));
116 Dso* ThreadTree::FindKernelDsoOrNew(const std::string& filename) {
123 module_dso_tree_[filename] = Dso::CreateDso(DSO_KERNEL_MODULE, filename);
133 Dso* dso = FindUserDsoOrNew(filename, start_addr); local
135 AllocateMap(MapEntry(start_addr, len, pgoff, time, dso, false));
142 Dso* ThreadTree::FindUserDsoOrNew(const std::string& filename, uint64_t start_addr) {
146 user_dso_tree_[filename] = Dso::CreateDso(DSO_ELF_FILE, filename, force_64bit)
227 Dso* dso = map->dso; local
284 Dso* dso = nullptr; local
    [all...]
cmd_report_sample.cpp 97 uint64_t* pvaddr_in_file, Dso** pdso, const Symbol** psymbol);
422 Dso* dso; member in struct:__anon3017::Node
439 &node.dso, &node.symbol);
466 if (!GetCallEntry(thread, in_kernel, ip, true, &node.vaddr_in_file, &node.dso,
478 if (!node.dso->GetDumpId(&file_id)) {
479 file_id = node.dso->CreateDumpId();
484 symbol_id = node.dso->CreateSymbolDumpId(node.symbol);
496 if (node.dso->FileName() == "libc.so" &&
517 uint64_t* pvaddr_in_file, Dso** pdso
601 Dso* dso; local
    [all...]
cmd_record.cpp 725 if (!Dso::SetSymFsDir(args[i])) {
1369 Dso* dso = map->dso; local
    [all...]
  /external/compiler-rt/test/asan/TestCases/Posix/
start-deactivated.cc 49 void *dso = dlopen(path.c_str(), RTLD_NOW); local
50 if (!dso) {
59 void *fn = dlsym(dso, "do_another_bad_thing");
  /frameworks/native/opengl/libs/EGL/
Loader.h 43 void* dso[3]; member in struct:android::Loader::driver_t
60 void init_api(void* dso,
egldefs.h 40 inline egl_connection_t() : dso(0) { }
41 void * dso; member in struct:android::egl_connection_t
Loader.cpp 130 dso[0] = gles;
131 for (size_t i=1 ; i<NELEM(dso) ; i++)
132 dso[i] = 0;
137 for (size_t i=0 ; i<NELEM(dso) ; i++) {
138 if (dso[i]) {
139 dlclose(dso[i]);
140 dso[i] = 0;
149 dso[0] = hnd;
152 dso[1] = hnd;
155 dso[2] = hnd
223 void* dso; local
445 void* dso = do_android_load_sphal_library(driver_absolute_path, local
488 void* dso = nullptr; local
    [all...]
  /system/extras/perfprofd/
symbolizer.cc 41 std::string Decode(const std::string& dso, uint64_t address) override {
42 auto it = dsos.find(dso);
44 LoadDso(dso); variable
45 it = dsos.find(dso);
68 void LoadDso(const std::string& dso) {
76 ElfStatus status = ParseSymbolsFromElfFile(dso, BuildId(), callback);
78 LOG(WARNING) << "Could not parse dso " << dso << ": " << status;
80 dsos.emplace(dso, std::move(data));
83 bool GetMinExecutableVAddr(const std::string& dso, uint64_t* addr) override
    [all...]
perf_data_converter.cc 58 struct Dso {
61 explicit Dso(uint64_t min_vaddr_in) : min_vaddr(min_vaddr_in) {
64 std::unordered_map<std::string, Dso> files;
90 Dso* dso_data;
100 auto it = files.emplace(dso_name, Dso(min_vaddr));
137 const Dso& dso = file_data.second; local
138 if (dso.symbols.empty()) {
145 symbol_info->set_min_vaddr(dso.min_vaddr);
146 for (auto& aggr_sym : dso.symbols)
    [all...]
  /hardware/libhardware/include/hardware/
hardware.h 144 /** module's dso */
145 void* dso; member in struct:hw_module_t
  /external/perf_data_converter/src/
perf_data_converter_test.cc 73 const Mapping* dso; local
75 if (!mappings.Lookup(addr, &dso)) {
79 key_stream << "+" << profile.string_table(dso->filename()) << ":"
80 << profile.string_table(dso->build_id()) << std::hex
81 << (addr - dso->memory_start());
  /prebuilts/jdk/jdk8/darwin-x86/lib/
sa-jdi.jar 
  /prebuilts/jdk/jdk8/linux-x86/lib/
sa-jdi.jar 

Completed in 281 milliseconds