Searched refs:redirects (Results 1 - 25 of 28) sorted by relevance

12

/external/swiftshader/third_party/LLVM/lib/Support/
H A DProgram.cpp28 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);
25 ExecuteAndWait(const Path& path, const char** args, const char** envp, const Path** redirects, unsigned secondsToWait, unsigned memoryLimit, std::string* ErrMsg) argument
40 ExecuteNoWait(const Path& path, const char** args, const char** envp, const Path** redirects, unsigned memoryLimit, std::string* ErrMsg) argument
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DProgram.h67 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/
H A DProgram.cpp31 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))
30 ExecuteAndWait(StringRef Program, const char **args, const char **envp, const StringRef **redirects, unsigned secondsToWait, unsigned memoryLimit, std::string *ErrMsg, bool *ExecutionFailed) argument
49 ExecuteNoWait(StringRef Program, const char **args, const char **envp, const StringRef **redirects, unsigned memoryLimit, std::string *ErrMsg, bool *ExecutionFailed) argument
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DProgram.cpp31 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))
30 ExecuteAndWait(StringRef Program, const char **args, const char **envp, const StringRef **redirects, unsigned secondsToWait, unsigned memoryLimit, std::string *ErrMsg, bool *ExecutionFailed) argument
49 ExecuteNoWait(StringRef Program, const char **args, const char **envp, const StringRef **redirects, unsigned memoryLimit, std::string *ErrMsg, bool *ExecutionFailed) argument
/external/llvm/utils/lit/lit/
H A DShCommands.py2 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:
H A DTestRunner.py221 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]
234 redirects[
[all...]
H A DShUtil.py196 redirects = []
219 redirects.append((op, arg))
221 return Command(args, redirects)
/external/swiftshader/third_party/LLVM/utils/lit/lit/
H A DShCommands.py2 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:
H A DTclUtil.py212 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))
H A DTestRunner.py80 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]
93 redirects[
[all...]
H A DShUtil.py193 redirects = []
216 redirects.append((op, arg))
218 return Command(args, redirects)
/external/curl/docs/cmdline-opts/
H A Dlocation-trusted.d8 the site redirects you to a site to which you'll send your authentication info
H A Dmax-redirs.d3 Help: Maximum number of redirects allowed
H A Dlocation.d3 Help: Follow redirects
13 this. You can limit the amount of redirects to follow by using the
H A Dcookie.d26 (even after redirects are followed) and cannot be modified by a server-set
/external/llvm/include/llvm/Support/
H A DProgram.h100 const StringRef **redirects = nullptr, ///< An optional array of pointers
130 const StringRef **redirects = nullptr, unsigned memoryLimit = 0,
/external/swiftshader/third_party/LLVM/lib/Support/Unix/
H A DProgram.inc182 const Path **redirects, unsigned memoryLimit,
191 if (redirects) {
196 if (RedirectIO_PS(redirects[0], 0, ErrMsg, FileActions) ||
197 RedirectIO_PS(redirects[1], 1, ErrMsg, FileActions))
199 if (redirects[1] == 0 || redirects[2] == 0 ||
200 *redirects[1] != *redirects[2]) {
202 if (RedirectIO_PS(redirects[2], 2, ErrMsg, FileActions)) return false;
247 if (redirects) {
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DProgram.h100 const StringRef **redirects = nullptr, ///< An optional array of pointers
130 const StringRef **redirects = nullptr, unsigned memoryLimit = 0,
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
H A DProgram.inc156 const Path** redirects,
242 if (redirects) {
245 si.hStdInput = RedirectIO(redirects[0], 0, ErrMsg);
250 si.hStdOutput = RedirectIO(redirects[1], 1, ErrMsg);
256 if (redirects[1] && redirects[2] && *(redirects[1]) == *(redirects[2])) {
264 si.hStdError = RedirectIO(redirects[2], 2, ErrMsg);
/external/llvm/lib/Support/Unix/
H A DProgram.inc182 const char **envp, const StringRef **redirects,
203 if (redirects) {
206 if (redirects[I]) {
207 RedirectsStorage[I] = *redirects[I];
219 if (redirects[1] == nullptr || redirects[2] == nullptr ||
220 *redirects[1] != *redirects[2]) {
270 if (redirects) {
272 if (RedirectIO(redirects[
[all...]
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
H A DProgram.inc182 const char **envp, const StringRef **redirects,
203 if (redirects) {
206 if (redirects[I]) {
207 RedirectsStorage[I] = *redirects[I];
219 if (redirects[1] == nullptr || redirects[2] == nullptr ||
220 *redirects[1] != *redirects[2]) {
270 if (redirects) {
272 if (RedirectIO(redirects[
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/data/
H A DHttpUrlFetcher.java40 return loadDataWithRedirects(glideUrl.toURL(), 0 /*redirects*/, null /*lastUrl*/);
43 private InputStream loadDataWithRedirects(URL url, int redirects, URL lastUrl) throws IOException { argument
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/
H A DEMMAProperties.java159 // (5) system property redirects (report.out.encoding->file.encoding,
192 final Map redirects = new HashMap ();
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);
/external/swiftshader/third_party/LLVM/tools/bugpoint/
H A DToolRunner.cpp64 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, NumSecond
[all...]
/external/llvm/unittests/Support/
H A DProgramTest.cpp194 const StringRef *redirects[] = { &nul, &nul, nullptr }; local
195 int rc = ExecuteAndWait(my_exe, argv, getEnviron(), redirects,

Completed in 1055 milliseconds

12