Lines Matching refs:uderr
879 static struct t_uderr *uderr = NULL; in do_poll_clts_action() local
913 if (uderr) { in do_poll_clts_action()
914 (void) t_free((char *)uderr, T_UDERROR); in do_poll_clts_action()
915 uderr = NULL; in do_poll_clts_action()
1037 if (uderr == NULL) { in do_poll_clts_action()
1039 uderr = (struct t_uderr *)t_alloc(fd, T_UDERROR, T_ALL); in do_poll_clts_action()
1040 if (uderr == NULL) { in do_poll_clts_action()
1061 ret = t_rcvuderr(fd, uderr); in do_poll_clts_action()
1068 errno = uderr->error; in do_poll_clts_action()
1084 ret = netdir_getbyaddr(nconf, &host, &uderr->addr); in do_poll_clts_action()
1100 buf = (char *)malloc(uderr->addr.len * 2 + 1); in do_poll_clts_action()
1101 for (i = 0, j = 0; i < uderr->addr.len; i++, j += 2) { in do_poll_clts_action()
1102 buf[j] = hex[((uderr->addr.buf[i]) >> 4) & 0xf]; in do_poll_clts_action()
1103 buf[j+1] = hex[uderr->addr.buf[i] & 0xf]; in do_poll_clts_action()