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

  /external/webkit/Source/WebCore/platform/graphics/win/
DIBPixelData.cpp 54 HANDLE hFile = ::CreateFile(filePath, GENERIC_WRITE, 0, 0, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
55 if (INVALID_HANDLE_VALUE == hFile)
79 ::WriteFile(hFile, &header, sizeof(header), &bytesWritten, 0);
80 ::WriteFile(hFile, &info, sizeof(info), &bytesWritten, 0);
81 ::WriteFile(hFile, buffer(), bufferLength(), &bytesWritten, 0);
83 ::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 89 HANDLE hFile;
92 hFile = CreateFileA(filename,GENERIC_READ | GENERIC_WRITE,
94 GetFileTime(hFile,&ftCreate,&ftLastAcc,&ftLastWrite);
97 SetFileTime(hFile,&ftm,&ftLastAcc,&ftm);
98 CloseHandle(hFile);
  /external/quake/quake/src/WinQuake/
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...]
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/Source/WebCore/platform/wince/
FileSystemWinCE.cpp 59 HANDLE hFile = CreateFile(filename.charactersWithNullTermination(), GENERIC_READ, FILE_SHARE_READ, 0
62 if (hFile == INVALID_HANDLE_VALUE)
65 bool rtn = GetFileInformationByHandle(hFile, &fileInfo) ? true : false;
67 CloseHandle(hFile);
103 HANDLE hFile = CreateFile(filename.charactersWithNullTermination(), 0, FILE_SHARE_READ | FILE_SHARE_WRITE
106 CloseHandle(hFile);
108 return hFile != INVALID_HANDLE_VALUE;
  /external/valgrind/unittest/
windows_tests.cc 435 HANDLE hFile = CreateFileA("ZZZ\\tmpfile", GENERIC_READ | GENERIC_WRITE,
438 CloseHandle(hFile);
  /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/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 1340 milliseconds