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

1 2 3

  /frameworks/compile/mclinker/lib/Support/
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) {
54 ToolOutputFile::ToolOutputFile(const sys::fs::Path& pPath,
57 : m_Installer(pPath),
61 if (!m_FileHandle.open(pPath, pMode, pPermission)) {
65 << pPath
MemoryAreaFactory.cpp 26 MemoryArea* MemoryAreaFactory::produce(const sys::fs::Path& pPath,
29 llvm::StringRef name(pPath.native());
40 MemoryArea* MemoryAreaFactory::produce(const sys::fs::Path& pPath,
44 llvm::StringRef name(pPath.native());
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 30 void setPath(const sys::fs::Path& pPath) { m_Path = pPath; }
  /frameworks/compile/mclinker/lib/Script/
SearchDirCmd.cpp 19 SearchDirCmd::SearchDirCmd(const std::string& pPath)
21 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));
Input.cpp 43 const sys::fs::Path& pPath,
48 m_Path(pPath),
58 const sys::fs::Path& pPath,
64 m_Path(pPath),
InputFactory.cpp 35 const sys::fs::Path& pPath,
40 new (result) Input(pName, pPath, *m_pLast, pType, pFileOffset);
  /frameworks/compile/mclinker/include/mcld/Script/
SearchDirCmd.h 27 SearchDirCmd(const std::string& pPath);
  /frameworks/compile/mclinker/include/mcld/Support/
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();
MemoryAreaFactory.h 46 MemoryArea* produce(const sys::fs::Path& pPath,
50 MemoryArea* produce(const sys::fs::Path& pPath,
RealPath.h 32 explicit RealPath(const Path& pPath);
36 RealPath& assign(const Path& pPath);
ToolOutputFile.h 33 ToolOutputFile(const sys::fs::Path& pPath,
56 explicit CleanupInstaller(const sys::fs::Path& pPath);
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);
  /frameworks/compile/mclinker/include/mcld/MC/
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);
ContextFactory.h 39 LDContext* produce(const sys::fs::Path& pPath);
Input.h 52 const sys::fs::Path& pPath,
57 const sys::fs::Path& pPath,
73 void setPath(const sys::fs::Path& pPath)
74 { m_Path = pPath; }
InputFactory.h 41 const sys::fs::Path& pPath,
MCLDDirectory.h 37 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/omap4-aah/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);
  /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);
  /external/pdfium/core/src/fxge/android/
fpf_skiafontmgr.h 58 void SetPath(FX_LPCSTR pPath)
63 FX_INT32 iSize = FXSYS_strlen(pPath);
65 FXSYS_memcpy32(m_pPath, pPath, iSize * sizeof(FX_CHAR));

Completed in 1486 milliseconds

1 2 3