Searched refs:Platform (Results 1 - 25 of 36) sorted by relevance

12

/freebsd-10.1-release/lib/clang/liblldbPluginPlatformFreeBSD/
H A DMakefile7 SRCDIR= tools/lldb/source/Plugins/Platform/FreeBSD
/freebsd-10.1-release/lib/clang/liblldbPluginPlatformGDB/
H A DMakefile7 SRCDIR= tools/lldb/source/Plugins/Platform/gdb-server
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
H A DPlatform.cpp1 //===-- Platform.cpp --------------------------------------------*- C++ -*-===//
10 #include "lldb/Target/Platform.h"
54 Platform::GetHostPlatformName ()
70 Platform::GetDefaultPlatform ()
76 Platform::SetDefaultPlatform (const lldb::PlatformSP &platform_sp)
78 // The native platform should use its static void Platform::Initialize()
84 Platform::GetFileWithUUID (const FileSpec &platform_file,
94 Platform::LocateExecutableScriptingResources (Target *target, Module &module)
99 Platform*
100 Platform
234 Platform::Platform (bool is_host) : function in class:Platform
[all...]
H A DTargetList.cpp27 #include "lldb/Target/Platform.h"
171 platform_sp = Platform::GetPlatformForArchitecture(arch, &platform_arch);
208 platform_sp = Platform::GetPlatformForArchitecture(specified_arch, &arch);
213 platform_sp = Platform::GetPlatformForArchitecture(specified_arch, &arch);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp32 Platform(is_host), // This is the local host platform
85 return Platform::MakeDirectory(path ,file_permissions);
94 return Platform::GetFilePermissions(path ,file_permissions);
103 return Platform::SetFilePermissions(path ,file_permissions);
117 return Platform::OpenFile(file_spec, flags, mode, error);
128 return Platform::CloseFile(fd, error);
143 return Platform::ReadFile(fd, offset, dst, dst_len, error);
158 return Platform::WriteFile(fd, offset, src, src_len, error);
162 chown_file(Platform *platform,
335 return Platform
[all...]
H A DPlatformPOSIX.h21 #include "lldb/Target/Platform.h"
23 class PlatformPOSIX : public lldb_private::Platform
32 // lldb_private::Platform functions
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionGroupArchitecture.h51 GetArchitecture (Platform *platform, ArchSpec &arch);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp34 Platform *
96 static ConstString g_host_name(Platform::GetHostPlatformName ());
126 Platform::SetDefaultPlatform (default_platform_sp);
145 Platform(is_host),
359 // Remote Platform subclasses need to override this function
373 return Platform::GetHostname();
401 m_remote_platform_sp = Platform::Create ("remote-gdb-server", error);
452 success = Platform::GetProcessInfo (pid, process_info);
471 match_count = Platform::FindProcesses (match_info, process_infos);
488 error = Platform
[all...]
H A DPlatformFreeBSD.h17 #include "lldb/Target/Platform.h"
19 class PlatformFreeBSD : public lldb_private::Platform
27 static lldb_private::Platform*
72 // lldb_private::Platform functions
101 // Remote Platform subclasses need to override this function
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionGroupArchitecture.cpp49 OptionGroupArchitecture::GetArchitecture (Platform *platform, ArchSpec &arch)
H A DOptionGroupPlatform.cpp19 #include "lldb/Target/Platform.h"
36 platform_sp = Platform::Create (m_platform_name.c_str(), error);
51 platform_sp = Platform::Create (arch, &platform_arch, error);
/freebsd-10.1-release/lib/clang/liblldbTarget/
H A DMakefile18 Platform.cpp \
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DArchSpec.h150 ArchSpec (const char *triple_cstr, Platform *platform);
395 Platform *platform);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h19 #include "lldb/Target/Platform.h"
22 class PlatformRemoteGDBServer : public lldb_private::Platform
32 static lldb_private::Platform*
64 // lldb_private::Platform functions
121 // Remote Platform subclasses need to override this function
H A DPlatformRemoteGDBServer.cpp63 Platform*
135 Platform(false), // This is a remote platform
190 // Remote Platform subclasses need to override this function
218 return Platform::GetRemoteWorkingDirectory();
235 return Platform::SetRemoteWorkingDirectory(path);
307 const char *cached_user_name = Platform::GetUserName(uid);
321 const char *cached_group_name = Platform::GetGroupName(gid);
661 return Platform::PutFile(source,destination,uid,gid);
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-private-interfaces.h31 typedef Platform* (*PlatformCreateInstance) (bool force, const ArchSpec *arch);
H A Dlldb-forward.h151 class Platform;
334 typedef std::shared_ptr<lldb_private::Platform> PlatformSP;
/freebsd-10.1-release/usr.bin/clang/lldb/
H A DMakefile14 Platform.cpp
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DPlatform.h1 //===-- Platform.h ----------------------------------------------*- C++ -*-===//
31 /// @class Platform Platform.h "lldb/Target/Platform.h"
43 class Platform : class in namespace:lldb_private
87 Platform (bool is_host_platform);
96 ~Platform();
101 /// Scans the installed Platform plug-ins and tries to find
112 static Platform*
131 /// Returns \b true if this Platform plu
[all...]
H A DProcess.h269 Dump (Stream &s, Platform *platform) const;
423 Dump (Stream &s, Platform *platform) const;
426 DumpTableHeader (Stream &s, Platform *platform, bool show_args, bool verbose);
429 DumpAsTableRow (Stream &s, Platform *platform, bool show_args, bool verbose) const;
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/API/
H A DSBPlatform.cpp18 #include "lldb/Target/Platform.h"
272 m_opaque_sp = Platform::Create (platform_name, error);
/freebsd-10.1-release/contrib/llvm/lib/Support/Windows/
H A DSignals.inc49 // method signatures were pulled from DbgHelp.h in the Windows Platform SDK,
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Core/
H A DArchSpec.cpp24 #include "lldb/Target/Platform.h"
364 ArchSpec::ArchSpec (const char *triple_cstr, Platform *platform) :
627 ArchSpec::SetTriple (const char *triple_cstr, Platform *platform)
/freebsd-10.1-release/contrib/wpa/wpa_supplicant/
H A Dnmake.mak5 # Note: Make sure that cl.exe is configured to include Platform SDK
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclAttr.cpp2149 IdentifierInfo *Platform,
2154 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2156 PlatformName = Platform->getName();
2206 IdentifierInfo *Platform,
2229 if (OldPlatform != Platform) {
2266 << AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2271 << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
2296 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
2319 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
2322 return ::new (Context) AvailabilityAttr(Range, Context, Platform,
2148 checkAvailabilityAttr(Sema &S, SourceRange Range, IdentifierInfo *Platform, VersionTuple Introduced, VersionTuple Deprecated, VersionTuple Obsoleted) argument
2205 mergeAvailabilityAttr(NamedDecl *D, SourceRange Range, IdentifierInfo *Platform, VersionTuple Introduced, VersionTuple Deprecated, VersionTuple Obsoleted, bool IsUnavailable, StringRef Message, bool Override, unsigned AttrSpellingListIndex) argument
[all...]

Completed in 153 milliseconds

12