HomeSort by relevance Sort by last modified time
    Searched refs:pPath (Results 1 - 25 of 47) sorted by null

1 2

  /frameworks/compile/mclinker/lib/Support/
HandleToArea.cpp 42 bool HandleToArea::erase(const sys::fs::Path& pPath)
45 llvm::StringRef(pPath.native().c_str(),
46 pPath.native().size()));
50 if (bucket->hash_value == hash_value && bucket->handle->path() == pPath) {
60 HandleToArea::Result HandleToArea::findFirst(const sys::fs::Path& pPath)
62 unsigned int hash_value = HashFunction()(llvm::StringRef(pPath.native().c_str(),
63 pPath.native().size()));
69 if (bucket->handle->path() == pPath) {
78 HandleToArea::ConstResult HandleToArea::findFirst(const sys::fs::Path& pPath) const
80 unsigned int hash_value = HashFunction()(llvm::StringRef(pPath.native().c_str()
    [all...]
FileSystem.cpp 16 bool mcld::sys::fs::exists(const Path &pPath)
19 mcld::sys::fs::detail::status(pPath, file_status);
24 bool mcld::sys::fs::is_directory(const Path &pPath)
27 detail::status(pPath, file_status);
RealPath.cpp 30 RealPath::RealPath(const Path& pPath)
31 : Path(pPath) {
39 RealPath& RealPath::assign(const Path& pPath)
41 Path::m_PathName.assign(pPath.native());
ToolOutputFile.cpp 28 ToolOutputFile::CleanupInstaller::CleanupInstaller(const sys::fs::Path& pPath)
29 : Keep(false), m_Path(pPath) {
52 ToolOutputFile::ToolOutputFile(const sys::fs::Path& pPath,
55 : m_Installer(pPath),
60 if (!m_FileHandle.open(pPath, pMode, pPermission)) {
64 << pPath
MemoryAreaFactory.cpp 35 MemoryAreaFactory::produce(const sys::fs::Path& pPath,
38 HandleToArea::Result map_result = m_HandleToArea.findFirst(pPath);
42 if (!handler->open(pPath, pMode)) {
43 error(diag::err_cannot_open_file) << pPath
58 MemoryAreaFactory::produce(const sys::fs::Path& pPath,
62 HandleToArea::Result map_result = m_HandleToArea.findFirst(pPath);
66 if (!handler->open(pPath, pMode, pPerm)) {
67 error(diag::err_cannot_open_file) << pPath
Path.cpp 98 Path& Path::append(const Path& pPath)
102 pPath.native()[0] == separator) {
104 unsigned int new_size = old_size + pPath.native().size();
107 strcpy(const_cast<ValueType*>(m_PathName.data()+old_size), pPath.native().data());
111 pPath.native()[0] != separator) {
113 m_PathName.append(pPath.native());
117 m_PathName.append(pPath.native());
  /frameworks/compile/mclinker/include/mcld/
BitcodeOption.h 33 void setPath(const sys::fs::Path& pPath) { m_Path = pPath; }
  /frameworks/compile/mclinker/lib/MC/
ContextFactory.cpp 25 LDContext* ContextFactory::produce(const sys::fs::Path& pPath)
27 LDContext* result = find(pPath);
31 f_KeyMap.insert(std::make_pair(pPath, result));
MCLDInput.cpp 42 const sys::fs::Path& pPath,
47 m_Path(pPath),
56 const sys::fs::Path& pPath,
62 m_Path(pPath),
InputFactory.cpp 35 const sys::fs::Path& pPath,
40 new (result) Input(pName, pPath, *m_pLast, pType, pFileOffset);
SearchDirs.cpp 49 bool SearchDirs::insert(const std::string& pPath)
51 MCLDDirectory* dir = new MCLDDirectory(pPath);
66 bool SearchDirs::insert(const char* pPath)
68 return insert(std::string(pPath));
71 bool SearchDirs::insert(const sys::fs::Path& pPath)
73 return insert(pPath.native());
  /frameworks/compile/mclinker/include/mcld/Support/
Path.h 68 Path& append(const Path& pPath);
107 bool exists(const Path &pPath);
109 bool is_directory(const Path &pPath);
113 operator<<(std::basic_ostream<Char, Traits>& pOS, const Path& pPath)
115 return pOS << pPath.native();
120 operator>>(std::basic_istream<Char, Traits>& pOS, Path& pPath)
122 return pOS >> pPath.native();
126 operator<<(llvm::raw_ostream& pOS, const Path& pPath)
128 return pOS << pPath.native();
MemoryAreaFactory.h 49 MemoryArea* produce(const sys::fs::Path& pPath,
53 MemoryArea* produce(const sys::fs::Path& pPath,
RealPath.h 35 explicit RealPath(const Path& pPath);
39 RealPath& assign(const Path& pPath);
ToolOutputFile.h 39 ToolOutputFile(const sys::fs::Path& pPath,
62 explicit CleanupInstaller(const sys::fs::Path& pPath);
HandleToArea.h 82 bool erase(const sys::fs::Path& pPath);
84 Result findFirst(const sys::fs::Path& pPath);
86 ConstResult findFirst(const sys::fs::Path& pPath) const;
FileSystem.h 80 bool exists(const Path &pPath);
81 bool is_directory(const Path &pPath);
101 int open(const Path& pPath, int pOFlag);
102 int open(const Path& pPath, int pOFlag, int pPermission);
  /frameworks/compile/mclinker/include/mcld/MC/
InputBuilder.h 61 const sys::fs::Path& pPath,
66 const sys::fs::Path& pPath,
110 const sys::fs::Path& pPath,
115 Input* input = createInput(pName, pPath, pType);
125 const sys::fs::Path& pPath,
130 Input* input = createInput(pName, pPath, pType);
ContextFactory.h 42 LDContext* produce(const sys::fs::Path& pPath);
MCLDInput.h 54 const sys::fs::Path& pPath,
59 const sys::fs::Path& pPath,
75 void setPath(const sys::fs::Path& pPath)
76 { m_Path = pPath; }
InputFactory.h 44 const sys::fs::Path& pPath,
MCLDDirectory.h 40 void setSysroot(const sys::fs::Path& pPath);
  /development/tools/etc1tool/
etc1tool.cpp 66 int changeExtension(char* pPath, size_t pathCapacity, const char* pExtension) {
67 size_t pathLen = strlen(pPath);
74 if ((pathLen == 1 && pPath[0] == '.') || (pathLen == 2 && pPath[0] == '.'
75 && pPath[1] == '.') || (pathLen >= 2 && pPath[pathLen - 2] == '/'
76 && pPath[pathLen - 1] == '.') || (pathLen >= 3
77 && pPath[pathLen - 3] == '/' && pPath[pathLen - 2] == '.'
78 && pPath[pathLen - 1] == '.'))
    [all...]
  /hardware/ti/omap4xxx/security/tf_daemon/
smc_properties.c 101 * @param pPath the path we want to check
104 static bool checkFilePath(char *pPath)
108 char *pDir = pPath;
115 while(pPath[i] != '\0')
117 if (pPath[i] == SEPARATOR_CHAR)
127 strncpy(pDir, pPath, nSlashIndex);
  /frameworks/compile/libbcc/include/bcc/
Source.h 48 const std::string &pPath);
75 // when it's created using CreateFromBuffer and pPath if CreateFromFile().

Completed in 310 milliseconds

1 2