func internal/itoa.Itoa

23 uses

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

	net
		dnsclient_unix.go#L517: 	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#L660: 			return Prefix{}, errors.New("prefix length " + itoa.Itoa(b) + " too large for IPv4")
		netip.go#L665: 			return Prefix{}, errors.New("prefix length " + itoa.Itoa(b) + " too large for IPv6")
		netip.go#L1137: 		return joinHostPort(p.ip.String(), itoa.Itoa(int(p.port)))
		netip.go#L1497: 	return p.ip.String() + "/" + itoa.Itoa(int(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#L3361: 		panic("reflect: cannot convert slice with length " + itoa.Itoa(v.Len()) + " to pointer to array with length " + itoa.Itoa(n))

	syscall
		exec_linux.go#L549: 		data = append(data, []byte(itoa.Itoa(im.ContainerID)+" "+itoa.Itoa(im.HostID)+" "+itoa.Itoa(im.Size)+"\n")...)
		exec_linux.go#L578: 	sgf := "/proc/" + itoa.Itoa(pid) + "/setgroups"
		exec_linux.go#L603: 		uidf := "/proc/" + itoa.Itoa(pid) + "/uid_map"
		exec_linux.go#L614: 		gidf := "/proc/" + itoa.Itoa(pid) + "/gid_map"
		syscall_linux.go#L239: 	return Utimes("/proc/self/fd/"+itoa.Itoa(fd), tv)
		syscall_unix.go#L124: 	return "errno " + itoa.Itoa(int(e))
		syscall_unix.go#L184: 	return "signal " + itoa.Itoa(int(s))