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

1 2 3 4 5 6 7 8 91011>>

  /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 85 # stdout, stderr for N equal to 0, 1, or 2 respectively. Redirects to or
88 redirects = [(0,), (1,), (2,)]
89 for r in j.redirects:
91 redirects[2] = [r[1], 'w', None]
93 redirects[2] = [r[1], 'a', None]
95 redirects[2] = redirects[int(r[1])]
97 redirects[1] = redirects[2] = [r[1], 'w', None]
99 redirects[1] = [r[1], 'w', None
    [all...]
  /external/ceres-solver/google3/glog/
logging.h 4 // This is a shim header that redirects the Ceres includes of "glog/logging.h"
  /external/apache-http/src/org/apache/http/client/params/
ClientPNames.java 67 * Defines whether redirects should be handled automatically
72 public static final String HANDLE_REDIRECTS = "http.protocol.handle-redirects";
75 * Defines whether relative redirects should be rejected.
83 * Defines the maximum number of redirects to be followed.
84 * The limit on number of redirects is intended to prevent infinite loops.
89 public static final String MAX_REDIRECTS = "http.protocol.max-redirects";
92 * Defines whether circular redirects (redirects to the same location) should be allowed.
93 * The HTTP spec is not sufficiently clear whether circular redirects are permitted,
99 public static final String ALLOW_CIRCULAR_REDIRECTS = "http.protocol.allow-circular-redirects";
    [all...]
  /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/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/clang/lib/Driver/
Compilation.cpp 28 TranslatedArgs(_TranslatedArgs), Redirects(nullptr),
48 if (Redirects) {
49 delete Redirects[1];
50 delete Redirects[2];
51 delete [] Redirects;
158 int Res = C.Execute(Redirects, &Error, &ExecutionFailed);
233 Redirects = new const StringRef*[3]();
234 Redirects[0] = nullptr;
235 Redirects[1] = new StringRef();
236 Redirects[2] = new StringRef()
    [all...]
Job.cpp 217 int Command::Execute(const StringRef **Redirects, std::string *ErrMsg,
227 Redirects, /*secondsToWait*/ 0,
254 Redirects, /*secondsToWait*/ 0,
279 int FallbackCommand::Execute(const StringRef **Redirects, std::string *ErrMsg,
281 int PrimaryStatus = Command::Execute(Redirects, ErrMsg, ExecutionFailed);
294 int SecondaryStatus = Fallback->Execute(Redirects, ErrMsg, ExecutionFailed);
  /external/chromium-trace/trace-viewer/third_party/Paste/docs/modules/
errordocument.txt 1 :mod:`paste.errordocument` -- Do internal redirects for error responses
  /external/llvm/lib/Support/Unix/
Program.inc 181 const char **envp, const StringRef **redirects,
202 if (redirects) {
205 if (redirects[I]) {
206 RedirectsStorage[I] = *redirects[I];
218 if (redirects[1] == nullptr || redirects[2] == nullptr ||
219 *redirects[1] != *redirects[2]) {
269 if (redirects) {
271 if (RedirectIO(redirects[0], 0, ErrMsg)) { return false;
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
PickWallpaper.java 21 * This just redirects to the standard pick action.
Wallpaper.java 24 * Wallpaper picker for the camera application. This just redirects to the
  /cts/tests/tests/security/src/android/security/cts/
KernelSettingsTest.java 119 * ICMP redirects should be disabled.
123 assertEquals("ICMP redirects are enabled for IPv4.",
130 assertEquals("ICMP redirects are enabled for IPv6.",
  /external/apache-http/src/org/apache/http/impl/client/
RedirectLocations.java 39 * A collection of URIs that were used as redirects.
63 * Adds a new URI to the list of redirects.
70 * Removes a URI from the list of redirects.
  /external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/appengine/
users.py 25 redirect to the request URI, and Google Accounts only redirects back as
54 redirect to the request URI, and Google Accounts only redirects back as
  /external/iptables/extensions/
libxt_REDIRECT.man 8 chains. It redirects the packet to the machine itself by changing the
libxt_TPROXY.man 3 redirects the packet to a local socket without changing the packet header in
  /external/llvm/utils/lit/tests/
shtest-shell.py 30 # CHECK: PASS: shtest-shell :: redirects.txt
  /external/oauth/core/src/main/java/net/oauth/http/
HttpClient.java 30 * Don't follow redirects. If a redirect response is received, simply return
  /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 (); typedefs
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);
  /frameworks/base/media/java/android/media/
MediaHTTPConnection.java 102 // cross-protocol redirects are also controlled by this flag
190 // handle redirects ourselves if we do not allow cross-domain redirect
216 throw new NoRouteToHostException("Too many redirects: " + redirectCount);
238 throw new NoRouteToHostException("Cross-protocol redirects are disallowed");
242 throw new NoRouteToHostException("Cross-domain redirects are disallowed");
252 // remember the current, potentially redirected URL if redirects
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/evalexception/
evalcontext.py 53 A specialized version of the python debugger that redirects stdout
  /packages/apps/Exchange/src/com/android/exchange/
SettingsRedirector.java 29 * An empty {@link Activity} that simply redirects to the proper settings editor for the Email
  /platform_testing/tests/perf/PowerPerfTest/src/com/android/powerperf/tests/
PowerPerfTest.java 35 * redirects the output to result file
  /device/generic/goldfish/
init.goldfish.rc 82 # if it does, it redirects its output to the device

Completed in 588 milliseconds

1 2 3 4 5 6 7 8 91011>>