Home
last modified time | relevance | path

Searched refs:sep (Results 1 – 7 of 7) sorted by relevance

/system/core/adb/
Dadb_auth_client.c56 char *sep; in read_keys() local
73 sep = strpbrk(buf, " \t"); in read_keys()
74 if (sep) in read_keys()
75 *sep = '\0'; in read_keys()
/system/core/toolbox/grep/
Dutil.c443 printline(struct str *line, int sep, regmatch_t *matches, int m) in printline() argument
459 putchar(sep); in printline()
465 putchar(sep); in printline()
470 putchar(sep); in printline()
Dgrep.h151 void printline(struct str *line, int sep, regmatch_t *matches, int m);
/system/core/sh/
Deval.c763 char sep = 0; in evalcommand() local
766 if (sep != 0) in evalcommand()
767 outc(sep, &errout); in evalcommand()
769 sep = ' '; in evalcommand()
772 if (sep != 0) in evalcommand()
773 outc(sep, &errout); in evalcommand()
775 sep = ' '; in evalcommand()
Dexpand.c828 char sep; in varvalue() local
880 sep = ifsval()[0]; in varvalue()
882 sep = ' '; in varvalue()
885 if (*ap && sep) in varvalue()
886 STPUTC(sep, expdest); in varvalue()
Djobs.c1380 cmdlist(union node *np, int sep) in cmdlist() argument
1383 if (!sep) in cmdlist()
1386 if (sep && np->narg.next) in cmdlist()
/system/core/toolbox/
Dps.c16 static char *nexttoksep(char **strp, char *sep) in nexttoksep() argument
18 char *p = strsep(strp,sep); in nexttoksep()