HomeSort by relevance Sort by last modified time
    Searched refs:Redirect (Results 1 - 25 of 64) sorted by null

1 2 3

  /libcore/ojluni/src/main/java/java/lang/
ProcessBuilder.java 67 * <li><a name="redirect-input">a source of <i>standard input</i></a>.
72 * {@link #redirectInput(Redirect) redirectInput}.
82 * <li><a name="redirect-output">a destination for <i>standard output</i>
88 * {@link #redirectOutput(Redirect) redirectOutput} and
89 * {@link #redirectError(Redirect) redirectError}.
116 * {@link #redirectOutput(Redirect) redirectOutput}
118 * {@link #redirectError(Redirect) redirectError}
121 * always be a <a href="#redirect-output">null input stream</a>
163 * pb.redirectOutput(Redirect.appendTo(log));
165 * assert pb.redirectInput() == Redirect.PIPE
    [all...]
ProcessImpl.java 31 import java.lang.ProcessBuilder.Redirect;
32 import java.lang.ProcessBuilder.Redirect;
61 ProcessBuilder.Redirect[] redirects,
98 if (redirects[0] == Redirect.PIPE)
100 else if (redirects[0] == Redirect.INHERIT)
107 if (redirects[1] == Redirect.PIPE)
109 else if (redirects[1] == Redirect.INHERIT)
117 if (redirects[2] == Redirect.PIPE)
119 else if (redirects[2] == Redirect.INHERIT)
  /libcore/luni/src/test/java/libcore/java/lang/
ProcessBuilderTest.java 29 import java.lang.ProcessBuilder.Redirect;
30 import java.lang.ProcessBuilder.Redirect.Type;
44 import static java.lang.ProcessBuilder.Redirect.INHERIT;
45 import static java.lang.ProcessBuilder.Redirect.PIPE;
107 .redirectInput(Redirect.INHERIT)
108 .redirectOutput(Redirect.INHERIT)
109 .redirectError(Redirect.INHERIT)
202 .redirectError(Redirect.PIPE).start();
352 Redirect a = Redirect.from(file)
    [all...]
  /external/v8/src/
assembler.cc 917 : address_(Redirect(isolate, address)) {}
923 : address_(Redirect(isolate, fun->address(), type)) {}
936 : address_(Redirect(isolate, f->entry,
969 return ExternalReference(Redirect(
    [all...]
  /external/curl/docs/cmdline-opts/
stderr.d 2 Help: Where to redirect stderr
5 Redirect all writes to stderr to the specified file instead. If the file name
  /external/libvpx/libvpx/build/make/
gen_msvs_sln.sh 27 --out=outfile Redirect output to a file
  /prebuilts/go/darwin-x86/doc/articles/wiki/
final-parsetemplate.go 37 http.Redirect(w, r, "/edit/"+title, http.StatusFound)
59 http.Redirect(w, r, "/view/"+title, http.StatusFound)
final.go 37 http.Redirect(w, r, "/edit/"+title, http.StatusFound)
59 http.Redirect(w, r, "/view/"+title, http.StatusFound)
part3-errorhandling.go 42 http.Redirect(w, r, "/edit/"+title, http.StatusFound)
66 http.Redirect(w, r, "/view/"+title, http.StatusFound)
final-noclosure.go 42 http.Redirect(w, r, "/edit/"+title, http.StatusFound)
72 http.Redirect(w, r, "/view/"+title, http.StatusFound)
final-template.go 53 http.Redirect(w, r, "/view/"+title, http.StatusFound)
  /prebuilts/go/linux-x86/doc/articles/wiki/
final-parsetemplate.go 37 http.Redirect(w, r, "/edit/"+title, http.StatusFound)
59 http.Redirect(w, r, "/view/"+title, http.StatusFound)
final.go 37 http.Redirect(w, r, "/edit/"+title, http.StatusFound)
59 http.Redirect(w, r, "/view/"+title, http.StatusFound)
part3-errorhandling.go 42 http.Redirect(w, r, "/edit/"+title, http.StatusFound)
66 http.Redirect(w, r, "/view/"+title, http.StatusFound)
final-noclosure.go 42 http.Redirect(w, r, "/edit/"+title, http.StatusFound)
72 http.Redirect(w, r, "/view/"+title, http.StatusFound)
final-template.go 53 http.Redirect(w, r, "/view/"+title, http.StatusFound)
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
shortcircuit.go 68 // Step 3: Redirect control flow around known branches.
74 // We can redirect p to go directly to t instead of b.
118 // Redirect p's outgoing edge to t.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
shortcircuit.go 68 // Step 3: Redirect control flow around known branches.
74 // We can redirect p to go directly to t instead of b.
118 // Redirect p's outgoing edge to t.
  /cts/hostsidetests/security/src/android/security/cts/
SELinuxHostTest.java 229 pb.redirectOutput(ProcessBuilder.Redirect.PIPE);
311 pb.redirectOutput(ProcessBuilder.Redirect.PIPE);
364 pb.redirectOutput(ProcessBuilder.Redirect.PIPE);
551 pb.redirectOutput(ProcessBuilder.Redirect.PIPE);
626 pb.redirectOutput(ProcessBuilder.Redirect.PIPE);
706 pb.redirectOutput(ProcessBuilder.Redirect.PIPE);
745 pb.redirectOutput(ProcessBuilder.Redirect.PIPE);
781 pb.redirectOutput(ProcessBuilder.Redirect.PIPE);
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
status.go 98 StatusTemporaryRedirect: "Temporary Redirect",
99 StatusPermanentRedirect: "Permanent Redirect",
client.go 43 // These headers will be ignored when following a redirect to a domain
45 // For example, a redirect from "foo.com" to either "foo.com" or "sub.foo.com"
46 // will forward the sensitive headers, but a redirect to "bar.com" will not.
49 // Since each redirect may mutate the state of the cookie jar,
50 // a redirect may possibly alter a cookie set in the initial request.
64 // following an HTTP redirect. The arguments req and via are
83 // redirect that the Client follows.
349 // the following redirect codes, Get follows the redirect, up to a
355 // 307 (Temporary Redirect)
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
status.go 98 StatusTemporaryRedirect: "Temporary Redirect",
99 StatusPermanentRedirect: "Permanent Redirect",
client.go 43 // These headers will be ignored when following a redirect to a domain
45 // For example, a redirect from "foo.com" to either "foo.com" or "sub.foo.com"
46 // will forward the sensitive headers, but a redirect to "bar.com" will not.
49 // Since each redirect may mutate the state of the cookie jar,
50 // a redirect may possibly alter a cookie set in the initial request.
64 // following an HTTP redirect. The arguments req and via are
83 // redirect that the Client follows.
349 // the following redirect codes, Get follows the redirect, up to a
355 // 307 (Temporary Redirect)
    [all...]
  /development/tools/axl/
axl.py 102 class Redirect(BaseProtocol):
173 """Redirect back to same resource"""
243 Redirect, DataDrop, DropOnce, NoCR, PipeDrop, RedirectLoop, ReadAll, \
  /external/clang/include/clang/Driver/
Compilation.h 256 /// Redirect - Redirect output of this compilation. Can only be done once.
263 void Redirect(const StringRef** Redirects);

Completed in 473 milliseconds

1 2 3