Lines Matching defs:handle
62 struct _citrus_iconv *handle;
64 ret = _citrus_iconv_open(&handle, _PATH_ICONV, in, out);
70 return ((iconv_t)(void *)handle);
74 iconv_close(iconv_t handle)
76 if (ISBADF(handle)) {
81 _citrus_iconv_close((struct _citrus_iconv *)(void *)handle);
87 iconv(iconv_t handle, char **in, size_t *szin, char **out, size_t *szout)
92 if (ISBADF(handle)) {
98 (struct _citrus_iconv *)(void *)handle,
109 __iconv(iconv_t handle, char **in, size_t *szin, char **out,
115 if (ISBADF(handle)) {
121 (struct _citrus_iconv *)(void *)handle,