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

  /external/pdfium/core/src/fxcrt/
fxcrt_platforms.cpp 39 : m_hFile(NULL)
48 if (m_hFile) {
53 m_hFile = FXSYS_fopen(fileName.GetCStr(), (FX_LPCSTR)strMode);
54 return m_hFile != NULL;
58 if (m_hFile) {
63 m_hFile = FXSYS_wfopen(fileName.GetPtr(), (FX_LPCWSTR)strMode);
64 return m_hFile != NULL;
68 if (!m_hFile) {
71 FXSYS_fclose(m_hFile);
72 m_hFile = NULL;
    [all...]
fxcrt_windows.cpp 54 : m_hFile(NULL)
63 if (m_hFile) {
68 m_hFile = ::CreateFileA(fileName.GetCStr(), dwAccess, dwShare, NULL, dwCreation, FILE_ATTRIBUTE_NORMAL, NULL);
69 if (m_hFile == INVALID_HANDLE_VALUE) {
70 m_hFile = NULL;
72 return m_hFile != NULL;
76 if (m_hFile) {
81 m_hFile = ::CreateFileW((LPCWSTR)fileName.GetPtr(), dwAccess, dwShare, NULL, dwCreation, FILE_ATTRIBUTE_NORMAL, NULL);
82 if (m_hFile == INVALID_HANDLE_VALUE) {
83 m_hFile = NULL;
    [all...]
fxcrt_platforms.h 32 FXSYS_FILE* m_hFile;
fxcrt_windows.h 30 FX_LPVOID 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 174 milliseconds