Searched refs:text (Results 1 - 25 of 35) sorted by relevance

12

/system/core/sh/
H A Dvar.h45 #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 Dvar.c80 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 Dexpand.h39 char *text; member in struct:strlist
H A Deval.c286 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 Dparser.c95 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 Dexpand.c143 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 Dnodes.h97 char *text; member in struct:narg
H A Dredir.c266 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 Dnodes.c167 funcstringsize += strlen(n->narg.text) + 1;
265 new->narg.text = nodesavestr(n->narg.text);
/system/core/init/
H A Dparser.h27 char *text; member in struct:parse_state
H A Dparser.c103 goto text;
111 text:
112 state->text = s = x;
H A Dueventd_parser.c54 args[nargs++] = state.text;
/system/core/include/android/
H A Dlog.h44 * - 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/libcutils/
H A Dconfig_utils.c117 char *text; member in struct:__anon165
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 Dsched_policy.c97 char text[22]; local
98 char *end = text + sizeof(text) - 1;
/system/core/debuggerd/
H A Dvfp.S1 .text
/system/core/libpixelflinger/
H A Dcol32cb16blend.S18 .text
H A Drotate90CW_4x4_16v6.S19 .text
/system/core/libutils/
H A DRefBase.cpp184 String8 text; local
190 text.append(buf);
191 printRefsLocked(&text, mStrongRefs);
193 text.append(buf);
194 printRefsLocked(&text, mWeakRefs);
202 write(rc, text.string(), text.length());
/system/core/libcutils/arch-arm/
H A Dmemset32.S21 .text
/system/core/adb/
H A Dservices.c239 char text[64];
240 snprintf(text, sizeof text, "/proc/%d/oom_adj", getpid());
241 int fd = adb_open(text, O_WRONLY);
246 D("adb: unable to open %s\n", text);
/system/media/camera/docs/
H A Dhtml.mako22 <style type="text/css">
26 a:link { color: #258aaf; text-decoration: none}
27 a:hover { color: #459aaf; text-decoration: underline }
28 a:visited { color: #154a5f; text-decoration: none}
32 .entries_header { background-color: #dddddd; text-align: center}
95 def wbr(text):
96 new_txt = text
100 for words in text.split(" "):
114 def br(text):
115 return re.sub(r"(\r?\n)(\r?\n)", r"\1<br>\2<br>", text)
[all...]
H A Dmetadata_helpers.py611 def javadoc(text, indent = 4):
613 Format text block as a javadoc comment section
616 text: A multi-line string to format
646 for line in ( line.strip() for line in text.splitlines() ):
/system/core/include/log/
H A Dlog.h526 #define android_writeLog(prio, tag, text) \
527 __android_log_write(prio, tag, text)
555 int __android_log_buf_write(int bufID, int prio, const char *tag, const char *text);
/system/core/libcutils/tests/memset_mips/
H A Dandroid_memset_test.S23 .text

Completed in 348 milliseconds

12