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

1 2 3 4 5 6 7 8

  /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 \
  /toolchain/binutils/binutils-2.27/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.27/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
makefile.vms 14 xmemdup.obj,xstrdup.obj,xatexit.obj,choose-temp.obj,fnmatch.obj,\
  /external/strace/
xmalloc.h 69 * this return value and simplify the idiom "str ? xstrdup(str) : NULL".
71 char *xstrdup(const char *str) ATTRIBUTE_MALLOC;
xmalloc.c 115 xstrdup(const char *str) function
  /toolchain/binutils/binutils-2.27/gas/
remap.c 57 o = xstrdup (arg);
62 map->new_prefix = xstrdup (p);
84 return xstrdup (filename);
stabs.c 112 seg->name = xstrdup (stabstr_secname);
328 cached_secname = xstrdup (stab_secname);
565 last_file = xstrdup (file);
601 prev_file = xstrdup (file);
617 prev_file = xstrdup (file);
677 current_function_label = xstrdup (startlabname);
  /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'
  /system/core/fastboot/
util.cpp 54 char* xstrdup(const char* s) { function
  /external/dtc/
fstree.c 61 prop = build_property(xstrdup(de->d_name),
71 newchild = name_node(newchild, xstrdup(de->d_name));
dtc-lexer.l 101 srcpos_set_line(xstrdup(fn.val), atoi(line) - 1);
158 yylval.labelref = xstrdup(yytext);
208 yylval.labelref = xstrdup(yytext+1);
215 yylval.labelref = xstrdup(yytext+2);
233 yylval.propnodename = xstrdup((yytext[0] == '\\') ?
util.h 69 extern char *xstrdup(const char *s);
  /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 47 TT.nv[2*TT.size] = xstrdup((char *)name);
51 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));
groupadd.c 80 entry = xstrdup("");
  /external/fio/oslib/
libmtd_xalloc.h 75 static char *xstrdup(const char *s) function
  /toolchain/binutils/binutils-2.27/ld/
ldlex.l 144 <DEFSYMEXP>{FILENAMECHAR1}{SYMBOLCHARN}* { yylval.name = xstrdup (yytext); return NAME; }
203 yylval.bigint.str = xstrdup (yytext + 2);
374 yylval.name = xstrdup (yytext);
380 yylval.name = xstrdup (yytext);
385 yylval.name = xstrdup (yytext);
389 yylval.name = xstrdup (yytext + 2);
393 yylval.name = xstrdup (yytext);
397 yylval.name = xstrdup (yytext + 2);
412 yylval.name = xstrdup (yytext);
420 yylval.name = xstrdup (yytext + 1)
    [all...]
  /external/toybox/toys/posix/
chgrp.c 85 own = xstrdup(*toys.optargs);
logger.c 62 if (!TT.ident) TT.ident = xstrdup(xgetpwuid(geteuid())->pw_name);

Completed in 253 milliseconds

1 2 3 4 5 6 7 8