HomeSort by relevance Sort by last modified time
    Searched refs:redir (Results 1 - 25 of 25) sorted by null

  /system/core/sh/
redir.c 1 /* $NetBSD: redir.c,v 1.29 2004/07/08 03:57:33 christos Exp $ */
38 static char sccsid[] = "@(#)redir.c 8.2 (Berkeley) 5/4/95";
40 __RCSID("$NetBSD: redir.c,v 1.29 2004/07/08 03:57:33 christos Exp $");
63 #include "redir.h"
107 redirect(union node *redir, int flags)
129 for (n = redir ; n ; n = n->nfile.next) {
175 openredirect(union node *redir, char memory[10], int flags)
177 int fd = redir->nfile.fd;
189 switch (redir->nfile.type) {
191 fname = redir->nfile.expfname
    [all...]
Android.mk 23 redir.c \
eval.c 72 #include "redir.h"
454 union node *redir; local
456 for (redir = n ; redir ; redir = redir->nfile.next) {
459 switch (redir->type) {
465 expandarg(redir->nfile.fname, &fn, EXP_TILDE | EXP_REDIR);
466 redir->nfile.expfname = fn.list->text;
470 if (redir->ndup.vname)
    [all...]
parser.c 51 #include "redir.h" /* defines copyfd() */
293 union node *redir, **rpp; local
297 redir = NULL;
299 rpp = &redir;
482 if (!redir)
491 n1 = simplecmd(rpp, redir);
506 if (redir) {
513 n1->nredir.redirect = redir;
529 simplecmd(union node **rpp, union node *redir)
537 /* rpp to be the address of the local redir variable. *
    [all...]
jobs.c 70 #include "redir.h"
1341 p = ">"; i = 1; goto redir;
1343 p = ">|"; i = 1; goto redir;
1345 p = ">>"; i = 1; goto redir;
1347 p = ">&"; i = 1; goto redir;
1349 p = "<"; i = 0; goto redir;
1351 p = "<&"; i = 0; goto redir;
1353 p = "<>"; i = 0; goto redir;
1354 redir:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
WidgetRedirector.py 92 def __init__(self, redir, operation):
93 self.redir = redir
95 self.tk = redir.tk
96 self.orig = redir.orig
101 return "OriginalCommand(%r, %r)" % (self.redir, self.operation)
113 redir = WidgetRedirector(text)
118 previous_tcl_fcn = redir.register("insert", my_insert)
120 redir.unregister("insert") # runs after first 'close window'
121 redir.close(
    [all...]
Percolator.py 9 self.redir = WidgetRedirector(text)
11 self.bottom.insert = self.redir.register("insert", self.insert)
12 self.bottom.delete = self.redir.register("delete", self.delete)
20 self.redir.close(); self.redir = None
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
WidgetRedirector.py 92 def __init__(self, redir, operation):
93 self.redir = redir
95 self.tk = redir.tk
96 self.orig = redir.orig
101 return "OriginalCommand(%r, %r)" % (self.redir, self.operation)
113 redir = WidgetRedirector(text)
118 previous_tcl_fcn = redir.register("insert", my_insert)
120 redir.unregister("insert") # runs after first 'close window'
121 redir.close(
    [all...]
Percolator.py 9 self.redir = WidgetRedirector(text)
11 self.bottom.insert = self.redir.register("insert", self.insert)
12 self.bottom.delete = self.redir.register("delete", self.delete)
20 self.redir.close(); self.redir = None
  /external/chromium_org/third_party/libxml/src/include/libxml/
nanohttp.h 43 char **redir,
52 char **redir);
  /external/libxml2/include/libxml/
nanohttp.h 43 char **redir,
52 char **redir);
  /external/iproute2/tc/
m_mirred.c 2 * m_egress.c ingress/egress packet mirror/redir actions module
70 int ok = 0, iok = 0, mirror=0,redir=0; local
106 if (redir) {
107 fprintf(stderr, "Cant have both mirror and redir\n");
113 } else if (!redir && matches(*argv, "redirect") == 0) {
114 redir=1;
116 fprintf(stderr, "Cant have both mirror and redir\n");
122 } else if ((redir || mirror) && matches(*argv, "dev") == 0) {
  /external/chromium_org/chrome_frame/test/
test_server_test.cc 147 test_server::RedirectResponse redir(
148 "/redir",
151 server.AddResponse(&redir);
174 base::StringPrintf("http://%s:1337/redir", server.host().c_str()),
188 EXPECT_EQ(redir.accessed(), 1);
  /external/qemu/android/
console.c 89 } RedirRec, *Redir;
115 Redir redirs;
145 Redir redir; local
152 Redir new_redirs = realloc( global->redirs, new_max*sizeof(global->redirs[0]) );
160 redir = &global->redirs[ global->num_redirs++ ];
162 redir->host_port = host_port;
163 redir->host_udp = host_udp;
164 redir->guest_ip = guest_ip;
165 redir->guest_port = guest_port
179 Redir redir = &global->redirs[nn]; local
846 Redir redir = &global->redirs[nn]; local
903 Redir redir = &global->redirs[nn]; local
917 Redir redir; local
973 Redir redir; local
    [all...]
  /external/chromium_org/chrome/tools/
history-viz.py 220 redir = (trans & 0xC0000000) != 0
229 if redir:
  /external/mksh/src/
syn.c 190 if (tpeek(cf) != REDIR)
285 case REDIR:
294 case REDIR:
797 /* Lexical tokens (0[EOF], LWORD and REDIR handled specially) */
833 char redir[6]; local
859 case REDIR:
860 s = snptreef(redir, sizeof(redir), "%R", yylval.iop);
871 redir[0] = c;
872 redir[1] = '\0'
    [all...]
  /external/chromium_org/third_party/libxml/src/
nanohttp.c 1229 * @redir: if available the redirected URL will be returned
1239 xmlNanoHTTPOpenRedir(const char *URL, char **contentType, char **redir) {
1241 if (redir != NULL) *redir = NULL;
1242 return(xmlNanoHTTPMethodRedir(URL, NULL, NULL, contentType, redir, NULL,0));
    [all...]
xmlIO.c 3686 const char *redir; local
    [all...]
testapi.c 12364 char ** redir; \/* if available the redirected URL will be returned *\/ local
    [all...]
  /external/libxml2/
nanohttp.c 1227 * @redir: if available the redirected URL will be returned
1237 xmlNanoHTTPOpenRedir(const char *URL, char **contentType, char **redir) {
1239 if (redir != NULL) *redir = NULL;
1240 return(xmlNanoHTTPMethodRedir(URL, NULL, NULL, contentType, redir, NULL,0));
    [all...]
xmlIO.c 3812 const char *redir; local
    [all...]
  /ndk/sources/host-tools/make-3.81/
configure.bat 39 redir -o junk.$$$ -eo make -n -f NUL
40 rem REDIR will return 1 if it cannot run Make.
  /hardware/ril/libril/
ril.cpp     [all...]
  /external/bison/djgpp/
config.bat 166 redir -e /dev/null update %XSRC%/configure.org ./configure
467 redir -e /dev/null rm %XSRC%/po/*.gmo
468 redir -e /dev/null rm %XSRC%/po/bison.pot
469 redir -e /dev/null rm %XSRC%/po/cat-id-tbl.c
470 redir -e /dev/null rm %XSRC%/po/stamp-cat-id
  /hardware/ril/include/telephony/
ril.h 952 RIL_CDMA_RedirectingNumberInfoRecord redir; member in union:__anon33909::__anon33910
    [all...]

Completed in 1757 milliseconds