Lines Matching refs:fileNameUTF8
88 int FileWrapperImpl::FileName(char* fileNameUTF8, in FileName() argument
107 memcpy(fileNameUTF8, _fileNameUTF8, length); in FileName()
108 fileNameUTF8[length] = 0; in FileName()
117 int FileWrapperImpl::OpenFile(const char *fileNameUTF8, bool readOnly, in OpenFile() argument
120 size_t length = strlen(fileNameUTF8); in OpenFile()
135 fileNameUTF8, in OpenFile()
160 tmpId = fopen(fileNameUTF8, "rt"); in OpenFile()
162 tmpId = fopen(fileNameUTF8, "wt"); in OpenFile()
167 tmpId = fopen(fileNameUTF8, "rb"); in OpenFile()
169 tmpId = fopen(fileNameUTF8, "wb"); in OpenFile()
177 memcpy(_fileNameUTF8, fileNameUTF8, length + 1); in OpenFile()