/system/core/sh/ |
H A D | var.h | 45 #define VTEXTFIXED 0x08 /* text is statically allocated */ 46 #define VSTACK 0x10 /* text is allocated on the stack */ 55 char *text; /* name=value */ member in struct:var 67 char *text; /* saved text */ member in struct:localvar 94 #define ifsval() (vifs.text + 4) 96 #define mpathval() (vmpath.text + 9) 97 #define pathval() (vpath.text + 5) 98 #define ps1val() (vps1.text + 4) 99 #define ps2val() (vps2.text [all...] |
H A D | var.c | 80 const char *text; member in struct:varinit 171 if (find_var(ip->text, &vpp, &vp->name_len) != NULL) 175 vp->text = strdup(ip->text); 185 vps1.text = strdup(geteuid() ? "PS1=$ " : "PS1=# "); 292 ckfree(vp->text); 296 vp->text = s; 306 vp->text = s; 326 setvareq(savestr(lp->text), flags); 337 mklocal(lp->text, flag [all...] |
H A D | expand.h | 39 char *text; member in struct:strlist
|
H A D | eval.c | 286 defun(n->narg.text, n->narg.next); 368 setvar(n->nfor.var, sp->text, 0); 403 if (casematch(patp, arglist.list->text)) { 466 redir->nfile.expfname = fn.list->text; 472 fixredir(redir, fn.list->text, 1); 716 char *p = argp->narg.text; 734 char *p = argp->narg.text; 752 TRACE(("evalcommand arg: %s\n", sp->text)); 753 *argv++ = sp->text; 768 out2str(sp->text); [all...] |
H A D | parser.c | 95 char *wordtext; /* text of last word returned by readtoken */ 370 n2->narg.text = wordtext; 384 n2->narg.text = argvars; 414 n2->narg.text = wordtext; 430 ap->narg.text = wordtext; 560 n->narg.text = wordtext; 574 if (! goodname(n->narg.text)) 612 n->narg.text = wordtext; 617 void fixredir(union node *n, const char *text, int err) argument 619 TRACE(("Fix redir %s %d\n", text, er 1552 noexpand(char *text) argument [all...] |
H A D | expand.c | 143 argstr(arg->narg.text, flag); 162 sp->text = p; 626 again: /* jump here after setting a variable with ${var=text} */ 962 sp->text = start; 1002 sp->text = start; 1036 sp->text = start; 1079 p = str->text; 1089 int i = strlen(str->text); 1093 expmeta(expdir, str->text); 1103 rmescapes(str->text); [all...] |
H A D | nodes.h | 97 char *text; member in struct:narg
|
H A D | redir.c | 266 len = strlen(redir->nhere.doc->narg.text); 268 xwrite(pip[1], redir->nhere.doc->narg.text, len); 282 xwrite(pip[1], redir->nhere.doc->narg.text, len);
|
H A D | nodes.c | 167 funcstringsize += strlen(n->narg.text) + 1; 265 new->narg.text = nodesavestr(n->narg.text);
|
/system/core/init/ |
H A D | parser.h | 27 char *text; member in struct:parse_state
|
H A D | parser.c | 101 goto text; 109 text: 110 state->text = s = x;
|
H A D | ueventd_parser.c | 55 args[nargs++] = state.text;
|
/system/core/include/android/ |
H A D | log.h | 44 * - some text 49 * Log message text may be truncated to less than an implementation-specific 94 int __android_log_write(int prio, const char *tag, const char *text);
|
/system/core/libacc/tests/ |
H A D | main.cpp | 134 ACCchar* text = new ACCchar[fileSize + 1]; local 135 size_t bytesRead = fread(text, 1, fileSize, in); 140 text[fileSize] = '\0'; 144 const ACCchar* scriptSource[] = {text}; 146 delete[] text;
|
H A D | runtimeTest.cpp | 46 const char* text = "void op_int(int a);\n" variable 74 const ACCchar* scriptSource[] = {text};
|
/system/core/libcutils/ |
H A D | config_utils.c | 117 char *text; member in struct:__anon81 225 cs->text = s; 236 tok == T_TEXT ? cs->text : ""); 267 node = config_find(root, cs->text); 269 node = _config_create(root, cs->text); 276 node = _config_create(node, cs->text); 280 node->value = cs->text;
|
H A D | sched_policy.c | 73 char text[22]; local 74 char *end = text + sizeof(text) - 1;
|
H A D | memset32.S | 21 .text
|
/system/core/debuggerd/ |
H A D | vfp.S | 1 .text
|
/system/netd/ |
H A D | logwrapper.c | 153 char text[64]; local 154 sprintf(text, "%d", getpid()); 155 if (write(fd, text, strlen(text)) < 0) {
|
/system/vold/ |
H A D | logwrapper.c | 153 char text[64]; local 154 sprintf(text, "%d", getpid()); 155 if (write(fd, text, strlen(text)) < 0) {
|
/system/core/libpixelflinger/ |
H A D | col32cb16blend.S | 19 .text
|
H A D | rotate90CW_4x4_16v6.S | 19 .text
|
/system/core/include/cutils/ |
H A D | log.h | 409 #define android_writeLog(prio, tag, text) \ 410 __android_log_write(prio, tag, text) 438 int __android_log_buf_write(int bufID, int prio, const char *tag, const char *text);
|
/system/core/adb/ |
H A D | services.c | 321 char text[64]; 322 snprintf(text, sizeof text, "/proc/%d/oom_adj", pid); 323 int fd = adb_open(text, O_WRONLY); 328 D("adb: unable to open %s\n", text);
|