Searched defs:fh (Results 1 - 3 of 3) sorted by relevance

/bind-9.11.3/unit/atf-src/tools/
H A Dio.cpp63 impl::file_handle::file_handle(const file_handle& fh) : argument
64 m_handle(fh.m_handle)
66 fh.m_handle = invalid_value();
76 impl::file_handle::operator=(const file_handle& fh) argument
78 m_handle = fh.m_handle;
79 fh.m_handle = invalid_value();
/bind-9.11.3/lib/isc/win32/
H A Dfile.c243 int fh; local
248 if ((fh = open(file, _O_RDONLY | _O_BINARY)) < 0)
251 if (!GetFileTime((HANDLE) _get_osfhandle(fh),
256 close(fh);
260 close(fh);
282 int fh; local
286 if ((fh = open(file, _O_RDWR | _O_BINARY)) < 0)
294 if (!SetFileTime((HANDLE) _get_osfhandle(fh),
299 close(fh);
304 close(fh);
643 int fh; local
[all...]
/bind-9.11.3/bin/named/unix/
H A Dos.c877 FILE *fh; local
900 fh = ns_os_openfile(filename, S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH,
902 if (fh == NULL) {
911 if (fprintf(fh, "%ld\n", (long)pid) < 0) {
913 (void)fclose(fh);
917 if (fflush(fh) == EOF) {
919 (void)fclose(fh);
923 (void)fclose(fh);

Completed in 11 milliseconds