Lines Matching refs:SBPlatform

1 //===-- SBPlatform.cpp ----------------------------------------------------===//
9 #include "lldb/API/SBPlatform.h"
16 #include "lldb/API/SBPlatform.h"
293 // SBPlatform
294 SBPlatform::SBPlatform() { LLDB_INSTRUMENT_VA(this); }
296 SBPlatform::SBPlatform(const char *platform_name) {
302 SBPlatform::SBPlatform(const SBPlatform &rhs) {
308 SBPlatform &SBPlatform::operator=(const SBPlatform &rhs) {
315 SBPlatform::~SBPlatform() = default;
317 SBPlatform SBPlatform::GetHostPlatform() {
320 SBPlatform host_platform;
325 bool SBPlatform::IsValid() const {
329 SBPlatform::operator bool() const {
335 void SBPlatform::Clear() {
341 const char *SBPlatform::GetName() {
350 lldb::PlatformSP SBPlatform::GetSP() const { return m_opaque_sp; }
352 void SBPlatform::SetSP(const lldb::PlatformSP &platform_sp) {
356 const char *SBPlatform::GetWorkingDirectory() {
365 bool SBPlatform::SetWorkingDirectory(const char *path) {
379 SBError SBPlatform::ConnectRemote(SBPlatformConnectOptions &connect_options) {
394 void SBPlatform::DisconnectRemote() {
402 bool SBPlatform::IsConnected() {
411 const char *SBPlatform::GetTriple() {
426 const char *SBPlatform::GetOSBuild() {
441 const char *SBPlatform::GetOSDescription() {
456 const char *SBPlatform::GetHostname() {
465 uint32_t SBPlatform::GetOSMajorVersion() {
474 uint32_t SBPlatform::GetOSMinorVersion() {
483 uint32_t SBPlatform::GetOSUpdateVersion() {
492 void SBPlatform::SetSDKRoot(const char *sysroot) {
498 SBError SBPlatform::Get(SBFileSpec &src, SBFileSpec &dst) {
511 SBError SBPlatform::Put(SBFileSpec &src, SBFileSpec &dst) {
533 SBError SBPlatform::Install(SBFileSpec &src, SBFileSpec &dst) {
546 SBError SBPlatform::Run(SBPlatformShellCommand &shell_command) {
570 SBError SBPlatform::Launch(SBLaunchInfo &launch_info) {
580 SBProcess SBPlatform::Attach(SBAttachInfo &attach_info,
603 SBProcessInfoList SBPlatform::GetAllProcesses(SBError &error) {
617 SBError SBPlatform::Kill(const lldb::pid_t pid) {
624 SBError SBPlatform::ExecuteConnected(
639 SBError SBPlatform::MakeDirectory(const char *path, uint32_t file_permissions) {
653 uint32_t SBPlatform::GetFilePermissions(const char *path) {
665 SBError SBPlatform::SetFilePermissions(const char *path,
680 SBUnixSignals SBPlatform::GetUnixSignals() const {
689 SBEnvironment SBPlatform::GetEnvironment() {
700 SBError SBPlatform::SetLocateModuleCallback(