Searched defs:redirect (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/tests/CoreTests/android/core/
H A DTestWebServer.java193 * a redirect code with the Location response header set to the value
195 * @param redirect The location to be redirected to
198 public void setRedirect(String redirect, int code) { argument
199 redirectHost = redirect;
201 log("Server will redirect output to "+redirect+" code "+code);
/frameworks/native/cmds/dumpstate/
H A Dutils.c275 /* redirect output to a service control socket */
276 void redirect_to_socket(FILE *redirect, const char *service) { argument
295 fflush(redirect);
296 dup2(fd, fileno(redirect));
300 /* redirect output to a file, optionally gzipping; returns gzip pid (or -1) */
301 pid_t redirect_to_file(FILE *redirect, char *path, int gzip_level) { argument
332 fflush(redirect);
361 dup2(fd, fileno(redirect));

Completed in 1217 milliseconds