func internal/itoa.Itoa

25 uses

	internal/itoa (current package)
		itoa.go#L10: func Itoa(val int) string {

	net
		dnsclient_unix.go#L547: 	return "hostLookupOrder=" + itoa.Itoa(int(o)) + "??"
		tcpsock.go#L50: 		return JoinHostPort(ip+"%"+a.Zone, itoa.Itoa(a.Port))
		tcpsock.go#L52: 	return JoinHostPort(ip, itoa.Itoa(a.Port))
		udpsock.go#L53: 		return JoinHostPort(ip+"%"+a.Zone, itoa.Itoa(a.Port))
		udpsock.go#L55: 	return JoinHostPort(ip, itoa.Itoa(a.Port))

	net/netip
		netip.go#L652: 			return Prefix{}, errors.New("prefix length " + itoa.Itoa(b) + " too large for IPv4")
		netip.go#L657: 			return Prefix{}, errors.New("prefix length " + itoa.Itoa(b) + " too large for IPv6")
		netip.go#L1125: 		return joinHostPort(p.ip.String(), itoa.Itoa(int(p.port)))
		netip.go#L1481: 	return p.ip.String() + "/" + itoa.Itoa(p.Bits())

	os
		exec_posix.go#L110: 			res = "exit status " + itoa.Itoa(code) // unix
		exec_posix.go#L117: 			res += " (trap " + itoa.Itoa(status.TrapCause()) + ")"

	reflect
		value.go#L3725: 		panic("reflect: cannot convert slice with length " + itoa.Itoa(v.Len()) + " to pointer to array with length " + itoa.Itoa(n))
		value.go#L3735: 		panic("reflect: cannot convert slice with length " + itoa.Itoa(v.Len()) + " to array with length " + itoa.Itoa(n))

	syscall
		exec_linux.go#L647: 		data = append(data, itoa.Itoa(im.ContainerID)+" "+itoa.Itoa(im.HostID)+" "+itoa.Itoa(im.Size)+"\n"...)
		exec_linux.go#L676: 	sgf := "/proc/" + itoa.Itoa(pid) + "/setgroups"
		exec_linux.go#L701: 		uidf := "/proc/" + itoa.Itoa(pid) + "/uid_map"
		exec_linux.go#L712: 		gidf := "/proc/" + itoa.Itoa(pid) + "/gid_map"
		syscall_linux.go#L356: 	return Utimes("/proc/self/fd/"+itoa.Itoa(fd), tv)
		syscall_unix.go#L115: 	return "errno " + itoa.Itoa(int(e))
		syscall_unix.go#L177: 	return "signal " + itoa.Itoa(int(s))