Home
last modified time | relevance | path

Searched refs:redirects (Results 1 – 25 of 50) sorted by relevance

12

/external/llvm/utils/lit/lit/
DShCommands.py2 def __init__(self, args, redirects): argument
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:
DTestRunner.py109 redirects = [(0,), (1,), (2,)]
110 for r in j.redirects:
112 redirects[2] = [r[1], 'w', None]
114 redirects[2] = [r[1], 'a', None]
116 redirects[2] = redirects[int(r[1])]
118 redirects[1] = redirects[2] = [r[1], 'w', None]
120 redirects[1] = [r[1], 'w', None]
122 redirects[1] = [r[1], 'a', None]
124 redirects[0] = [r[1], 'r', None]
130 for index,r in enumerate(redirects):
DShUtil.py196 redirects = []
219 redirects.append((op, arg))
221 return Command(args, redirects)
/external/llvm/lib/Support/
DProgram.cpp31 const StringRef **redirects, unsigned secondsToWait, in ExecuteAndWait() argument
35 if (Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg)) { in ExecuteAndWait()
50 const char **envp, const StringRef **redirects, in ExecuteNoWait() argument
56 if (!Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg)) in ExecuteNoWait()
/external/llvm/lib/Support/Unix/
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[0], 0, ErrMsg)) { return false; }
274 if (RedirectIO(redirects[1], 1, ErrMsg)) { return false; }
275 if (redirects[1] && redirects[2] &&
[all …]
/external/emma/core/java12/com/vladium/emma/
DEMMAProperties.java192 final Map redirects = new HashMap ();
193 redirects.put (IReportProperties.PREFIX.concat (IReportProperties.OUT_ENCODING), in IReportProperties.PREFIX.concat()
195 redirects.put (IReportProperties.PREFIX.concat (IReportProperties.OUT_DIR), in IReportProperties.PREFIX.concat()
198 SYSTEM_PROPERTY_REDIRECTS = Collections.unmodifiableMap (redirects);
/external/glide/library/src/main/java/com/bumptech/glide/load/data/
DHttpUrlFetcher.java43 …private InputStream loadDataWithRedirects(URL url, int redirects, URL lastUrl) throws IOException { in loadDataWithRedirects() argument
44 if (redirects >= MAXIMUM_REDIRECTS) { in loadDataWithRedirects()
78 return loadDataWithRedirects(redirectUrl, redirects + 1, url); in loadDataWithRedirects()
/external/llvm/include/llvm/Support/
DProgram.h98 const StringRef **redirects = nullptr, ///< An optional array of pointers
128 const StringRef **redirects = nullptr, unsigned memoryLimit = 0,
/external/llvm/lib/Support/Windows/
DProgram.inc253 const char **envp, const StringRef **redirects,
303 if (redirects) {
306 si.hStdInput = RedirectIO(redirects[0], 0, ErrMsg);
311 si.hStdOutput = RedirectIO(redirects[1], 1, ErrMsg);
317 if (redirects[1] && redirects[2] && *(redirects[1]) == *(redirects[2])) {
330 si.hStdError = RedirectIO(redirects[2], 2, ErrMsg);
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/
Dlibhttplib2.tex76 Automatically follows 3XX redirects on GETs.
258 If \code{True}, which is the default, safe redirects are followed, where
260 URI to which it is being redirected. If \code{False} then no redirects are followed.
268 stripped from redirects. If \code{True} then Authorization: headers are left
269 in place when following redirects. This parameter only applies if following
270 redirects is turned on. Note that turning this on could cause your credentials
275 If \code{False}, which is the default, only safe redirects are followed, where
277 URI to which it is being redirected. If \code{True} then all redirects are followed.
352 If redirects are followed then the \class{Response} object returned
361 redirects were encountered, you can determine the ultimate URI that
[all …]
DCHANGELOG29 204 Credentials can leak in HTTP redirects
32 204 Credentials can leak in HTTP redirects
176 httplib2 to follow all redirects, as opposed to
177 following only the safe redirects. This makes the
Dref.tex46 that handles caching, keep-alive, compression, redirects and
/external/chromium-trace/catapult/third_party/Paste/docs/modules/
Derrordocument.txt1 :mod:`paste.errordocument` -- Do internal redirects for error responses
/external/llvm/unittests/Support/
DProgramTest.cpp194 const StringRef *redirects[] = { &nul, &nul, nullptr }; in TEST_F() local
195 int rc = ExecuteAndWait(my_exe, argv, getEnviron(), redirects, in TEST_F()
/external/iptables/extensions/
Dlibxt_REDIRECT.man8 chains. It redirects the packet to the machine itself by changing the
Dlibxt_TPROXY.man3 redirects the packet to a local socket without changing the packet header in
/external/curl/tests/data/
Dtest59971 HTTP GET with progress callback and redirects changing content sizes
/external/icu/icu4c/as_is/os400/
DconvertConfigure.sed24 # trouble w/ redirects.
/external/webrtc/webrtc/examples/androidapp/
DREADME25 this redirects to or navigate directly to https://apprtc.appspot.com/r/<NNN> with
/external/jetty/src/java/org/eclipse/jetty/client/
DHttpClient.java640 public void setMaxRedirects(int redirects) in setMaxRedirects() argument
642 _maxRedirects = redirects; in setMaxRedirects()
/external/curl/docs/
DFEATURES51 - follow redirects
52 - maximum amount of redirects to follow
/external/skia/site/dev/tools/
Dcodesearch.md7 [cs.skia.org](http://cs.skia.org) redirects to
/external/chromium-trace/catapult/third_party/webapp2/docs/tutorials/gettingstarted/
Dusingusers.rst41 Reload the page in your browser. Your application redirects you to the local
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/
DCHANGELOG.md127 * Use the following redirects feature of httplib2 where it returns the
128 ultimate URL after a series of redirects to avoid multiple hops for every
/external/curl/packages/vms/
Dcurlmsg.msg72 TOO_MANY_REDIRECTS <too many redirects>

12