Home
last modified time | relevance | path

Searched refs:object_name (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/commands/expression/formatters/
H A DTestFormatters.py124 object_name = self.res.GetOutput()
125 object_name = object_name[7:]
126 object_name = object_name[0:object_name.find(' =')]
138 self.filecheck("expression $" + object_name, __file__,
145 self.expect("expression --show-types -- $" + object_name,
165 self.expect("expression $" + object_name + '.a',
168 self.expect("expression *$" + object_name + '.b.i_ptr',
173 object_name,
189 self.expect("expression --show-types -- $" + object_name,
199 object_name,
[all …]
/llvm-project-15.0.7/lldb/examples/python/
H A Dbsd.py237 for object_name in args:
239 matches = archive.find(object_name)
246 object_name))
253 for object_name in args:
255 matches = archive.find(object_name)
261 object_name, archive.path))
345 if options.object_name:
357 options.object_name))
363 options.object_name))
413 matches = archive.find(object_name, f=result)
[all …]
/llvm-project-15.0.7/lldb/source/Expression/
H A DUserExpression.cpp102 lldb::StackFrameSP frame_sp, ConstString const &object_name, Status &err) { in GetObjectPointerValueObject() argument
108 object_name.AsCString()); in GetObjectPointerValueObject()
116 object_name.GetStringRef(), lldb::eNoDynamicValues, in GetObjectPointerValueObject()
125 ConstString &object_name, in GetObjectPointer() argument
128 GetObjectPointerValueObject(std::move(frame_sp), object_name, err); in GetObjectPointer()
138 object_name.AsCString()); in GetObjectPointer()
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUserExpression.cpp876 lldb::StackFrameSP frame_sp, ConstString &object_name, Status &err) { in GetCppObjectPointer() argument
878 GetObjectPointerValueObject(std::move(frame_sp), object_name, err); in GetCppObjectPointer()
896 object_name.AsCString()); in GetCppObjectPointer()
915 ConstString object_name; in AddArguments() local
918 object_name.SetCString("this"); in AddArguments()
920 object_name.SetCString("self"); in AddArguments()
940 GetCppObjectPointer(frame_sp, object_name, object_ptr_error); in AddArguments()
942 object_ptr = GetObjectPointer(frame_sp, object_name, object_ptr_error); in AddArguments()
949 object_name.AsCString(), object_ptr_error.AsCString()); in AddArguments()
H A DClangUserExpression.h203 ConstString &object_name, Status &err);
/llvm-project-15.0.7/lldb/include/lldb/Expression/
H A DUserExpression.h281 ConstString &object_name, Status &err);
298 ConstString const &object_name, Status &err);
/llvm-project-15.0.7/lldb/source/Core/
H A DModule.cpp234 const ConstString *object_name, lldb::offset_t object_offset, in Module() argument
247 if (object_name) in Module()
248 m_object_name = *object_name; in Module()
1061 ConstString object_name) { in SetFileSpecAndObjectName() argument
1066 m_object_name = object_name; in SetFileSpecAndObjectName()
1098 const char *object_name = m_object_name.GetCString(); in GetDescription() local
1099 if (object_name) in GetDescription()
1100 s << llvm::formatv("({0})", object_name); in GetDescription()
1603 ConstString object_name = module_ref.GetObjectName(); in MatchesModuleSpec() local
1604 if (object_name) { in MatchesModuleSpec()
[all …]
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/
H A Dtsan_platform_mac.cpp138 mach_port_t object_name; in RegionMemUsage() local
141 (vm_region_info_t)&vm_region_info, &count, &object_name); in RegionMemUsage()
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/
H A Dtsan_platform_mac.cpp141 mach_port_t object_name; in RegionMemUsage() local
144 (vm_region_info_t)&vm_region_info, &count, &object_name); in RegionMemUsage()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.cpp285 ConstString object_name, const llvm::sys::TimePoint<> &object_mod_time) { in FindObject() argument
287 m_object_name_to_index_map.FindFirstValueForName(object_name); in FindObject()
395 ConstString object_name(module_sp->GetObjectName()); in CreateInstance() local
396 if (!object_name) in CreateInstance()
H A DObjectContainerBSDArchive.h151 Object *FindObject(lldb_private::ConstString object_name,
/llvm-project-15.0.7/lldb/source/Target/
H A DStatistics.cpp197 if (ConstString object_name = module->GetObjectName()) { in ReportStatistics() local
199 module_stat.path.append(object_name.GetStringRef().str()); in ReportStatistics()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DSymtab.cpp95 const char *object_name = nullptr; in Dump() local
97 object_name = m_objfile->GetModule()->GetObjectName().GetCString(); in Dump()
101 file_spec.GetPath().c_str(), object_name ? "(" : "", in Dump()
102 object_name ? object_name : "", object_name ? ")" : "", in Dump()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DModule.h124 const ConstString *object_name = nullptr,
791 void SetFileSpecAndObjectName(const FileSpec &file, ConstString object_name);
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp169 const ConstString *object_name, off_t object_offset, in DebugMapModule() argument
171 : Module(file_spec, arch, object_name, object_offset, object_mod_time), in DebugMapModule()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectTarget.cpp3206 const char *object_name = module->GetObjectName().GetCString(); in PrintModule() local
3207 if (object_name) in PrintModule()
3208 strm.Printf("(%s)", object_name); in PrintModule()