Lines Matching defs:string
29 func ExecContext(ctx context.Context, name string, args ...string) error {
42 func execContext(ctx context.Context, name string, args ...string) error {
43 cmdStr := append([]string{name}, args...)
63 func ExecCombinedOutputContext(ctx context.Context, name string, args ...string) ([]byte, error) {
77 func execCombinedOutputContext(ctx context.Context, name string, args ...string) ([]byte, error) {
78 cmdStr := append([]string{name}, args...)