HomeSort by relevance Sort by last modified time
    Searched refs:m_hFile (Results 1 - 7 of 7) sorted by null

  /external/pdfium/core/src/fxcrt/
fxcrt_platforms.cpp 36 CFXCRT_FileAccess_CRT::CFXCRT_FileAccess_CRT() : m_hFile(NULL) {}
42 if (m_hFile) {
47 m_hFile = FXSYS_fopen(fileName.GetCStr(), strMode.c_str());
48 return m_hFile != NULL;
52 if (m_hFile) {
57 m_hFile = FXSYS_wfopen(fileName.GetPtr(), strMode.c_str());
58 return m_hFile != NULL;
61 if (!m_hFile) {
64 FXSYS_fclose(m_hFile);
65 m_hFile = NULL
    [all...]
fxcrt_windows.cpp 39 CFXCRT_FileAccess_Win64::CFXCRT_FileAccess_Win64() : m_hFile(NULL) {}
45 if (m_hFile) {
50 m_hFile = ::CreateFileA(fileName.GetCStr(), dwAccess, dwShare, NULL,
52 if (m_hFile == INVALID_HANDLE_VALUE) {
53 m_hFile = NULL;
55 return m_hFile != NULL;
59 if (m_hFile) {
64 m_hFile = ::CreateFileW((LPCWSTR)fileName.GetPtr(), dwAccess, dwShare, NULL,
66 if (m_hFile == INVALID_HANDLE_VALUE) {
67 m_hFile = NULL
    [all...]
fxcrt_windows.h 36 void* m_hFile;
fxcrt_platforms.h 38 FXSYS_FILE* m_hFile;
  /external/pdfium/xfa/src/fgas/src/crt/
fx_stream.cpp 77 : CFX_StreamImp(), m_hFile(NULL), m_iLength(0) {}
79 if (m_hFile != NULL) {
80 FXSYS_fclose(m_hFile);
85 FXSYS_assert(m_hFile == NULL);
103 _wfopen_s(&m_hFile, wsSrcFileName, wsMode);
105 m_hFile = FXSYS_wfopen(pszSrcFileName, wsMode);
107 if (m_hFile == NULL) {
112 _wfopen_s(&m_hFile, wsSrcFileName, L"w+b");
114 m_hFile = FXSYS_wfopen(pszSrcFileName, L"w+b");
117 if (m_hFile == NULL) {
    [all...]
fx_stream.h 59 FXSYS_FILE* m_hFile;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
filehc.h 33 HANDLE m_hFile;

Completed in 899 milliseconds