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

  /external/chromium/third_party/zlib/contrib/minizip/
iowin32.c 72 HANDLE hFile = 0;
97 hFile = CreateFile((LPCTSTR)filename, dwDesiredAccess, dwShareMode, NULL,
100 if (hFile == INVALID_HANDLE_VALUE)
101 hFile = NULL;
103 if (hFile != NULL)
106 w32fiow.hf = hFile;
110 CloseHandle(hFile);
124 HANDLE hFile = NULL;
126 hFile = ((WIN32FILE_IOWIN*)stream) -> hf;
127 if (hFile != NULL
    [all...]
miniunz.c 55 HANDLE hFile;
58 hFile = CreateFile(filename,GENERIC_READ | GENERIC_WRITE,
60 GetFileTime(hFile,&ftCreate,&ftLastAcc,&ftLastWrite);
63 SetFileTime(hFile,&ftm,&ftLastAcc,&ftm);
64 CloseHandle(hFile);
  /external/zlib/contrib/minizip/
iowin32.c 69 static voidpf win32_build_iowin(HANDLE hFile)
73 if ((hFile != NULL) && (hFile != INVALID_HANDLE_VALUE))
76 w32fiow.hf = hFile;
81 CloseHandle(hFile);
92 HANDLE hFile = NULL;
97 hFile = CreateFile((LPCTSTR)filename, dwDesiredAccess, dwShareMode, NULL, dwCreationDisposition, dwFlagsAndAttributes, NULL);
99 return win32_build_iowin(hFile);
107 HANDLE hFile = NULL;
112 hFile = CreateFileA((LPCSTR)filename, dwDesiredAccess, dwShareMode, NULL, dwCreationDisposition, dwFlags (…)
    [all...]
miniunz.c 76 HANDLE hFile;
79 hFile = CreateFileA(filename,GENERIC_READ | GENERIC_WRITE,
81 GetFileTime(hFile,&ftCreate,&ftLastAcc,&ftLastWrite);
84 SetFileTime(hFile,&ftm,&ftLastAcc,&ftm);
85 CloseHandle(hFile);
  /external/quake/quake/src/WinQuake/
conproc.h 35 void InitConProc (HANDLE hFile, HANDLE heventParent, HANDLE heventChild);
sys_sun.cpp 50 FILE *hFile;
63 if (!sys_handles[i].hFile)
100 sys_handles[i].hFile = f;
103 sys_handles[i].pMap = mmap( 0, sys_handles[i].nLen, PROT_READ, MAP_SHARED, fileno( sys_handles[i].hFile ), 0 );
125 sys_handles[i].hFile = f;
139 fclose (sys_handles[handle].hFile);
140 sys_handles[handle].hFile = NULL;
149 else fseek (sys_handles[handle].hFile, position, SEEK_SET);
164 else return fread (dest, 1, count, sys_handles[handle].hFile);
171 return fwrite (data, 1, count, sys_handles[handle].hFile);
    [all...]
conproc.cpp 44 void InitConProc (HANDLE hFile, HANDLE heventParent, HANDLE heventChild)
51 if (!hFile || !heventParent || !heventChild)
54 hfileBuffer = hFile;
sys_win.cpp 51 static HANDLE hFile;
823 if ((t = COM_CheckParm ("-HFILE")) > 0)
826 hFile = (HANDLE)Q_atoi (com_argv[t+1]);
841 InitConProc (hFile, heventParent, heventChild);
  /external/webkit/WebCore/platform/wince/
FileSystemWince.cpp 45 HANDLE hFile = CreateFile(filename.charactersWithNullTermination(), GENERIC_READ, FILE_SHARE_READ, 0
48 if (hFile == INVALID_HANDLE_VALUE)
51 bool rtn = GetFileInformationByHandle(hFile, &fileInfo) ? true : false;
53 CloseHandle(hFile);
89 HANDLE hFile = CreateFile(filename.charactersWithNullTermination(), 0, FILE_SHARE_READ | FILE_SHARE_WRITE
92 CloseHandle(hFile);
94 return hFile != INVALID_HANDLE_VALUE;
  /external/zlib/contrib/untgz/
untgz.c 213 HANDLE hFile;
234 hFile = CreateFile(fname, GENERIC_WRITE, 0, NULL, OPEN_EXISTING,
237 if (hFile == INVALID_HANDLE_VALUE)
239 result = SetFileTime(hFile, NULL, NULL, &modft) ? 0 : -1;
240 CloseHandle(hFile);
  /external/qemu/distrib/sdl-1.2.12/src/video/os2fslib/
SDL_os2fslib.c     [all...]
  /external/libpcap/
pcap.c 553 return ((int)(DWORD)p->adapter->hFile);
  /external/v8/src/
platform-win32.cc 1007 IN HANDLE hFile,
    [all...]

Completed in 251 milliseconds