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

1 2

  /external/toybox/toys/posix/
strings.c 36 char *string = xzalloc(wlen + 1);
cut.c 49 temp1_node = xzalloc(sizeof(struct slist));
147 pfield = xzalloc(strlen(buff) + 1);
193 char *pfield = xzalloc(buffln + 1);
255 TT.delim = xzalloc(2);
xargs.c 118 *(toys.optargs = xzalloc(2*sizeof(char *)))="echo";
159 out = xzalloc((entries+TT.entries+1)*sizeof(char *));
du.c 94 new = xzalloc(sizeof(*new));
  /external/bison/lib/
xalloc.h 56 void *xzalloc (size_t s)
84 /* extern t *XZALLOC (typename t); */
85 #define XZALLOC(t) ((t *) xzalloc (sizeof (t)))
91 ((t *) (sizeof (t) == 1 ? xzalloc (n) : xcalloc (n, sizeof (t))))
xmalloc.c 84 xzalloc (size_t s) function
  /external/dhcpcd/
common.h 81 void *xzalloc(size_t);
ipv4ll.c 50 dhcp = xzalloc(sizeof(*dhcp));
dhcp.c 580 rt->next = xzalloc(sizeof(*rt));
583 routes = rt = xzalloc(sizeof(*routes));
834 route->next = xzalloc(sizeof(*route));
837 routes = route = xzalloc(sizeof(*route));
922 dhcp = xzalloc(sizeof (*dhcp));
    [all...]
common.c 267 xzalloc(size_t s) function
if-linux.c 502 nlm = xzalloc(sizeof(*nlm));
544 nlm = xzalloc(sizeof(*nlm));
  /external/toybox/toys/pending/
fsck.c 92 temp->next = xzalloc(sizeof(struct f_sys_info));
94 } else filesys_info = temp = xzalloc(sizeof(struct f_sys_info));
126 TT.arr_flag = xzalloc(n + 1);
127 TT.arr_type = xzalloc((n + 1) * sizeof(char *));
202 args = xzalloc((toys.optc + 2 + 1 + 1) * sizeof(char*)); //+1, for NULL, +1 if -C
234 child = xzalloc(sizeof(struct child_list)); //Parent, add to child list.
syslogd.c 166 file = xzalloc(sizeof(struct logfile));
178 file = xzalloc(sizeof(struct logfile));
210 file = xzalloc(sizeof(struct logfile));
227 file = xzalloc(sizeof(struct logfile));
420 tsd = xzalloc(sizeof(struct unsocks));
428 tsd = xzalloc(sizeof(struct unsocks));
tftpd.c 96 spkt = xzalloc(blksize + 4);
97 rpkt = xzalloc(blksize + 4);
diff.c 120 struct candidate *c = xzalloc(sizeof(struct candidate));
266 v[i] = xzalloc(size * sizeof(struct v_vector));
267 TT.offset[i] = xzalloc(size * sizeof(int));
308 p_vector = xzalloc((file[0].len + 2) * sizeof(int));
319 kcand = xzalloc(size * sizeof(struct candidate*));
337 J = xzalloc((file[0].len + 2) * sizeof(int));
526 d = xzalloc(size *sizeof(struct diff));
tar.c 115 new = xzalloc(sizeof(*new));
456 *list = xzalloc(sizeof(struct arg_list));
482 struct archive_handler *tar_hdl = xzalloc(sizeof(struct archive_handler));
524 char *value = NULL, *p, *buf = xzalloc(size+1);
636 file_hdr->name = xzalloc(256);// pathname supported size
670 longlink = xzalloc(file_hdr->size +1);
676 longname = xzalloc(file_hdr->size +1);
crond.c 88 smsg = xzalloc(++used);
264 j = xzalloc(sizeof(JOB));
288 v = xzalloc(sizeof(VAR));
388 cfile = xzalloc(sizeof(CRONFILE));
sh.c 255 if (!*cmd) *cmd = xzalloc(sizeof(struct command)+8*sizeof(char *));
modprobe.c 124 *head = xzalloc(sizeof(struct arg_list));
162 modentry = xzalloc(sizeof(*modentry));
408 char *opt = xzalloc(1);
tr.c 130 char *set = xzalloc(size*sizeof(char));
dhcpd.c 518 sltmp = xzalloc(sizeof(struct static_lease_s));
802 *list = xzalloc(len+1);
964 dls = xzalloc(sizeof(dyn_lease));
972 listdls = xzalloc(sizeof(struct arg_list));
1052 dls = xzalloc(sizeof(dyn_lease));
    [all...]
  /external/toybox/lib/
args.c 200 *list = xzalloc(sizeof(struct arg_list));
261 new = xzalloc(sizeof(struct opts));
389 toys.optargs = xzalloc(sizeof(char *)*saveflags);
dirtree.c 45 dt = xzalloc((len = sizeof(struct dirtree)+len+1)+linklen);
getmountlist.c 151 mt = xzalloc(sizeof(struct mtab_list) + strlen(me->mnt_fsname) +
lib.h 90 void *xzalloc(size_t size);

Completed in 333 milliseconds

1 2