Searched defs:text (Results 1 - 14 of 14) sorted by relevance

/system/core/init/
H A Dparser.h27 char *text; member in struct:parse_state
/system/core/sh/
H A Dexpand.h39 char *text; member in struct:strlist
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 Dnodes.h97 char *text; member in struct:narg
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 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...]
/system/netd/
H A Dlogwrapper.c153 char text[64]; local
154 sprintf(text, "%d", getpid());
155 if (write(fd, text, strlen(text)) < 0) {
/system/vold/
H A Dlogwrapper.c153 char text[64]; local
154 sprintf(text, "%d", getpid());
155 if (write(fd, text, strlen(text)) < 0) {
/system/core/libacc/tests/
H A DruntimeTest.cpp46 const char* text = "void op_int(int a);\n" variable
74 const ACCchar* scriptSource[] = {text};
H A Dmain.cpp134 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;
/system/core/libcutils/
H A Dconfig_utils.c117 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 Dsched_policy.c73 char text[22]; local
74 char *end = text + sizeof(text) - 1;
/system/wlan/ti/wilink_6_1/utils/
H A D802_11Defs.h562 /* Challenge text Information Element */
568 TI_UINT8 text[ DOT11_CHALLENGE_TEXT_MAX ]; member in struct:__anon1957
/system/core/libacc/
H A Dacc.cpp60 // Uncomment to save input to a text file in DEBUG_DUMP_PATTERN
3617 TextInputStream(const char* text, size_t textLength) argument
3618 : pText(text), mTextLength(textLength), mPosition(0) {
3925 char* dptr; // point to macro text during macro playback
6074 int compile(const char* text, size_t textLength) { argument
6101 file = new TextInputStream(text, textLength);
6232 text = 0;
6238 delete text;
6258 char* text; member in struct:acc::ACCscript
6302 delete script->text;
6303 char* text = new char[totalLength + 1]; local
[all...]

Completed in 136 milliseconds