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

/bind-9.6-ESV-R11/lib/isc/win32/
H A Dfile.c205 int fh; local
210 if ((fh = open(file, _O_RDONLY | _O_BINARY)) < 0)
213 if (!GetFileTime((HANDLE) _get_osfhandle(fh),
218 close(fh);
222 close(fh);
228 int fh; local
232 if ((fh = open(file, _O_RDWR | _O_BINARY)) < 0)
240 if (!SetFileTime((HANDLE) _get_osfhandle(fh),
245 close(fh);
250 close(fh);
530 int fh; local
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-run/
H A Dio.cpp68 impl::file_handle::file_handle(const file_handle& fh) : argument
69 m_handle(fh.m_handle)
71 fh.m_handle = invalid_value();
81 impl::file_handle::operator=(const file_handle& fh) argument
83 m_handle = fh.m_handle;
84 fh.m_handle = invalid_value();

Completed in 12 milliseconds