| /NextBSD/usr.sbin/ypbind/ |
| HD | yp_ping.c | 216 struct ping_req **reqs; in __yp_ping() local 229 reqs = calloc(1, sizeof(struct ping_req *) * cnt); in __yp_ping() 241 reqs[i] = calloc(1, sizeof(struct ping_req)); in __yp_ping() 242 bcopy((char *)&sin, (char *)&reqs[i]->sin, sizeof(sin)); in __yp_ping() 243 any = &reqs[i]->sin; in __yp_ping() 244 reqs[i]->xid = xid_seed; in __yp_ping() 251 free(reqs); in __yp_ping() 261 if (reqs[i] != NULL) in __yp_ping() 262 free(reqs[i]); in __yp_ping() 263 free(reqs); in __yp_ping() [all …]
|
| /NextBSD/contrib/gdb/gdb/ |
| HD | ax-general.c | 382 ax_reqs (struct agent_expr *ax, struct agent_reqs *reqs) in ax_reqs() argument 411 reqs->max_height = reqs->min_height = height = 0; in ax_reqs() 412 reqs->flaw = agent_flaw_none; in ax_reqs() 413 reqs->max_data_size = 0; in ax_reqs() 419 reqs->flaw = agent_flaw_bad_instruction; in ax_reqs() 428 reqs->flaw = agent_flaw_bad_instruction; in ax_reqs() 435 reqs->flaw = agent_flaw_incomplete_instruction; in ax_reqs() 444 reqs->flaw = agent_flaw_height_mismatch; in ax_reqs() 453 if (height < reqs->min_height) in ax_reqs() 454 reqs->min_height = height; in ax_reqs() [all …]
|
| HD | ax.h | 290 extern void ax_reqs (struct agent_expr *ax, struct agent_reqs *reqs);
|
| /NextBSD/contrib/ncurses/misc/ |
| HD | gen-pkgconfig.in | 83 reqs= 90 reqs="$PANEL_LIBRARY, $MENU_LIBRARY, $FORM_LIBRARY, $MAIN_LIBRARY" 93 reqs="$MAIN_LIBRARY" 99 test -n "$reqs" && reqs="$reqs, " 100 reqs="${reqs}${SUB_LIBRARY}" 117 Requires.private: $reqs
|
| /NextBSD/lib/libipsec/ |
| HD | test-policy.c | 56 } reqs[] = { variable 112 for (i = 0; i < sizeof(reqs)/sizeof(reqs[0]); i++) { in test1() 113 printf("#%d [%s]\n", i + 1, reqs[i].str); in test1() 115 result = test1sub1(&reqs[i]); in test1() 116 if (result == 0 && reqs[i].result == 1) { in test1() 118 } else if (result == 1 && reqs[i].result == 0) { in test1()
|
| /NextBSD/sys/dev/tws/ |
| HD | tws.c | 413 if (sc->reqs[i].dma_map) in tws_detach() 414 bus_dmamap_destroy(sc->data_tag, sc->reqs[i].dma_map); in tws_detach() 415 callout_drain(&sc->reqs[i].timeout); in tws_detach() 419 free(sc->reqs, M_TWS); in tws_detach() 607 sc->reqs = malloc(sizeof(struct tws_request) * tws_queue_depth, M_TWS, in tws_init() 609 if ( sc->reqs == NULL ) { in tws_init() 703 if (bus_dmamap_create(sc->data_tag, 0, &sc->reqs[i].dma_map)) { in tws_init_reqs() 708 sc->reqs[i].cmd_pkt = &cmd_buf[i]; in tws_init_reqs() 714 sc->reqs[i].cmd_pkt_phy = sc->dma_mem_phys + in tws_init_reqs() 717 sc->reqs[i].request_id = i; in tws_init_reqs() [all …]
|
| HD | tws_cam.c | 483 req = &sc->reqs[req_id]; in tws_err_complete() 622 r = &sc->reqs[TWS_REQ_TYPE_AEN_FETCH]; in tws_drain_reserved_reqs() 632 r = &sc->reqs[TWS_REQ_TYPE_PASSTHRU]; in tws_drain_reserved_reqs() 638 r = &sc->reqs[TWS_REQ_TYPE_GETSET_PARAM]; in tws_drain_reserved_reqs() 1136 sc->reqs[req_id].cb(&sc->reqs[req_id]); in tws_intr_resp()
|
| HD | tws.h | 265 struct tws_request *reqs; /* pointer to requests */ member
|
| HD | tws_hdm.c | 155 req = &sc->reqs[TWS_REQ_TYPE_INTERNAL_CMD]; in tws_init_connect()
|
| /NextBSD/contrib/libarchive/libarchive/ |
| HD | archive_read_support_format_iso9660.c | 334 } *reqs; member 1713 free(iso9660->read_ce_req.reqs); in archive_read_format_iso9660_cleanup() 2280 if (heap->reqs != NULL) { in register_CE() 2281 memcpy(p, heap->reqs, heap->cnt * sizeof(*p)); in register_CE() 2282 free(heap->reqs); in register_CE() 2284 heap->reqs = p; in register_CE() 2294 parent_offset = heap->reqs[parent].offset; in register_CE() 2296 heap->reqs[hole].offset = offset; in register_CE() 2297 heap->reqs[hole].file = file; in register_CE() 2301 heap->reqs[hole] = heap->reqs[parent]; in register_CE() [all …]
|
| /NextBSD/sys/rpc/rpcsec_gss/ |
| HD | rpcsec_gss.c | 472 struct rpc_pending_request_list reqs; in rpc_gss_purge_xid() local 474 LIST_INIT(&reqs); in rpc_gss_purge_xid() 479 LIST_INSERT_HEAD(&reqs, pr, pr_link); in rpc_gss_purge_xid() 485 LIST_FOREACH_SAFE(pr, &reqs, pr_link, npr) { in rpc_gss_purge_xid() 621 struct rpc_pending_request_list reqs; in rpc_gss_validate() local 672 LIST_INIT(&reqs); in rpc_gss_validate() 676 LIST_INSERT_HEAD(&reqs, pr, pr_link); in rpc_gss_validate() 680 LIST_FOREACH(pr, &reqs, pr_link) { in rpc_gss_validate() 701 LIST_FOREACH_SAFE(pr, &reqs, pr_link, npr) in rpc_gss_validate() 722 LIST_FOREACH_SAFE(pr, &reqs, pr_link, npr) { in rpc_gss_validate()
|
| /NextBSD/sys/dev/e1000/ |
| HD | e1000_mbx.c | 369 hw->mbx.stats.reqs++; in e1000_check_for_msg_vf() 546 mbx->stats.reqs = 0; in e1000_init_mbx_params_vf() 581 hw->mbx.stats.reqs++; in e1000_check_for_msg_pf() 764 mbx->stats.reqs = 0; in e1000_init_mbx_params_pf()
|
| HD | e1000_vf.h | 244 u32 reqs; member
|
| HD | e1000_hw.h | 895 u32 reqs; member
|
| /NextBSD/sys/dev/ixgbe/ |
| HD | ixgbe_mbx.c | 343 hw->mbx.stats.reqs++; in ixgbe_check_for_msg_vf() 522 mbx->stats.reqs = 0; in ixgbe_init_mbx_params_vf() 558 hw->mbx.stats.reqs++; in ixgbe_check_for_msg_pf() 765 mbx->stats.reqs = 0; in ixgbe_init_mbx_params_pf()
|
| HD | ixgbe_type.h | 3865 u32 reqs; member
|
| /NextBSD/sbin/hastd/ |
| HD | activemap.c | 372 int reqs; in activemap_extent_complete() local 379 reqs = ext2reqs(amp, extent); in activemap_extent_complete() 380 PJDLOG_ASSERT(amp->am_memtab[extent] >= reqs); in activemap_extent_complete() 381 amp->am_memtab[extent] -= reqs; in activemap_extent_complete()
|
| /NextBSD/usr.sbin/ppp/ |
| HD | fsm.h | 112 int reqs; /* Max config REQs before a close() */ member
|
| HD | fsm.c | 154 fp->more.reqs = fp->more.naks = fp->more.rejs = 3; in fsm_Init() 385 if (fp->more.reqs-- > 0 && fp->restart-- > 0) { in FsmSendConfigReq() 389 if (fp->more.reqs < 0) in FsmSendConfigReq()
|
| HD | ipv6cp.c | 513 fp->more.reqs = fp->more.naks = fp->more.rejs = ipv6cp->cfg.fsm.maxreq * 3; in ipv6cp_LayerUp() 580 fp->more.reqs = fp->more.naks = fp->more.rejs = ipv6cp->cfg.fsm.maxreq * 3; in ipv6cp_LayerStart()
|
| HD | ccp.c | 439 fp->more.reqs = fp->more.naks = fp->more.rejs = ccp->cfg.fsm.maxreq * 3; in CcpLayerStart() 556 fp->more.reqs = fp->more.naks = fp->more.rejs = ccp->cfg.fsm.maxreq * 3; in CcpLayerUp()
|
| HD | lcp.c | 560 fp->more.reqs = fp->more.naks = fp->more.rejs = lcp->cfg.fsm.maxreq * 3; in LcpLayerStart() 582 fp->more.reqs = fp->more.naks = fp->more.rejs = lcp->cfg.fsm.maxreq * 3; in LcpLayerUp()
|
| HD | ipcp.c | 827 fp->more.reqs = fp->more.naks = fp->more.rejs = ipcp->cfg.fsm.maxreq * 3; in IpcpLayerStart() 971 fp->more.reqs = fp->more.naks = fp->more.rejs = ipcp->cfg.fsm.maxreq * 3; in IpcpLayerUp()
|
| /NextBSD/contrib/libstdc++/ |
| D | ChangeLog-2000 | 2625 pre-reqs, previously only Cygwin.
|