| /freebsd-9-stable/sys/dev/advansys/ |
| D | advansys.c | 89 struct adv_ccb_info *cinfo); 93 struct adv_ccb_info *cinfo); 101 struct adv_ccb_info *cinfo; in adv_get_ccb_info() local 105 if ((cinfo = SLIST_FIRST(&adv->free_ccb_infos)) != NULL) { in adv_get_ccb_info() 108 cinfo = adv_alloc_ccb_info(adv); in adv_get_ccb_info() 111 return (cinfo); in adv_get_ccb_info() 115 adv_free_ccb_info(struct adv_softc *adv, struct adv_ccb_info *cinfo) in adv_free_ccb_info() argument 120 cinfo->state = ACCB_FREE; in adv_free_ccb_info() 121 SLIST_INSERT_HEAD(&adv->free_ccb_infos, cinfo, links); in adv_free_ccb_info() 158 struct adv_ccb_info *cinfo; in adv_clear_state_really() local [all …]
|
| D | advlib.c | 977 struct adv_ccb_info *cinfo; in adv_isr_chip_halted() local 1020 cinfo = &adv->ccb_infos[cinfo_index]; in adv_isr_chip_halted() 1034 callout_reset(&cinfo->timer, 5 * hz, adv_timeout, ccb); in adv_isr_chip_halted() 2030 struct adv_ccb_info *cinfo; in adv_abort_ccb() local 2040 cinfo = (struct adv_ccb_info *) in adv_abort_ccb() 2042 cinfo->state |= ACCB_ABORT_QUEUED; in adv_abort_ccb()
|
| /freebsd-9-stable/sys/dev/ida/ |
| D | ida.c | 271 struct ida_controller_info cinfo; in ida_attach() local 276 error = ida_command(ida, CMD_GET_CTRL_INFO, &cinfo, sizeof(cinfo), in ida_attach() 284 cinfo.num_drvs, cinfo.firm_rev[0], cinfo.firm_rev[1], in ida_attach() 285 cinfo.firm_rev[2], cinfo.firm_rev[3]); in ida_attach() 304 for (i = 0; i < cinfo.num_drvs; i++) in ida_attach()
|
| /freebsd-9-stable/sys/dev/tws/ |
| D | tws_user.c | 342 cpkt.working_srl = sc->cinfo.working_srl; in tws_ioctl_aen() 343 cpkt.working_branch = sc->cinfo.working_branch; in tws_ioctl_aen() 344 cpkt.working_build = sc->cinfo.working_build; in tws_ioctl_aen() 351 cpkt.fw_on_ctlr_srl = sc->cinfo.fw_on_ctlr_srl; in tws_ioctl_aen() 352 cpkt.fw_on_ctlr_branch = sc->cinfo.fw_on_ctlr_branch; in tws_ioctl_aen() 353 cpkt.fw_on_ctlr_build = sc->cinfo.fw_on_ctlr_build; in tws_ioctl_aen()
|
| D | tws_hdm.c | 192 initc->fw_srl = sc->cinfo.working_srl = TWS_CURRENT_FW_SRL; in tws_init_connect() 194 initc->fw_branch = sc->cinfo.working_branch = 0; in tws_init_connect() 195 initc->fw_build = sc->cinfo.working_build = 0; in tws_init_connect() 200 sc->cinfo.fw_on_ctlr_srl = initc->fw_srl; in tws_init_connect() 201 sc->cinfo.fw_on_ctlr_branch = initc->fw_branch; in tws_init_connect() 202 sc->cinfo.fw_on_ctlr_build = initc->fw_build; in tws_init_connect()
|
| D | tws.h | 254 struct tws_init_connect_info cinfo; /* compatibility info */ member
|
| /freebsd-9-stable/lib/libc/include/ |
| D | nscache.h | 160 #define NS_CACHE_CB(cinfo) {NSSRC_CACHE, __nss_cache_handler, (void *)(cinfo) }, argument
|
| /freebsd-9-stable/sys/dev/aic7xxx/aicasm/ |
| D | aicasm_gram.y | 432 if (symbol->info.cinfo->value > 4) { 437 $$ = (0x1 << symbol->info.cinfo->value); 689 $$.value = symbol->info.cinfo->value; 717 $2->info.cinfo->value = $3.value; 733 $2->info.cinfo->value = download_constant_count++; 868 if (($3->info.cinfo->value + 1) > (unsigned)$1->info.rinfo->size) { 874 $$.offset = $3->info.cinfo->value; 1483 symbol->info.cinfo = in initialize_symbol() 1485 if (symbol->info.cinfo == NULL) { in initialize_symbol() 1489 memset(symbol->info.cinfo, 0, in initialize_symbol()
|
| D | aicasm_symbol.c | 116 if (symbol->info.cinfo != NULL) in symbol_delete() 117 free(symbol->info.cinfo); in symbol_delete() 646 curnode->symbol->info.cinfo->value); in symtable_dump() 659 curnode->symbol->info.cinfo->value); in symtable_dump()
|
| D | aicasm_symbol.h | 130 struct const_info *cinfo; member
|
| /freebsd-9-stable/contrib/binutils/bfd/ |
| D | elflink.c | 6277 struct collect_gnu_hash_codes cinfo; in bfd_elf_size_dynsym_hash_dynstr() local 6281 memset (&cinfo, 0, sizeof (cinfo)); in bfd_elf_size_dynsym_hash_dynstr() 6287 cinfo.hashcodes = bfd_malloc (amt); in bfd_elf_size_dynsym_hash_dynstr() 6288 if (cinfo.hashcodes == NULL) in bfd_elf_size_dynsym_hash_dynstr() 6291 cinfo.hashval = cinfo.hashcodes + dynsymcount; in bfd_elf_size_dynsym_hash_dynstr() 6292 cinfo.min_dynindx = -1; in bfd_elf_size_dynsym_hash_dynstr() 6293 cinfo.output_bfd = output_bfd; in bfd_elf_size_dynsym_hash_dynstr() 6294 cinfo.bed = bed; in bfd_elf_size_dynsym_hash_dynstr() 6298 elf_collect_gnu_hash_codes, &cinfo); in bfd_elf_size_dynsym_hash_dynstr() 6301 = compute_bucket_count (info, cinfo.hashcodes, cinfo.nsyms, 1); in bfd_elf_size_dynsym_hash_dynstr() [all …]
|
| D | ChangeLog-2006 | 1412 * elflink.c (bfd_elf_size_dynsym_hash_dynstr): Fix cinfo.shift2 value.
|
| /freebsd-9-stable/contrib/ntp/ntpd/ |
| D | ntp_crypto.c | 158 struct cert_info *cinfo = NULL; /* certificate info/value cache */ variable 1193 for (cp = cinfo; cp != NULL; cp = cp->link) { in crypto_xmit() 1868 for (cp = cinfo; cp != NULL; cp = cp->link) { in crypto_update() 3298 zp = &cinfo; in cert_install() 3299 for (xp = cinfo; xp != NULL; xp = xp->link) { in cert_install() 3316 cp->link = cinfo; in cert_install() 3317 cinfo = cp; in cert_install() 3986 cinfo = crypto_cert(filename); in crypto_setup() 3987 if (cinfo == NULL) { in crypto_setup() 3993 cert_host = cinfo; in crypto_setup() [all …]
|
| D | ntp_control.c | 2568 for (cp = cinfo; cp != NULL; cp = cp->link) { in ctl_putsys()
|
| /freebsd-9-stable/contrib/ntp/include/ |
| D | ntp_crypto.h | 187 extern struct cert_info *cinfo; /* host certificate information */
|
| /freebsd-9-stable/usr.sbin/btxld/ |
| D | btxld.c | 89 static const char cinfo[] = variable 297 printf(cinfo, fmtlist[ihdr.fmt], ihdr.size, ihdr.text, in btxld()
|
| /freebsd-9-stable/contrib/ntp/ |
| D | CommitLog | 203472 Lose the coredumping cinfo-> tests
|