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

1 2

  /external/toybox/toys/pending/
vi.c 44 TT.ls = xzalloc(sizeof(struct linestack));
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.
getfattr.c 75 value = xzalloc(value_len+1);
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 116 new = xzalloc(sizeof(*new));
465 *list = xzalloc(sizeof(struct arg_list));
491 struct archive_handler *tar_hdl = xzalloc(sizeof(struct archive_handler));
534 char *value = NULL, *p, *buf = xzalloc(size+1);
645 file_hdr->name = xzalloc(256);// pathname supported size
679 longlink = xzalloc(file_hdr->size +1);
685 longname = xzalloc(file_hdr->size +1);
crond.c 89 smsg = xzalloc(++used);
265 j = xzalloc(sizeof(JOB));
289 v = xzalloc(sizeof(VAR));
389 cfile = xzalloc(sizeof(CRONFILE));
modprobe.c 119 *head = xzalloc(sizeof(struct arg_list));
157 modentry = xzalloc(sizeof(*modentry));
415 char *opt = xzalloc(1);
519 TT.dirs = xzalloc(sizeof(struct arg_list));
dhcpd.c 672 sltmp = xzalloc(sizeof(struct static_lease_s));
    [all...]
lsof.c 135 struct file_info *fi = xzalloc(sizeof(struct file_info));
298 struct file_info *fi = xzalloc(sizeof(struct file_info));
  /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/fio/oslib/
libmtd_xalloc.h 60 static void *xzalloc(size_t size) function
  /external/syslinux/lzo/
prepcore.c 154 static void *xzalloc(size_t n) function
235 infile = xzalloc(infile_len);
236 out = xzalloc(out_bufsize);
363 test = xzalloc(orig_len);
  /external/toybox/toys/posix/
cut.c 51 temp1_node = xzalloc(sizeof(struct slist));
149 pfield = xzalloc(strlen(buff) + 1);
195 char *pfield = xzalloc(buffln + 1);
257 TT.delim = xzalloc(2);
strings.c 50 string = xzalloc(wlen+1);
xargs.c 121 *(toys.optargs = xzalloc(2*sizeof(char *)))="echo";
162 out = xzalloc((entries+TT.entries+1)*sizeof(char *));
du.c 96 new = xzalloc(sizeof(*new));
od.c 268 TT.bufs[0] = xzalloc(TT.width);
269 TT.bufs[1] = xzalloc(TT.width);
  /external/toybox/lib/
llist.c 123 old = xzalloc(sizeof(struct num_cache)+len);
args.c 202 *list = xzalloc(sizeof(struct arg_list));
263 new = xzalloc(sizeof(struct opts));
391 toys.optargs = xzalloc(sizeof(char *)*saveflags);
dirtree.c 46 dt = xzalloc((len = sizeof(struct dirtree)+len+1)+linklen);
getmountlist.c 173 mt = xzalloc(sizeof(struct mtab_list) + strlen(me->mnt_fsname) +
  /external/mesa3d/src/intel/tools/
decoder.c 168 xzalloc(size_t s) function
178 group = xzalloc(sizeof(*group));
193 e = xzalloc(sizeof(*e));
316 field = xzalloc(sizeof(*field));
342 struct gen_value *value = xzalloc(sizeof(*value));
420 group->fields = xzalloc(size);
450 field->inline_enum.values = xzalloc(size);
457 e->values = xzalloc(size);
530 ctx.spec = xzalloc(sizeof(*ctx.spec));
586 ctx.spec = xzalloc(sizeof(*ctx.spec))
    [all...]

Completed in 443 milliseconds

1 2