func internal/strconv.Itoa

31 uses

	internal/strconv (current package)
		itoa.go#L50: func Itoa(i int) string {

	internal/poll
		fd_unix.go#L382: 				panic("invalid return from write: got " + strconv.Itoa(n) + " from a write of " + strconv.Itoa(max-nn))

	internal/syscall/unix
		fchmodat_linux.go#L32: 	procPath := "/proc/self/fd/" + strconv.Itoa(fd)

	net
		dnsclient.go#L39: 		return strconv.Itoa(int(ip[15])) + "." + strconv.Itoa(int(ip[14])) + "." + strconv.Itoa(int(ip[13])) + "." + strconv.Itoa(int(ip[12])) + ".in-addr.arpa.", nil
		dnsclient_unix.go#L562: 	return "hostLookupOrder=" + strconv.Itoa(int(o)) + "??"
		interface.go#L239: 		name = strconv.Itoa(index)
		ip.go#L518: 	return nn.String() + "/" + strconv.Itoa(l)
		tcpsock.go#L50: 		return JoinHostPort(ip+"%"+a.Zone, strconv.Itoa(a.Port))
		tcpsock.go#L52: 	return JoinHostPort(ip, strconv.Itoa(a.Port))
		udpsock.go#L50: 		return JoinHostPort(ip+"%"+a.Zone, strconv.Itoa(a.Port))
		udpsock.go#L52: 	return JoinHostPort(ip, strconv.Itoa(a.Port))

	os
		exec_posix.go#L137: 			res = "exit status " + strconv.Itoa(code) // unix
		exec_posix.go#L144: 			res += " (trap " + strconv.Itoa(status.TrapCause()) + ")"

	reflect
		value.go#L3633: 		panic("reflect: cannot convert slice with length " + strconv.Itoa(v.Len()) + " to pointer to array with length " + strconv.Itoa(n))
		value.go#L3643: 		panic("reflect: cannot convert slice with length " + strconv.Itoa(v.Len()) + " to array with length " + strconv.Itoa(n))

	strconv
		number.go#L215: 	return strconv.Itoa(i)

	syscall
		exec_linux.go#L684: 		data = append(data, strconv.Itoa(im.ContainerID)+" "+strconv.Itoa(im.HostID)+" "+strconv.Itoa(im.Size)+"\n"...)
		exec_linux.go#L713: 	sgf := "/proc/" + strconv.Itoa(pid) + "/setgroups"
		exec_linux.go#L738: 		uidf := "/proc/" + strconv.Itoa(pid) + "/uid_map"
		exec_linux.go#L749: 		gidf := "/proc/" + strconv.Itoa(pid) + "/gid_map"
		syscall_linux.go#L364: 	return Utimes("/proc/self/fd/"+strconv.Itoa(fd), tv)
		syscall_unix.go#L117: 	return "errno " + strconv.Itoa(int(e))
		syscall_unix.go#L179: 	return "signal " + strconv.Itoa(int(s))