/external/llvm/utils/lit/lit/ |
D | ShCommands.py | 2 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:
|
D | TestRunner.py | 109 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):
|
D | ShUtil.py | 196 redirects = [] 219 redirects.append((op, arg)) 221 return Command(args, redirects)
|
/external/llvm/lib/Support/ |
D | Program.cpp | 31 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/ |
D | Program.inc | 182 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/ |
D | EMMAProperties.java | 192 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/ |
D | HttpUrlFetcher.java | 43 …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/ |
D | Program.h | 98 const StringRef **redirects = nullptr, ///< An optional array of pointers 128 const StringRef **redirects = nullptr, unsigned memoryLimit = 0,
|
/external/llvm/lib/Support/Windows/ |
D | Program.inc | 253 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/ |
D | libhttplib2.tex | 76 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 …]
|
D | CHANGELOG | 29 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
|
D | ref.tex | 46 that handles caching, keep-alive, compression, redirects and
|
/external/chromium-trace/catapult/third_party/Paste/docs/modules/ |
D | errordocument.txt | 1 :mod:`paste.errordocument` -- Do internal redirects for error responses
|
/external/llvm/unittests/Support/ |
D | ProgramTest.cpp | 194 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/ |
D | libxt_REDIRECT.man | 8 chains. It redirects the packet to the machine itself by changing the
|
D | libxt_TPROXY.man | 3 redirects the packet to a local socket without changing the packet header in
|
/external/curl/tests/data/ |
D | test599 | 71 HTTP GET with progress callback and redirects changing content sizes
|
/external/icu/icu4c/as_is/os400/ |
D | convertConfigure.sed | 24 # trouble w/ redirects.
|
/external/webrtc/webrtc/examples/androidapp/ |
D | README | 25 this redirects to or navigate directly to https://apprtc.appspot.com/r/<NNN> with
|
/external/jetty/src/java/org/eclipse/jetty/client/ |
D | HttpClient.java | 640 public void setMaxRedirects(int redirects) in setMaxRedirects() argument 642 _maxRedirects = redirects; in setMaxRedirects()
|
/external/curl/docs/ |
D | FEATURES | 51 - follow redirects 52 - maximum amount of redirects to follow
|
/external/skia/site/dev/tools/ |
D | codesearch.md | 7 [cs.skia.org](http://cs.skia.org) redirects to
|
/external/chromium-trace/catapult/third_party/webapp2/docs/tutorials/gettingstarted/ |
D | usingusers.rst | 41 Reload the page in your browser. Your application redirects you to the local
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/ |
D | CHANGELOG.md | 127 * 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/ |
D | curlmsg.msg | 72 TOO_MANY_REDIRECTS <too many redirects>
|