Lines Matching refs:PlatformAndroid
29 LLDB_PLUGIN_DEFINE(PlatformAndroid)
35 void PlatformAndroid::Initialize() { in Initialize()
40 PlatformSP default_platform_sp(new PlatformAndroid(true)); in Initialize()
45 PlatformAndroid::GetPluginNameStatic(false), in Initialize()
46 PlatformAndroid::GetPluginDescriptionStatic(false), in Initialize()
47 PlatformAndroid::CreateInstance); in Initialize()
51 void PlatformAndroid::Terminate() { in Terminate()
54 PluginManager::UnregisterPlugin(PlatformAndroid::CreateInstance); in Terminate()
61 PlatformSP PlatformAndroid::CreateInstance(bool force, const ArchSpec *arch) { in CreateInstance()
120 return PlatformSP(new PlatformAndroid(false)); in CreateInstance()
130 PlatformAndroid::PlatformAndroid(bool is_host) in PlatformAndroid() function in PlatformAndroid
133 llvm::StringRef PlatformAndroid::GetPluginDescriptionStatic(bool is_host) { in GetPluginDescriptionStatic()
139 Status PlatformAndroid::ConnectRemote(Args &args) { in ConnectRemote()
169 Status PlatformAndroid::GetFile(const FileSpec &source, in GetFile()
211 Status PlatformAndroid::PutFile(const FileSpec &source, in PutFile()
230 const char *PlatformAndroid::GetCacheHostname() { return m_device_id.c_str(); } in GetCacheHostname()
232 Status PlatformAndroid::DownloadModuleSlice(const FileSpec &src_file_spec, in DownloadModuleSlice()
242 Status PlatformAndroid::DisconnectRemote() { in DisconnectRemote()
251 uint32_t PlatformAndroid::GetDefaultMemoryCacheLineSize() { in GetDefaultMemoryCacheLineSize()
255 uint32_t PlatformAndroid::GetSdkVersion() { in GetSdkVersion()
280 Status PlatformAndroid::DownloadSymbolFile(const lldb::ModuleSP &module_sp, in DownloadSymbolFile()
338 bool PlatformAndroid::GetRemoteOSVersion() { in GetRemoteOSVersion()
344 PlatformAndroid::GetLibdlFunctionDeclarations(lldb_private::Process *process) { in GetLibdlFunctionDeclarations()
369 AdbClient::SyncService *PlatformAndroid::GetSyncService(Status &error) { in GetSyncService()