Searched refs:handle (Results 1 - 16 of 16) sorted by relevance

/bind-9.6-ESV-R11/lib/dns/
H A Dgen-unix.h52 DIR *handle; member in struct:__anon88
60 dir->handle = opendir(path);
62 if (dir->handle != NULL)
75 if (dir->handle != NULL) {
76 dirent = readdir(dir->handle);
89 if (dir->handle != NULL)
90 (void)closedir(dir->handle);
92 dir->handle = NULL;
H A Dgen-win32.h218 HANDLE handle; member in struct:__anon89
247 dir->handle = FindFirstFile(pattern, &dir->find_data);
249 if (dir->handle == INVALID_HANDLE_VALUE) {
263 else if (dir->handle != INVALID_HANDLE_VALUE) {
264 if (FindNextFile(dir->handle, &dir->find_data) == TRUE)
280 if (dir->handle != INVALID_HANDLE_VALUE)
281 FindClose(dir->handle);
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/include/idn/
H A Dnameprep.h79 * Create a handle for nameprep operations.
80 * The handle is stored in '*handlep', which is used other functions
94 * Close a handle, which was created by 'idn_nameprep_create'.
97 idn_nameprep_destroy(idn_nameprep_t handle);
108 idn_nameprep_map(idn_nameprep_t handle, const unsigned long *from,
123 idn_nameprep_isprohibited(idn_nameprep_t handle, const unsigned long *str,
138 idn_nameprep_isunassigned(idn_nameprep_t handle, const unsigned long *str,
152 idn_nameprep_isvalidbidi(idn_nameprep_t handle, const unsigned long *str,
163 idn_nameprep_destroyproc(void *handle);
166 idn_nameprep_mapproc(void *handle, cons
[all...]
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/lib/
H A Dnameprep.c104 idn_nameprep_t handle; local
119 for (handle = nameprep_versions; handle->version != NULL; handle++) {
120 if (strcmp(handle->version, version) == 0) {
121 *handlep = handle;
129 idn_nameprep_destroy(idn_nameprep_t handle) { argument
130 assert(handle != NULL);
138 idn_nameprep_map(idn_nameprep_t handle, const unsigned long *from, argument
140 assert(handle !
202 idn_nameprep_isprohibited(idn_nameprep_t handle, const unsigned long *str, const unsigned long **found) argument
213 idn_nameprep_isunassigned(idn_nameprep_t handle, const unsigned long *str, const unsigned long **found) argument
249 idn_nameprep_isvalidbidi(idn_nameprep_t handle, const unsigned long *str, const unsigned long **found) argument
331 idn_nameprep_destroyproc(void *handle) argument
336 idn_nameprep_mapproc(void *handle, const unsigned long *from, unsigned long *to, size_t tolen) argument
342 idn_nameprep_prohibitproc(void *handle, const unsigned long *str, const unsigned long **found) argument
348 idn_nameprep_unassignedproc(void *handle, const unsigned long *str, const unsigned long **found) argument
354 idn_nameprep_bidiproc(void *handle, const unsigned long *str, const unsigned long **found) argument
[all...]
/bind-9.6-ESV-R11/lib/isc/unix/
H A Ddir.c49 dir->handle = NULL;
87 dir->handle = opendir(dirname);
89 if (dir->handle == NULL)
106 REQUIRE(VALID_DIR(dir) && dir->handle != NULL);
111 entry = readdir(dir->handle);
137 REQUIRE(VALID_DIR(dir) && dir->handle != NULL);
139 (void)closedir(dir->handle);
140 dir->handle = NULL;
148 REQUIRE(VALID_DIR(dir) && dir->handle != NULL);
150 rewinddir(dir->handle);
[all...]
H A Dentropy.c58 int handle; member in struct:__anon192
76 int fd = source->sources.file.handle;
105 source->sources.file.handle = -1;
116 int fd = source->sources.usocket.handle;
239 source->sources.usocket.handle = -1;
404 fd = source->sources.file.handle;
411 fd = source->sources.usocket.handle;
445 (void)close(source->handle);
450 close(source->handle);
574 source->sources.usocket.handle
[all...]
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/tools/runidn/
H A Dstub.c68 void *handle; member in struct:__anon65
82 static void *shared_obj_findsym(void *handle, const char *name);
83 static void *shared_obj_findsymx(void *handle, const char *name);
98 shared_obj_findsym(void *handle, const char *name) { argument
110 if ((addr = shared_obj_findsymx(handle, name + 1)) != NULL) {
115 if ((addr = shared_obj_findsymx(handle, name)) != NULL) {
120 return (shared_obj_findsymx(handle, name));
122 return (shared_obj_findsymx(handle, name + 1));
128 shared_obj_findsymx(void *handle, const char *name) { argument
130 return (dlsym(handle, nam
[all...]
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/lib/tests/
H A Dtestygen86 my $handle = FileHandle->new($file, 'r');
87 if (!defined($handle)) {
93 $line = $handle->getline();
110 $handle->close();
434 my $handle = FileHandle->new($file, 'w');
435 if (!defined($handle)) {
443 output_lines($preamble_header, $generator, $handle, $lineinfo);
445 output_lines($testsuite->{preambles}, $generator, $handle, $lineinfo);
452 output_lines($preamble_footer, $generator, $handle, $lineinfo);
456 output_lines($testsuite->{tests}->[$i], $generator, $handle,
[all...]
/bind-9.6-ESV-R11/lib/isc/win32/include/isc/
H A Dcondition.h34 HANDLE handle[2]; member in struct:isc_condition_thread
/bind-9.6-ESV-R11/lib/isc/win32/
H A Dcondition.c39 * This handle is shared across all threads
74 * Create the thread-specific handle
85 newthread->handle[LSIGNAL] = gblcond->events[LSIGNAL];
86 newthread->handle[LBROADCAST] = hc;
160 if (!SetEvent(threadcond->handle[LBROADCAST]))
188 (void) CloseHandle(threadcond->handle[LBROADCAST]);
220 result = WaitForMultipleObjects(2, threadcond->handle, FALSE,
H A Dentropy.c52 HCRYPTPROV hcryptprov = source->sources.file.handle;
231 CryptReleaseContext(source->handle, 0);
281 source->sources.file.handle = hcryptprov;
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/wsock/common/
H A Dcheckdll.c96 /* Get the handle of the original winsock DLL */
140 HINSTANCE handle; local
175 if ((handle = LoadLibrary(dllpath)) == NULL) {
181 return (handle);
/bind-9.6-ESV-R11/lib/isc/unix/include/isc/
H A Ddir.h57 DIR * handle; member in struct:isc_dir
/bind-9.6-ESV-R11/bin/win32/BINDInstall/
H A DVersionInfo.cpp41 DWORD handle; local
42 DWORD viSize = GetFileVersionInfoSize((LPTSTR)(LPCTSTR)filename, &handle);
54 if(!GetFileVersionInfo((LPTSTR)(LPCTSTR)filename, handle, viSize, m_versionInfo))
/bind-9.6-ESV-R11/bin/tests/system/notify/ns2/
H A Dnamed.conf42 // Check that named can handle a empty also-notify.
/bind-9.6-ESV-R11/lib/isc/
H A Dentropy.c137 FILESOURCE_HANDLE_TYPE handle; member in struct:__anon154

Completed in 89 milliseconds