Home | History | Annotate | Download | only in lang

Lines Matching defs:redirects

150  * directory and environment, and redirects standard output and error
184 private Redirect[] redirects;
475 * The type of redirects returned from
481 * The type of redirects returned from
487 * The type of redirects returned from
669 private Redirect[] redirects() {
670 if (redirects == null)
671 redirects = new Redirect[] {
674 return redirects;
705 redirects()[0] = source;
735 redirects()[1] = destination;
769 redirects()[2] = destination;
835 return (redirects == null) ? Redirect.PIPE : redirects[0];
849 return (redirects == null) ? Redirect.PIPE : redirects[1];
863 return (redirects == null) ? Redirect.PIPE : redirects[2];
889 Arrays.fill(redirects(), Redirect.INHERIT);
1032 redirects,