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

1 2 3

  /external/swiftshader/third_party/LLVM/lib/Support/
Program.cpp 28 const Path** redirects,
33 if (prg.Execute(path, args, envp, redirects, memoryLimit, ErrMsg))
43 const Path** redirects,
47 prg.Execute(path, args, envp, redirects, memoryLimit, ErrMsg);
  /libcore/ojluni/src/main/java/java/lang/
ProcessImpl.java 61 ProcessBuilder.Redirect[] redirects,
93 if (redirects == null) {
98 if (redirects[0] == Redirect.PIPE)
100 else if (redirects[0] == Redirect.INHERIT)
103 f0 = new FileInputStream(redirects[0].file());
107 if (redirects[1] == Redirect.PIPE)
109 else if (redirects[1] == Redirect.INHERIT)
112 f1 = new FileOutputStream(redirects[1].file(),
113 redirects[1].append());
117 if (redirects[2] == Redirect.PIPE
    [all...]
ProcessBuilder.java 150 * directory and environment, and redirects standard output and error
184 private Redirect[] redirects; field in class:ProcessBuilder
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
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Program.h 67 const sys::Path** redirects = 0, ///< An optional array of pointers to
138 const sys::Path** redirects = 0,
148 const sys::Path** redirects = 0,
  /external/llvm/lib/Support/
Program.cpp 27 const char **env, const StringRef **Redirects,
31 const StringRef **redirects, unsigned secondsToWait,
35 if (Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg)) {
50 const char **envp, const StringRef **redirects,
56 if (!Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg))
  /external/llvm/utils/lit/lit/
ShCommands.py 2 def __init__(self, args, redirects):
4 self.redirects = list(redirects)
7 return 'Command(%r, %r)' % (self.args, self.redirects)
13 return ((self.args, self.redirects) ==
14 (other.args, other.redirects))
32 for r in self.redirects:
TestRunner.py 218 # stdout, stderr for N equal to 0, 1, or 2 respectively. Redirects to or
221 redirects = [(0,), (1,), (2,)]
222 for r in j.redirects:
224 redirects[2] = [r[1], 'w', None]
226 redirects[2] = [r[1], 'a', None]
228 redirects[2] = redirects[int(r[1])]
230 redirects[1] = redirects[2] = [r[1], 'w', None]
232 redirects[1] = [r[1], 'w', None
    [all...]
ShUtil.py 196 redirects = []
219 redirects.append((op, arg))
221 return Command(args, redirects)
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
ShCommands.py 2 def __init__(self, args, redirects):
4 self.redirects = list(redirects)
7 return 'Command(%r, %r)' % (self.args, self.redirects)
13 return cmp((self.args, self.redirects),
14 (other.args, other.redirects))
32 for r in self.redirects:
TestRunner.py 77 # stdout, stderr for N equal to 0, 1, or 2 respectively. Redirects to or
80 redirects = [(0,), (1,), (2,)]
81 for r in j.redirects:
83 redirects[2] = [r[1], 'w', None]
85 redirects[2] = [r[1], 'a', None]
87 redirects[2] = redirects[int(r[1])]
89 redirects[1] = redirects[2] = [r[1], 'w', None]
91 redirects[1] = [r[1], 'w', None
    [all...]
TclUtil.py 212 commands[-1].redirects.insert(0, (('>&',2),'1'))
215 commands[-1].redirects.append(self.parse_redirect(arg, 4))
217 commands[-1].redirects.append(self.parse_redirect(arg, 3))
219 commands[-1].redirects.append(self.parse_redirect(arg, 2))
221 commands[-1].redirects.append(self.parse_redirect(arg, 1))
ShUtil.py 193 redirects = []
216 redirects.append((op, arg))
218 return Command(args, redirects)
  /external/llvm/include/llvm/Support/
Program.h 100 const StringRef **redirects = nullptr, ///< An optional array of pointers
130 const StringRef **redirects = nullptr, unsigned memoryLimit = 0,
  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
HttpUrlFetcher.java 40 return loadDataWithRedirects(glideUrl.toURL(), 0 /*redirects*/, null /*lastUrl*/);
43 private InputStream loadDataWithRedirects(URL url, int redirects, URL lastUrl) throws IOException {
44 if (redirects >= MAXIMUM_REDIRECTS) {
45 throw new IOException("Too many (> " + MAXIMUM_REDIRECTS + ") redirects!");
78 return loadDataWithRedirects(redirectUrl, redirects + 1, url);
  /external/emma/core/java12/com/vladium/emma/
EMMAProperties.java 159 // (5) system property redirects (report.out.encoding->file.encoding,
192 final Map redirects = new HashMap (); external variable declarations
193 redirects.put (IReportProperties.PREFIX.concat (IReportProperties.OUT_ENCODING),
195 redirects.put (IReportProperties.PREFIX.concat (IReportProperties.OUT_DIR),
198 SYSTEM_PROPERTY_REDIRECTS = Collections.unmodifiableMap (redirects);
  /prebuilts/go/darwin-x86/src/net/http/
client.go 36 // redirects.
38 // When following redirects, the Client will forward all headers set on the
62 // CheckRedirect specifies the policy for handling redirects.
91 // redirects, and reading the response body. The timer remains
126 // handle higher-level protocol details such as redirects,
347 // maximum of 10 redirects:
355 // An error is returned if there were too many redirects or if there
399 // control how redirects are processed. If returned, the next request
458 // policy (such as redirects, cookies, auth) as configured on the
636 // cookies as we follow redirects since each redirect may end u
    [all...]
client_test.go 228 if e, g := "Get /?n=10: stopped after 10 redirects", fmt.Sprintf("%v", err); e != g {
232 // HEAD request should also have the ability to follow redirects.
234 if e, g := "Head /?n=10: stopped after 10 redirects", fmt.Sprintf("%v", err); e != g {
238 // Do should also follow redirects.
241 if e, g := "Get /?n=10: stopped after 10 redirects", fmt.Sprintf("%v", err); e != g {
248 if e, g := "Get /?n=10: stopped after 10 redirects", fmt.Sprintf("%v", err); e != g {
293 checkErr = errors.New("no redirects allowed")
296 t.Errorf("with redirects forbidden, expected a *url.Error with our 'no redirects allowed' error inside; got %#v (%q)", err, err)
324 return errors.New("too many redirects")
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
client.go 36 // redirects.
38 // When following redirects, the Client will forward all headers set on the
62 // CheckRedirect specifies the policy for handling redirects.
91 // redirects, and reading the response body. The timer remains
126 // handle higher-level protocol details such as redirects,
347 // maximum of 10 redirects:
355 // An error is returned if there were too many redirects or if there
399 // control how redirects are processed. If returned, the next request
458 // policy (such as redirects, cookies, auth) as configured on the
636 // cookies as we follow redirects since each redirect may end u
    [all...]
client_test.go 228 if e, g := "Get /?n=10: stopped after 10 redirects", fmt.Sprintf("%v", err); e != g {
232 // HEAD request should also have the ability to follow redirects.
234 if e, g := "Head /?n=10: stopped after 10 redirects", fmt.Sprintf("%v", err); e != g {
238 // Do should also follow redirects.
241 if e, g := "Get /?n=10: stopped after 10 redirects", fmt.Sprintf("%v", err); e != g {
248 if e, g := "Get /?n=10: stopped after 10 redirects", fmt.Sprintf("%v", err); e != g {
293 checkErr = errors.New("no redirects allowed")
296 t.Errorf("with redirects forbidden, expected a *url.Error with our 'no redirects allowed' error inside; got %#v (%q)", err, err)
324 return errors.New("too many redirects")
    [all...]
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
ToolRunner.cpp 64 const sys::Path* redirects[3]; local
65 redirects[0] = &StdInFile;
66 redirects[1] = &StdOutFile;
67 redirects[2] = &StdErrFile;
79 sys::Program::ExecuteAndWait(ProgramPath, Args, 0, redirects,
96 const sys::Path* redirects[3]; local
97 redirects[0] = &StdInFile;
98 redirects[1] = &StdOutFile;
99 redirects[2] = &StdErrFile;
112 0, redirects, NumSeconds, MemoryLimit);
    [all...]
  /prebuilts/go/darwin-x86/misc/linkcheck/
linkcheck.go 131 // Handle redirects.
138 // Skip off-site redirects.
  /prebuilts/go/linux-x86/misc/linkcheck/
linkcheck.go 131 // Handle redirects.
138 // Skip off-site redirects.
  /external/llvm/unittests/Support/
ProgramTest.cpp 151 const StringRef *Redirects[] = { nullptr, &LongPathRef, nullptr };
152 int RC = ExecuteAndWait(MyExe, ArgV, getEnviron(), Redirects,
194 const StringRef *redirects[] = { &nul, &nul, nullptr }; local
195 int rc = ExecuteAndWait(my_exe, argv, getEnviron(), redirects,
  /libcore/luni/src/test/java/libcore/java/lang/
ProcessBuilderTest.java 372 Redirect[] redirects = new Redirect[] { local
382 for (Redirect a : redirects) {
383 for (Redirect b : redirects) {
394 * various Redirects. These guarantees are made in the respective javadocs,
  /prebuilts/go/darwin-x86/src/cmd/vet/
deadcode.go 209 // identifying dead code, continue redirects control flow just

Completed in 446 milliseconds

1 2 3