Searched refs:redirect (Results 1 - 25 of 29) sorted by relevance

12

/external/fio/lib/
H A Dlinux-dev-lookup.h4 int blktrace_lookup_device(const char *redirect, char *path, unsigned int maj,
H A Dlinux-dev-lookup.c10 int blktrace_lookup_device(const char *redirect, char *path, unsigned int maj, argument
35 found = blktrace_lookup_device(redirect, full_path,
51 if (redirect) {
52 strcpy(path, redirect);
/external/jetty/src/java/org/eclipse/jetty/webapp/
H A DWebDescriptor.java105 redirect(xmlParser,"web-app_2_2.dtd",dtd22);
106 redirect(xmlParser,"-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN",dtd22);
107 redirect(xmlParser,"web.dtd",dtd23);
108 redirect(xmlParser,"web-app_2_3.dtd",dtd23);
109 redirect(xmlParser,"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN",dtd23);
110 redirect(xmlParser,"XMLSchema.dtd",schemadtd);
111 redirect(xmlParser,"http://www.w3.org/2001/XMLSchema.dtd",schemadtd);
112 redirect(xmlParser,"-//W3C//DTD XMLSCHEMA 200102//EN",schemadtd);
113 redirect(xmlParser,"jsp_2_0.xsd",jsp20xsd);
114 redirect(xmlParse
[all...]
H A DDescriptor.java44 protected void redirect(XmlParser parser, String resource, URL source) method in class:Descriptor
H A DTagLibConfiguration.java382 redirect(parser, "web-jsptaglib_1_1.dtd",taglib11);
383 redirect(parser, "web-jsptaglibrary_1_1.dtd",taglib11);
387 redirect(parser, "web-jsptaglib_1_2.dtd",taglib12);
388 redirect(parser, "web-jsptaglibrary_1_2.dtd",taglib12);
392 redirect(parser, "web-jsptaglib_2_0.xsd",taglib20);
393 redirect(parser, "web-jsptaglibrary_2_0.xsd",taglib20);
397 redirect(parser, "web-jsptaglib_2_1.xsd",taglib21);
398 redirect(parser, "web-jsptaglibrary_2_1.xsd",taglib21);
/external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/appengine/
H A Dusers.py24 We will redirect to a login page if the user is not logged in. We always
25 redirect to the request URI, and Google Accounts only redirects back as
35 return self.redirect(users.create_login_url(self.request.url))
53 We will redirect to a login page if the user is not logged in. We always
54 redirect to the request URI, and Google Accounts only redirects back as
64 return self.redirect(users.create_login_url(self.request.url))
/external/chromium-trace/trace-viewer/third_party/Paste/tests/test_exceptions/
H A Dtest_httpexceptions.py62 """ check that redirect returns the correct, expected results """
83 redirect = HTTPFound("/some/path")
84 assert isinstance(redirect,HTTPException)
85 assert isinstance(redirect,HTTPRedirection)
86 assert not isinstance(redirect,HTTPError)
/external/emma/core/java12/com/vladium/util/
H A DProperty.java509 final String redirect = (String) m_systemRedirects.get (key);
511 if (redirect != null)
513 result = getSystemProperty (redirect, null);
/external/okhttp/mockwebserver/src/test/java/com/squareup/okhttp/mockwebserver/
H A DMockWebServerTest.java91 @Test public void redirect() throws Exception { method in class:MockWebServerTest
105 RecordedRequest redirect = server.takeRequest();
106 assertEquals("GET /new-path HTTP/1.1", redirect.getRequestLine());
/external/llvm/lib/Support/Windows/
H A DProgram.inc292 MakeErrMsg(ErrMsg, "can't redirect stdin");
298 MakeErrMsg(ErrMsg, "can't redirect stdout");
302 // If stdout and stderr should go to the same place, redirect stderr
313 // Just redirect stderr
318 MakeErrMsg(ErrMsg, "can't redirect stderr");
/external/chromium-trace/trace-viewer/third_party/Paste/paste/auth/
H A Dopen_id.py149 Call the application, and redirect if the app returns a 401 response
215 # Now ask the library for the URL to redirect the user to
222 # Send the redirect response
223 return self.redirect(request, redirect_url)
228 """Handle the redirect from the OpenID server.
267 fmt = ("If you had supplied a login redirect path, you would have "
272 # @@: This stuff doesn't make sense to me; why not a remote redirect?
296 def redirect(self, request, redirect_url): member in class:AuthOpenIDHandler
297 """Send a redirect response to the given URL to the browser."""
/external/llvm/lib/Support/Unix/
H A DProgram.inc220 // Just redirect stderr
224 // If stdout and stderr should go to the same place, redirect stderr
227 return !MakeErrMsg(ErrMsg, "Can't redirect stderr to stdout", Err);
276 // If stdout and stderr should go to the same place, redirect stderr
279 MakeErrMsg(ErrMsg, "Can't redirect stderr to stdout");
283 // Just redirect stderr
/external/mockwebserver/src/test/java/com/google/mockwebserver/
H A DMockWebServerTest.java132 RecordedRequest redirect = server.takeRequest();
133 assertEquals("GET /new-path HTTP/1.1", redirect.getRequestLine());
/external/chromium-trace/trace-viewer/third_party/webapp2/
H A Dwebapp2.py600 def redirect(self, uri, permanent=False, abort=False, code=None, member in class:RequestHandler
602 """Issues an HTTP redirect to the given relative URI.
604 The arguments are described in :func:`redirect`.
606 return redirect(uri, permanent=permanent, abort=abort, code=code,
612 """Convenience method mixing :meth:`redirect` and :meth:`uri_for`.
614 The arguments are described in :func:`redirect` and :func:`uri_for`.
617 return self.redirect(uri, permanent=_permanent, abort=_abort,
662 """Performs a redirect.
668 - **_code**: The redirect status code. Default is 301 (permanent
669 redirect)
1736 def redirect(uri, permanent=False, abort=False, code=None, body=None, function
[all...]
/external/chromium-trace/trace-viewer/third_party/webapp2/tests/
H A Dmisc_test.py110 rsp = webapp2.redirect('http://www.google.com/', code=301, body='Weee')
H A Dhandler_test.py57 self.redirect('/somewhere', abort=True)
138 webapp2.Route('/redirect-me', webapp2.RedirectHandler, defaults={'_uri': '/broken'}),
139 webapp2.Route('/redirect-me2', webapp2.RedirectHandler, defaults={'_uri': get_redirect_url}),
140 webapp2.Route('/redirect-me3', webapp2.RedirectHandler, defaults={'_uri': '/broken', '_permanent': False}),
141 webapp2.Route('/redirect-me4', webapp2.RedirectHandler, defaults={'_uri': get_redirect_url, '_permanent': False}),
142 webapp2.Route('/redirect-me5', RedirectToHandler),
143 webapp2.Route('/redirect-me6', RedirectAbortHandler),
301 req = webapp2.Request.blank('/redirect-me')
308 req = webapp2.Request.blank('/redirect-me2')
315 req = webapp2.Request.blank('/redirect
[all...]
/external/apache-http/src/org/apache/http/impl/client/
H A DDefaultRequestDirector.java141 /** The redirect handler. */
942 HttpGet redirect = new HttpGet(uri);
945 redirect.setHeaders(orig.getAllHeaders());
947 RequestWrapper wrapper = new RequestWrapper(redirect);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
H A DDefaultRequestDirector.java138 /** The redirect handler. */
973 HttpRedirect redirect = new HttpRedirect(request.getMethod(), uri);
975 redirect.setHeaders(orig.getAllHeaders());
977 RequestWrapper wrapper = new RequestWrapper(redirect);
/external/okhttp/okhttp-apache/src/test/java/com/squareup/okhttp/apache/
H A DOkApacheClientTest.java55 @Test public void redirect() throws Exception { method in class:OkApacheClientTest
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DHttpOverSpdyTest.java239 @Test public void redirect() throws Exception { method in class:HttpOverSpdyTest
/external/libpcap/
H A Dscanner.l367 icmp-redirect { yylval.i = 5; return NUM; }
/external/iproute2/doc/
H A Dip-cref.tex1377 \item \verb|redirect| --- the route was installed due to an ICMP redirect.
1603 cache <src-direct,redirect> mtu 1500 rtt 300 iif eth0
1636 \item \verb|redirect| --- packets going via this route will
1637 trigger an ICMP redirect.
1859 cache <src-direct,redirect> mtu 1500 rtt 300 iif eth0
1866 Note the \verb|redirect| flag on it.
1918 better path to the destination and sent us an ICMP redirect message.
/external/libvncserver/x11vnc/misc/enhanced_tightvnc_viewer/bin/util/
H A Dssvnc.tcl316 - Other VNC Server (redirect to 3rd party VNC Server)
859 on the 'localhost' address and redirect TCP connections to the remote
2333 different type, select "Xdummy", "Xvnc", "Xvnc.redirect".
2341 normal way. Use Xvnc.redirect if you want x11vnc to find and/or
2422 immediately redirect to some other (3rd party, e.g. Xvnc or vnc.so)
3159 set type "Xvnc.redirect"
3169 set cmd "$cmd -redirect $ts_othervnc"
3183 } elseif {$type == "Xvnc.redirect"} {
3184 set cmd "$cmd -display WAIT:cmd=FINDCREATEDISPLAY-Xvnc.redirect";
12440 immediately redirect t
[all...]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DCallTest.java1250 @Test public void redirect() throws Exception { method in class:CallTest
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/bench/
H A Dwikipedia.css932 .redirect-in-category,
3854 /* (Soft) redirect styling (bug:26544) */

Completed in 2797 milliseconds

12