Home
last modified time | relevance | path

Searched refs:vFileNamePath (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMIUtilFileStd.cpp69 bool CMIUtilFileStd::CreateWrite(const CMIUtilString &vFileNamePath, in CreateWrite() argument
75 if (vFileNamePath.empty()) { in CreateWrite()
87 m_pFileHandle = ::fopen(vFileNamePath.c_str(), "wb"); in CreateWrite()
91 if (llvm::ConvertUTF8toWide(vFileNamePath.c_str(), path)) in CreateWrite()
102 strerror(errno), vFileNamePath.c_str()); in CreateWrite()
107 m_fileNamePath = vFileNamePath; in CreateWrite()
225 bool CMIUtilFileStd::IsFileExist(const CMIUtilString &vFileNamePath) const { in IsFileExist()
226 if (vFileNamePath.empty()) in IsFileExist()
230 pTmp = ::fopen(vFileNamePath.c_str(), "wb"); in IsFileExist()
H A DMIUtilFileStd.h29 bool CreateWrite(const CMIUtilString &vFileNamePath, bool &vwrbNewCreated);
34 bool IsFileExist(const CMIUtilString &vFileNamePath) const;