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

1 2 3 4 5 6 7 8 9

  /external/elfutils/lib/
xstrdup.c 39 xstrdup (const char *string) function
color.c 214 color_address = xstrdup ("\e[38;5;166;1m");
215 color_bytes = xstrdup ("\e[38;5;141m");
216 color_mnemonic = xstrdup ("\e[38;5;202;1m");
217 color_operand1 = xstrdup ("\e[38;5;220m");
218 color_operand2 = xstrdup ("\e[38;5;48m");
219 color_operand3 = xstrdup ("\e[38;5;112m");
220 color_label = xstrdup ("\e[38;5;21m");
Makefile.am 36 libeu_a_SOURCES = xstrdup.c xstrndup.c xmalloc.c next_prime.c \
  /external/openssh/
xmalloc.h 22 char *xstrdup(const char *);
canohost.c 76 return xstrdup(ntop);
83 return xstrdup(ntop);
98 return xstrdup(ntop);
119 return xstrdup(ntop);
135 return xstrdup(ntop);
137 return xstrdup(name);
278 return xstrdup(ntop);
281 return xstrdup(((struct sockaddr_un *)&addr)->sun_path);
295 return xstrdup("UNKNOWN");
305 return xstrdup("UNKNOWN")
    [all...]
auth-bsdauth.c 87 *name = xstrdup("");
88 *infotxt = xstrdup("");
92 (*prompts)[0] = xstrdup(challenge);
auth-skey.c 63 *name = xstrdup("");
64 *infotxt = xstrdup("");
readpass.c 107 pass = xstrdup(buf);
145 return (flags & RP_ALLOW_EOF) ? NULL : xstrdup("");
154 return xstrdup("");
161 return xstrdup("");
164 ret = xstrdup(buf);
match.c 222 pat = xstrdup(pattern);
246 c = cp = xstrdup(client);
247 s = sp = xstrdup(server);
262 ret = xstrdup(p);
  /toolchain/binutils/binutils-2.25/binutils/
deflex.l 67 yylval.id = xstrdup (yytext);
72 yylval.id = xstrdup (yytext+1);
78 yylval.id = xstrdup (yytext+1);
arlex.l 82 yylval.name = xstrdup (yytext);
  /toolchain/binutils/binutils-2.25/gas/
remap.c 57 o = xstrdup (arg);
62 map->new_prefix = xstrdup (p);
84 return xstrdup (filename);
90 return xstrdup (s);
  /toolchain/binutils/binutils-2.25/libiberty/
xstrdup.c 0 /* xstrdup.c -- Duplicate a string in memory, using xmalloc.
7 @deftypefn Replacement char* xstrdup (const char *@var{s})
31 xstrdup (const char *s) function
  /external/bison/src/
files.c 149 src_extension = xstrdup (language->src_extension);
150 header_extension = xstrdup (language->header_extension);
154 src_extension = xstrdup (ext);
155 header_extension = xstrdup (ext);
170 src_extension = xstrdup (ext);
171 header_extension = xstrdup (ext);
268 all_but_tab_ext = xstrdup (spec_file_prefix);
273 dir_prefix = xstrdup ("");
274 all_but_tab_ext = xstrdup ("y");
280 dir_prefix = xstrdup ("");
    [all...]
uniqstr.c 50 res = xstrdup (str);
  /external/toybox/toys/lsb/
mktemp.c 44 template = strchr(template, '/') ? xstrdup(template)
passwd.c 90 newp = xstrdup(toybuf);
120 else name = xstrdup(pw->pw_name);
154 orig = xstrdup(orig);
175 encrypted = xstrdup(&pass[1]);
178 encrypted = xstrdup(""); //1 = "", 2 = '\0'
  /external/dtc/
fstree.c 61 prop = build_property(xstrdup(de->d_name),
71 newchild = name_node(newchild, xstrdup(de->d_name));
dtc-lexer.l 100 srcpos_set_line(xstrdup(fn.val), atoi(line) - 1);
157 yylval.labelref = xstrdup(yytext);
207 yylval.labelref = xstrdup(yytext+1);
214 yylval.labelref = xstrdup(yytext+2);
232 yylval.propnodename = xstrdup((yytext[0] == '\\') ?
  /external/strace/
xmalloc.c 79 char *xstrdup(const char *str) function
  /external/toybox/toys/net/
rfkill.c 87 if (strstart(&s, "RFKILL_NAME=")) name = xstrdup(s);
88 else if (strstart(&s, "RFKILL_TYPE=")) type = xstrdup(s);
  /external/toybox/toys/android/
getprop.c 46 TT.nv[2*TT.size] = xstrdup((char *)name);
50 TT.nv[1+2*TT.size++] = xstrdup((char *)value);
  /external/toybox/toys/pending/
fsck.c 96 temp->device = xstrdup(f_info->mnt_fsname);
97 temp->mountpt = xstrdup(f_info->mnt_dir);
98 if (strchr(f_info->mnt_type, ',')) temp->type = xstrdup("auto");
99 else temp->type = xstrdup(f_info->mnt_type);
100 temp->opts = xstrdup(f_info->mnt_opts);
207 if(*toys.optargs[j]) args[i++] = xstrdup(toys.optargs[j]);
235 child->dev_name = xstrdup(finfo->device);
373 dlist_add(&TT.devices, xstrdup(*arg));
  /device/google/dragon/audio/hal/
dictionary.c 61 static char * xstrdup(const char * s) function
240 d->val[i] = val ? xstrdup(val) : NULL ;
270 d->key[i] = xstrdup(key);
271 d->val[i] = val ? xstrdup(val) : NULL ;
  /external/bison/lib/
xmalloc.c 119 xstrdup (char const *string) function

Completed in 253 milliseconds

1 2 3 4 5 6 7 8 9