/src/sys/arch/macppc/dev/ |
ofw_i2c_machdep.c | 112 char *clist; local in function:of_i2c_enumerate_devices 133 clist = name; 136 clist = kmem_tmpbuf_alloc(clist_size, 138 if (OF_getprop(node, "compatible", clist, clist_size) 140 kmem_tmpbuf_free(clist, clist_size, compat_buf); 146 clist, clist_size, addr, 149 if (clist != name) { 150 kmem_tmpbuf_free(clist, clist_size, compat_buf);
|
/src/sys/dev/fdt/ |
fdt_spi.c | 120 char *clist; local in function:fdtbus_spi_enumerate_devices 145 clist = kmem_tmpbuf_alloc(clist_size, 147 if (OF_getprop(node, "compatible", clist, clist_size) < 149 kmem_tmpbuf_free(clist, clist_size, compat_buf); 155 args->sa->sa_clist = clist; 161 kmem_tmpbuf_free(clist, clist_size, compat_buf);
|
/src/usr.bin/sort/ |
init.c | 82 struct coldesc *clist = NULL; variable in typeref:struct:coldesc * 86 * clist (list of columns which correspond to one or more icol or tcol) 92 * keep clist in order--inserts a column in a sorted array 101 p = realloc(clist, (ncols + 2) * sizeof(*clist)); 104 clist = p; 105 memset(&clist[ncols], 0, sizeof(clist[ncols])); 108 if (field->icol.num <= clist[i].num) 110 if (field->icol.num != clist[i].num) [all...] |
/src/bin/dd/ |
args.c | 358 } clist[] = { variable in typeref:typename:const struct conv[] 388 if (!(cp = bsearch(&tmp, clist, 389 __arraycount(clist), sizeof(*clist), c_conv))) {
|
/src/usr.sbin/altq/libaltq/ |
qop_cdnr.c | 406 struct classinfo *clinfo, *clist[2]; local in function:qop_cdnr_add_element 414 clist[0] = clinfo; 415 clist[1] = NULL; 433 clist[0] = NULL; 441 if ((error = qop_add_cdnr(&clinfo, cdnr_name, ifinfo, clist, 462 struct classinfo *clinfo, *clist[3]; local in function:qop_cdnr_add_tbmeter 468 clist[n] = clhandle2clinfo(ifinfo, in_action->tca_handle); 469 if (clist[n] == NULL) 474 clist[n] = clhandle2clinfo(ifinfo, out_action->tca_handle); 475 if (clist[n] == NULL 524 struct classinfo *clinfo, *clist[4]; local in function:qop_cdnr_add_trtcm 598 struct classinfo *clinfo, *clist[4]; local in function:qop_cdnr_add_tswtcm [all...] |
/src/sys/dev/acpi/ |
acpi_i2c.c | 128 char *clist; local in function:acpi_enter_i2c_device 146 clist = acpi_pack_compat_list(ad, &clist_size); 147 if (clist == NULL) { 159 prop_dictionary_set_data(dev, "compatible", clist, clist_size); 160 kmem_free(clist, clist_size);
|
/src/sys/sys/ |
tty.h | 84 struct clist { struct 111 struct clist t_rawq; /* Device raw input queue. */ 115 struct clist t_canq; /* Device canonical queue. */ 119 struct clist t_outq; /* Device output queue. */ 265 int b_to_q(const u_char *, int, struct clist *); 266 void catq(struct clist *, struct clist *); 268 int getc(struct clist *); 269 void ndflush(struct clist *, int); 270 int ndqb(struct clist *, int) [all...] |
/src/sys/fs/nfs/client/ |
nfs_clstate.c | 3146 int clist, gotseq_ok, i, j, k, op, rcalls; local in function:nfscl_docb 3459 clist = fxdr_unsigned(int, *tl); 3460 for (j = 0; j < clist; j++) {
|