/frameworks/compile/mclinker/include/mcld/Support/ |
D | Path.h | 65 Path& append(const Path& pPath); 104 bool exists(const Path &pPath); 106 bool is_directory(const Path &pPath); 110 operator<<(std::basic_ostream<Char, Traits>& pOS, const Path& pPath) 112 return pOS << pPath.native(); 117 operator>>(std::basic_istream<Char, Traits>& pOS, Path& pPath) 119 return pOS >> pPath.native(); 123 operator<<(llvm::raw_ostream& pOS, const Path& pPath) 125 return pOS << pPath.native();
|
D | FileSystem.h | 77 bool exists(const Path &pPath); 78 bool is_directory(const Path &pPath); 98 int open(const Path& pPath, int pOFlag); 99 int open(const Path& pPath, int pOFlag, int pPermission);
|
D | MemoryAreaFactory.h | 46 MemoryArea* produce(const sys::fs::Path& pPath, 50 MemoryArea* produce(const sys::fs::Path& pPath,
|
D | ToolOutputFile.h | 33 ToolOutputFile(const sys::fs::Path& pPath, 56 explicit CleanupInstaller(const sys::fs::Path& pPath);
|
D | RealPath.h | 32 explicit RealPath(const Path& pPath); 36 RealPath& assign(const Path& pPath);
|
D | Directory.h | 47 explicit Directory(const Path& pPath, 63 void assign(const Path& pPath,
|
/frameworks/compile/mclinker/lib/Support/ |
D | ToolOutputFile.cpp | 28 ToolOutputFile::CleanupInstaller::CleanupInstaller(const sys::fs::Path& pPath) in CleanupInstaller() argument 29 : Keep(false), m_Path(pPath) { in CleanupInstaller() 54 ToolOutputFile::ToolOutputFile(const sys::fs::Path& pPath, in ToolOutputFile() argument 57 : m_Installer(pPath), in ToolOutputFile() 61 if (!m_FileHandle.open(pPath, pMode, pPermission)) { in ToolOutputFile() 65 << pPath in ToolOutputFile()
|
D | FileSystem.cpp | 16 bool mcld::sys::fs::exists(const Path &pPath) in exists() argument 19 mcld::sys::fs::detail::status(pPath, file_status); in exists() 24 bool mcld::sys::fs::is_directory(const Path &pPath) in is_directory() argument 27 detail::status(pPath, file_status); in is_directory()
|
D | RealPath.cpp | 30 RealPath::RealPath(const Path& pPath) in RealPath() argument 31 : Path(pPath) { in RealPath() 39 RealPath& RealPath::assign(const Path& pPath) in assign() argument 41 Path::m_PathName.assign(pPath.native()); in assign()
|
D | Path.cpp | 98 Path& Path::append(const Path& pPath) in append() argument 102 pPath.native()[0] == separator) { in append() 104 unsigned int new_size = old_size + pPath.native().size(); in append() 107 strcpy(const_cast<ValueType*>(m_PathName.data()+old_size), pPath.native().data()); in append() 111 pPath.native()[0] != separator) { in append() 113 m_PathName.append(pPath.native()); in append() 117 m_PathName.append(pPath.native()); in append()
|
D | MemoryAreaFactory.cpp | 26 MemoryArea* MemoryAreaFactory::produce(const sys::fs::Path& pPath, in produce() argument 29 llvm::StringRef name(pPath.native()); in produce() 40 MemoryArea* MemoryAreaFactory::produce(const sys::fs::Path& pPath, in produce() argument 44 llvm::StringRef name(pPath.native()); in produce()
|
D | Directory.cpp | 44 Directory::Directory(const Path& pPath, in Directory() argument 47 : m_Path(pPath), in Directory() 85 void Directory::assign(const Path& pPath, in assign() argument 92 m_Path = pPath; in assign()
|
D | FileHandle.cpp | 78 bool FileHandle::open(const sys::fs::Path& pPath, in open() argument 89 m_Handler = sys::fs::detail::open(pPath, oflag(pMode)); in open() 91 m_Handler = sys::fs::detail::open(pPath, oflag(pMode), (int)pPerm); in open() 93 m_Path = pPath; in open()
|
/frameworks/compile/mclinker/include/mcld/MC/ |
D | InputBuilder.h | 57 const sys::fs::Path& pPath, 62 const sys::fs::Path& pPath, 106 const sys::fs::Path& pPath, 111 Input* input = createInput(pName, pPath, pType); 121 const sys::fs::Path& pPath, 126 Input* input = createInput(pName, pPath, pType);
|
D | Input.h | 52 const sys::fs::Path& pPath, 57 const sys::fs::Path& pPath, 73 void setPath(const sys::fs::Path& pPath) in setPath() argument 74 { m_Path = pPath; } in setPath()
|
/frameworks/compile/mclinker/lib/MC/ |
D | Input.cpp | 43 const sys::fs::Path& pPath, in Input() argument 48 m_Path(pPath), in Input() 58 const sys::fs::Path& pPath, in Input() argument 64 m_Path(pPath), in Input()
|
D | ContextFactory.cpp | 25 LDContext* ContextFactory::produce(const sys::fs::Path& pPath) in produce() argument 27 LDContext* result = find(pPath); in produce() 31 f_KeyMap.insert(std::make_pair(pPath, result)); in produce()
|
D | SearchDirs.cpp | 49 bool SearchDirs::insert(const std::string& pPath) in insert() argument 51 MCLDDirectory* dir = new MCLDDirectory(pPath); in insert() 66 bool SearchDirs::insert(const char* pPath) in insert() argument 68 return insert(std::string(pPath)); in insert() 71 bool SearchDirs::insert(const sys::fs::Path& pPath) in insert() argument 73 return insert(pPath.native()); in insert()
|
D | InputFactory.cpp | 35 const sys::fs::Path& pPath, in produce() argument 40 new (result) Input(pName, pPath, *m_pLast, pType, pFileOffset); in produce()
|
D | CommandAction.cpp | 25 const sys::fs::Path &pPath) in InputFileAction() argument 26 : InputAction(pPosition), m_Path(pPath) { in InputFileAction() 79 BitcodeAction::BitcodeAction(unsigned int pPosition, const sys::fs::Path &pPath) in BitcodeAction() argument 80 : InputAction(pPosition), m_Path(pPath) { in BitcodeAction()
|
/frameworks/compile/mclinker/lib/Script/ |
D | SearchDirCmd.cpp | 19 SearchDirCmd::SearchDirCmd(const std::string& pPath) in SearchDirCmd() argument 21 m_Path(pPath) in SearchDirCmd()
|
/frameworks/compile/mclinker/include/mcld/ |
D | BitcodeOption.h | 30 void setPath(const sys::fs::Path& pPath) { m_Path = pPath; } in setPath() argument
|
/frameworks/compile/mclinker/lib/Support/Windows/ |
D | FileSystem.inc | 72 int open(const Path& pPath, int pOFlag) 74 return ::_open(pPath.native().c_str(), pOFlag | _O_BINARY); 77 int open(const Path& pPath, int pOFlag, int pPerm) 90 return ::_open(pPath.native().c_str(), pOFlag | _O_BINARY, perm);
|
/frameworks/compile/libbcc/lib/Core/ |
D | Source.cpp | 88 Source *Source::CreateFromFile(BCCContext &pContext, const std::string &pPath) { in CreateFromFile() argument 91 llvm::MemoryBuffer::getFile(pPath); in CreateFromFile() 93 ALOGE("Failed to load bitcode from path %s! (%s)", pPath.c_str(), in CreateFromFile()
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | MsgHandler.h | 60 operator<<(const MsgHandler& pHandler, const sys::fs::Path& pPath) 62 pHandler.addString(pPath.native());
|