func runtime.Caller

9 uses

	runtime (current package)
		cgocall.go#L874: 	pc, path, line, ok := Caller(3)
		extern.go#L309: func Caller(skip int) (pc uintptr, file string, line int, ok bool) {

	flag
		flag.go#L508: 		_, file, line, ok := runtime.Caller(2)

	go.uber.org/mock/gomock
		controller.go#L298: 	if _, file, line, ok := runtime.Caller(skip + 1); ok {

	go/types
		errors.go#L23: 		if _, file, line, ok := runtime.Caller(1); ok {

	google.golang.org/grpc
		server.go#L707: 		_, file, line, _ := runtime.Caller(1)

	internal/reflectlite
		value.go#L182: 	pc, _, _, _ := runtime.Caller(2)

	log
		log.go#L218: 			_, file, line, ok = runtime.Caller(calldepth)

	net/http
		server.go#L2904: 	_, file, line, ok := runtime.Caller(3)