/netbsd-src/external/cddl/osnet/dist/tools/ctf/cvt/ |
H A D | tdata.c | 66 if (tdp->t_name) in tdesc_layouthash() 67 name = tdp->t_name; in tdesc_layouthash() 75 name = tdp->t_tdesc->t_name; in tdesc_layouthash() 80 name = tdp->t_fndef->fn_ret->t_name; in tdesc_layouthash() 84 name = tdp->t_ardef->ad_contents->t_name; in tdesc_layouthash() 122 if (tdp1->t_name == NULL) { in tdesc_layoutcmp() 123 if (tdp2->t_name == NULL) in tdesc_layoutcmp() 127 } else if (tdp2->t_name == NULL) in tdesc_layoutcmp() 130 return (strcmp(tdp1->t_name, tdp2->t_name)); in tdesc_layoutcmp() 159 if (tdp->t_name == NULL) in tdesc_namehash() [all …]
|
H A D | st_parse.c | 309 if (!streq(tdp->t_name, ii->ii_name)) { in parse_type() 311 ntdp->t_name = xstrdup(ii->ii_name); in parse_type() 321 if (tdp->t_name && !streq(tdp->t_name, ii->ii_name)) { in parse_type() 323 ntdp->t_name = xstrdup(ii->ii_name); in parse_type() 331 ntdp->t_name = xstrdup(ii->ii_name); in parse_type() 363 if (rtdp->t_name != NULL && in parse_sou() 364 strcmp(rtdp->t_name, idp->ii_name) != 0) { in parse_sou() 368 tdp->t_name = xstrdup(idp->ii_name); in parse_sou() 374 } else if (rtdp->t_name == NULL) { in parse_sou() 375 rtdp->t_name = xstrdup(idp->ii_name); in parse_sou() [all …]
|
H A D | fixup_tdescs.c | 81 if (ml->ml_type->t_type != POINTER || ml->ml_type->t_name || in fix_ptrptr_to_struct() 83 ml->ml_type->t_tdesc->t_name) in fix_ptrptr_to_struct() 87 if (act->t_type != STRUCT || !streq(act->t_name, acts[i])) in fix_ptrptr_to_struct() 133 ml->ml_type->t_name || in fix_ptr_to_struct() 136 !streq(ml->ml_type->t_tdesc->t_name, "vmem")) in fix_ptr_to_struct() 230 if (!streq(cpu->t_name, "cpu") || cpu->t_type != STRUCT) in fix_small_cpu_struct() 260 machcpu->t_name = xstrdup("machcpu"); in fix_small_cpu_struct()
|
H A D | dwarf.c | 592 tdp->t_name = xstrdup(name); in tdesc_intr_common() 648 new->t_name = xstrdup(old->t_name); in tdesc_intr_clone() 897 if (tdp->t_name != NULL) { in die_enum_create() 900 ii->ii_name = xstrdup(tdp->t_name); in die_enum_create() 1108 if (tdp->t_name != NULL) in die_sou_create() 1109 free(tdp->t_name); in die_sou_create() 1110 tdp->t_name = new; in die_sou_create() 1115 if (tdp->t_name != NULL) { in die_sou_create() 1118 ii->ii_name = xstrdup(tdp->t_name); in die_sou_create() 1194 (mt->t_name == NULL || mt->t_name[0] == '\0')) in die_sou_resolve() [all …]
|
H A D | util.c | 253 return (tdp->t_name == NULL ? "(anon)" : tdp->t_name); in tdesc_name()
|
H A D | merge.c | 373 if (!streq(ctdp->t_name, mtdp->t_name)) in equiv_node() 703 oldtgt->t_name, oldid); in remap_node() 725 new->t_name = old->t_name ? xstrdup(old->t_name) : NULL; in conjure_template()
|
H A D | ctf.c | 327 offset = strtab_insert(&b->ctb_strtab, tp->t_name); in write_type() 1069 tdp->t_name = in resurrect_types() 1072 tdp->t_name = NULL; in resurrect_types() 1256 iidesc_t *ii = iidesc_new(tdp->t_name); in resurrect_types()
|
H A D | ctftools.h | 227 char *t_name; member
|
H A D | stabs.c | 88 tdesc_t *new = lookupname(node->t_name); in resolve_fwd_node()
|
/netbsd-src/sys/rump/librump/rumpkern/ |
H A D | threads.c | 125 const char *t_name; member 173 matched = strncmp(thrstore, nothreads[i].t_name, in kthread_create() 174 strlen(nothreads[i].t_name)) == 0; in kthread_create() 177 nothreads[i].t_name) == 0; in kthread_create() 181 "%s not functional\n", nothreads[i].t_name); in kthread_create()
|
/netbsd-src/sys/dev/ic/ |
H A D | cs4231.c | 124 sc->sc_playback.t_name = "playback"; in cs4231_common_attach() 125 sc->sc_capture.t_name = "capture"; in cs4231_common_attach() 269 device_xname(sc->sc_ad1848.sc_dev), t->t_name); in cs4231_transfer_init() 280 device_xname(sc->sc_ad1848.sc_dev), t->t_name, start); in cs4231_transfer_init() 301 device_xname(sc->sc_ad1848.sc_dev), t->t_name, in cs4231_transfer_init()
|
H A D | cs4231var.h | 63 const char *t_name; /* for error/debug messages */ member
|
/netbsd-src/sys/net/npf/ |
H A D | npf_tableset.c | 112 char t_name[NPF_TABLE_MAXNAMELEN]; member 222 if (strcmp(name, t->t_name) == 0) in npf_tableset_getbyname() 259 ot = npf_tableset_getbyname(ots, t->t_name); in npf_tableset_reload() 301 nvlist_add_string(table, "name", t->t_name); in npf_tableset_export() 376 strlcpy(t->t_name, name, NPF_TABLE_MAXNAMELEN); in npf_table_create()
|
/netbsd-src/bin/mt/ |
H A D | mt.c | 240 const char *t_name; /* printing name */ member 274 (void)printf("%s tape drive, residual=%d\n", mt->t_name, bp->mt_resid); in status()
|
/netbsd-src/sys/dev/ebus/ |
H A D | cs4231_ebus.c | 494 DPRINTF(("audiocs: %s dcsr=%s\n", t->t_name, bits)); in cs4231_ebus_dma_intr() 499 printf("audiocs: %s DMA error, resetting\n", t->t_name); in cs4231_ebus_dma_intr() 511 printf("audiocs: %s INT_PEND but !TC\n", t->t_name); in cs4231_ebus_dma_intr()
|
/netbsd-src/usr.bin/ftp/ |
H A D | cmds.c | 130 const char *t_name; member 229 for (p = types; p->t_name; p++) { in settype() 230 fprintf(ttyout, "%s%s", sep, p->t_name); in settype() 251 for (p = types; p->t_name; p++) in set_type() 252 if (strcmp(ttype, p->t_name) == 0) in set_type() 254 if (p->t_name == 0) { in set_type() 264 (void)strlcpy(typename, p->t_name, sizeof(typename)); in set_type() 286 for (p = types; p->t_name; p++) in changetype() 289 if (p->t_name == 0) { in changetype()
|
/netbsd-src/tests/lib/libpthread/ |
H A D | Makefile | 30 TESTS_C+= t_name
|
/netbsd-src/lib/libedit/ |
H A D | terminal.h | 51 const char *t_name; /* the terminal name */ member
|
H A D | tty.h | 452 const char *t_name; member
|
H A D | tty.c | 1203 el->el_tty.t_t[z][m->m_type].t_name); in tty_stty() 1206 strlen(el->el_tty.t_t[z][m->m_type].t_name); in tty_stty()
|
H A D | terminal.c | 829 *term = el->el_terminal.t_name; in terminal_get() 916 el->el_terminal.t_name = term; in terminal_set()
|
/netbsd-src/lib/libc/citrus/modules/ |
H A D | citrus_mapper_std.c | 344 const char *t_name; member 401 if (_bcs_strcasecmp(type, types[id].t_name) == 0) in _citrus_mapper_std_mapper_init()
|
/netbsd-src/external/gpl3/gcc.old/dist/fixincludes/ |
H A D | fixlib.h | 263 run_test ( tCC* t_name, tCC* f_name, tCC* text );
|
/netbsd-src/external/gpl3/gcc/dist/fixincludes/ |
H A D | fixlib.h | 263 run_test ( tCC* t_name, tCC* f_name, tCC* text );
|