handle             63 ext/charconv/charconv.h     iconv_t handle;             /* iconv handle, if the conversion is
handle           1324 ext/charconv/jconv.c     r = iconv(info->handle, (char **)iptr, iroom, optr, oroom);
handle           1341 ext/charconv/jconv.c     r = iconv(info->handle, NULL, 0, &optr, &oroom);
handle           1363 ext/charconv/jconv.c     iconv_t handle = (iconv_t)-1;
handle           1376 ext/charconv/jconv.c         handle = iconv_open(toCode, fromCode);
handle           1377 ext/charconv/jconv.c         if (handle == (iconv_t)-1) return NULL;
handle           1413 ext/charconv/jconv.c     info->handle = handle;
handle           1427 ext/charconv/jconv.c     if (info->handle != (iconv_t)-1) {
handle           1428 ext/charconv/jconv.c         r = iconv_close(info->handle);
handle           1429 ext/charconv/jconv.c         info->handle = (iconv_t)-1;
handle           1057 gc/dyn_load.c  					(unsigned long) shl_desc->handle);
handle             46 gc/win32_threads.c   HANDLE handle;
handle            126 gc/win32_threads.c 		       (HANDLE*)&thread_table[i].handle,
handle            169 gc/win32_threads.c     CloseHandle(thr->handle);
handle            249 gc/win32_threads.c 	while (SuspendThread(thread_table[i].handle) == (DWORD)-1)
handle            258 gc/win32_threads.c 	if (GetExitCodeThread(thread_table[i].handle,&exitCode) &&
handle            265 gc/win32_threads.c 	    CloseHandle(thread_table[i].handle);
handle            269 gc/win32_threads.c 	if (SuspendThread(thread_table[i].handle) == (DWORD)-1)
handle            285 gc/win32_threads.c       if (ResumeThread(thread_table[i].handle) == (DWORD)-1)
handle            350 gc/win32_threads.c         if (!GetThreadContext(thread_table[i].handle, &context))
handle            267 src/core.c     void Scm_DeleteCleanupHandler(void *handle)
handle            271 src/core.c             if (y == handle) {
handle             97 src/dl_darwin.c static ScmDynLoadInitFn dl_sym(void *handle, const char *name)
handle             99 src/dl_darwin.c     NSSymbol sym = NSLookupSymbolInModule((NSModule)handle, name);
handle            104 src/dl_darwin.c static void dl_close(void *handle)
handle            106 src/dl_darwin.c     (void)NSUnLinkModule((NSModule)handle, NSUNLINKMODULE_OPTION_NONE);
handle             51 src/dl_dlopen.c static ScmDynLoadInitFn dl_sym(void *handle, const char *name)
handle             53 src/dl_dlopen.c     return (ScmDynLoadInitFn)dlsym(handle, name);
handle             56 src/dl_dlopen.c static void dl_close(void *handle)
handle             58 src/dl_dlopen.c     dlclose(handle);
handle             48 src/dl_dummy.c static void *dl_sym(void *handle, const char *name)
handle             53 src/dl_dummy.c static void dl_close(void *handle)
handle             59 src/dl_win.c   static ScmDynLoadInitFn dl_sym(void *handle, const char *name)
handle             61 src/dl_win.c       return (ScmDynLoadInitFn)GetProcAddress((HMODULE)handle, name);
handle             64 src/dl_win.c   static void dl_close(void *handle)
handle             66 src/dl_win.c       (void)FreeLibrary((HMODULE)handle);
handle           2846 src/gauche.h   SCM_EXTERN void  Scm_DeleteCleanupHandler(void *handle);
handle            690 src/load.c         void *handle;
handle            746 src/load.c         handle = dl_open(cpath);
handle            747 src/load.c         if (handle == NULL) {
handle            753 src/load.c         func = dl_sym(handle, initname+1);
handle            755 src/load.c             func = (void(*)(void))dl_sym(handle, initname);
handle            757 src/load.c                 dl_close(handle);