Home
last modified time | relevance | path

Searched refs:GetMap (Results 1 – 5 of 5) sorted by relevance

/system/bt/vendor_libs/test_vendor_lib/model/setup/
Ddevice_boutique.cc25 std::unordered_map<std::string, std::function<std::shared_ptr<Device>()>>& DeviceBoutique::GetMap()… in GetMap() function in test_vendor_lib::DeviceBoutique
34 GetMap()[device_type] = device_constructor; in Register()
41 if (GetMap().find(args[0]) == GetMap().end()) { in Create()
46 std::shared_ptr<Device> new_device = GetMap()[args[0]](); in Create()
Ddevice_boutique.h49 static std::unordered_map<std::string, std::function<std::shared_ptr<Device>()>>& GetMap();
/system/unwinding/libbacktrace/
DUnwindStack.cpp155 return GetMap()->GetFunctionName(pc, offset); in GetFunctionNameRaw()
173 return Backtrace::Unwind(regs.get(), GetMap(), &frames_, num_ignore_frames, &skip_names, &error_); in UnwindFromContext()
180 return GetMap()->GetFunctionName(pc, offset); in GetFunctionNameRaw()
191 return Backtrace::Unwind(regs.get(), GetMap(), &frames_, num_ignore_frames, nullptr, &error_); in Unwind()
DBacktraceCurrent.cpp80 if (GetMap() == nullptr) { in Unwind()
/system/unwinding/libbacktrace/include/backtrace/
DBacktrace.h180 BacktraceMap* GetMap() { return map_; } in GetMap() function