type os/exec.Cmd

27 uses

	os/exec (current package)
		exec.go#L148: type Cmd struct {
		exec.go#L404: func Command(name string, arg ...string) *Cmd {
		exec.go#L405: 	cmd := &Cmd{
		exec.go#L430: 		runtime.SetFinalizer(cmd, func(c *Cmd) {
		exec.go#L484: func CommandContext(ctx context.Context, name string, arg ...string) *Cmd {
		exec.go#L500: func (c *Cmd) String() string {
		exec.go#L524: func (c *Cmd) argv() []string {
		exec.go#L531: func (c *Cmd) childStdin() (*os.File, error) {
		exec.go#L565: func (c *Cmd) childStdout() (*os.File, error) {
		exec.go#L569: func (c *Cmd) childStderr(childStdout *os.File) (*os.File, error) {
		exec.go#L580: func (c *Cmd) writerDescriptor(w io.Writer) (*os.File, error) {
		exec.go#L628: func (c *Cmd) Run() error {
		exec.go#L641: func (c *Cmd) Start() error {
		exec.go#L796: func (c *Cmd) watchCtx(resultc chan<- ctxResult) {
		exec.go#L922: func (c *Cmd) Wait() error {
		exec.go#L967: func (c *Cmd) awaitGoroutines(timer *time.Timer) error {
		exec.go#L1014: func (c *Cmd) Output() ([]byte, error) {
		exec.go#L1037: func (c *Cmd) CombinedOutput() ([]byte, error) {
		exec.go#L1057: func (c *Cmd) StdinPipe() (io.WriteCloser, error) {
		exec.go#L1082: func (c *Cmd) StdoutPipe() (io.ReadCloser, error) {
		exec.go#L1107: func (c *Cmd) StderrPipe() (io.ReadCloser, error) {
		exec.go#L1197: func (c *Cmd) environ() ([]string, error) {
		exec.go#L1240: func (c *Cmd) Environ() []string {

	golang.org/x/tools/go/packages
		golist.go#L1067: func cmdDebugStr(cmd *exec.Cmd) string {

	golang.org/x/tools/internal/gocommand
		invoke.go#L296: func runCmdContext(ctx context.Context, cmd *exec.Cmd) (err error) {
		invoke.go#L427: func handleHangingGoCommand(start time.Time, cmd *exec.Cmd, resChan chan error) {
		invoke.go#L477: func cmdDebugStr(cmd *exec.Cmd) string {