Home
last modified time | relevance | path

Searched refs:platform_name (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/tools/lldb-server/
H A DTestAppleSimulatorOSType.py16 def check_simulator_ostype(self, sdk, platform_name, arch=platform.machine()): argument
35 if not platform_name in runtime.lower():
53 exe_name = 'test_simulator_platform_{}'.format(platform_name)
59 if platform_name == 'watchos':
64 triple = '-'.join([arch, 'apple', platform_name + vers, 'simulator'])
65 version_min = '-m{}-simulator-version-min={}'.format(platform_name, vers)
119 self.assertEquals(process_info['ostype'], platform_name + 'simulator')
134 self.assertEquals(image['min_version_os_name'], platform_name + 'simulator')
141 platform_name='ios')
147 platform_name='tvos')
[all …]
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DOptionGroupPlatform.h43 void SetPlatformName(const char *platform_name) { in SetPlatformName() argument
44 if (platform_name && platform_name[0]) in SetPlatformName()
45 m_platform_name.assign(platform_name); in SetPlatformName()
/llvm-project-15.0.7/lldb/test/API/commands/platform/basic/
H A DTestPlatformPython.py32 platform_name = platform_data.GetValueForKey('name').GetStringValue(100)
33 self.assertNotEqual(platform_name, 'host')
34 self.dbg.SetCurrentPlatform(platform_name)
37 self.assertEqual(selected_platform.GetName(), platform_name)
42 if platform.GetName() == platform_name:
/llvm-project-15.0.7/lldb/source/Target/
H A DTargetList.cpp200 llvm::StringRef platform_name = candidate->GetName(); in CreateTargetInternal() local
201 if (platform_set.count(platform_name)) in CreateTargetInternal()
205 error_strm.PutCString(platform_name); in CreateTargetInternal()
206 platform_set.insert(platform_name); in CreateTargetInternal()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBDebugger.i282 const char *platform_name,
369 SetCurrentPlatform (const char *platform_name);
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBDebugger.h179 const char *platform_name,
237 lldb::SBError SetCurrentPlatform(const char *platform_name);
H A DSBPlatform.h97 SBPlatform(const char *platform_name);
/llvm-project-15.0.7/lldb/source/API/
H A DSBPlatform.cpp292 SBPlatform::SBPlatform(const char *platform_name) { in SBPlatform() argument
293 LLDB_INSTRUMENT_VA(this, platform_name); in SBPlatform()
295 m_opaque_sp = Platform::Create(platform_name); in SBPlatform()
H A DSBDebugger.cpp772 const char *platform_name, in CreateTarget() argument
775 LLDB_INSTRUMENT_VA(this, filename, target_triple, platform_name, in CreateTarget()
783 platform_options.SetPlatformName(platform_name); in CreateTarget()
802 platform_name, add_dependent_modules, sb_error.GetCString(), in CreateTarget()
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DVSCode.cpp433 llvm::StringRef platform_name = GetString(arguments, "platformName"); in CreateTargetFromArguments() local
436 program.data(), target_triple.data(), platform_name.data(), in CreateTargetFromArguments()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectPlatform.cpp170 const char *platform_name = args.GetArgumentAtIndex(0); in DoExecute() local
171 if (platform_name && platform_name[0]) { in DoExecute()
173 m_platform_options.SetPlatformName(platform_name); in DoExecute()
/llvm-project-15.0.7/lldb/docs/use/
H A Dsymbolication.rst257 platform_name = None
259 …target = lldb.debugger.CreateTarget("/tmp/a.out", triple, platform_name, add_dependents, lldb.SBEr…