Searched refs:bp (Results 1 - 25 of 943) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/tcpdump/
H A Dprint-otv.c42 otv_print(netdissect_options *ndo, const u_char *bp, u_int len) argument
50 ND_TCHECK(*bp);
51 flags = *bp;
53 bp += 1;
55 ND_TCHECK2(*bp, 3);
56 ND_PRINT((ndo, "overlay %u, ", EXTRACT_24BITS(bp)));
57 bp += 3;
59 ND_TCHECK2(*bp, 3);
60 ND_PRINT((ndo, "instance %u\n", EXTRACT_24BITS(bp)));
61 bp
[all...]
H A Dprint-carp.c49 carp_print(netdissect_options *ndo, register const u_char *bp, register u_int len, int ttl) argument
54 ND_TCHECK(bp[0]);
55 version = (bp[0] & 0xf0) >> 4;
56 type = bp[0] & 0x0f;
66 ND_TCHECK(bp[2]);
67 ND_TCHECK(bp[5]);
69 bp[1], bp[5], bp[2], bp[
[all...]
H A Dprint-dvmrp.c70 register const u_char *bp, register u_int len)
77 if (bp >= ep)
80 ND_TCHECK(bp[1]);
81 type = bp[1];
84 bp += 8;
92 if (print_probe(ndo, bp, ep, len) < 0)
100 if (print_report(ndo, bp, ep, len) < 0)
111 if (print_neighbors(ndo, bp, ep, len) < 0)
124 bp -= 4;
125 ND_TCHECK2(bp[
69 dvmrp_print(netdissect_options *ndo, register const u_char *bp, register u_int len) argument
164 print_report(netdissect_options *ndo, register const u_char *bp, register const u_char *ep, register u_int len) argument
222 print_probe(netdissect_options *ndo, register const u_char *bp, register const u_char *ep, register u_int len) argument
253 print_neighbors(netdissect_options *ndo, register const u_char *bp, register const u_char *ep, register u_int len) argument
285 print_neighbors2(netdissect_options *ndo, register const u_char *bp, register const u_char *ep, register u_int len, uint8_t major_version, uint8_t minor_version) argument
334 print_prune(netdissect_options *ndo, register const u_char *bp) argument
348 print_graft(netdissect_options *ndo, register const u_char *bp) argument
359 print_graft_ack(netdissect_options *ndo, register const u_char *bp) argument
[all...]
H A Dprint-vxlan.c48 vxlan_print(netdissect_options *ndo, const u_char *bp, u_int len) argument
56 ND_TCHECK2(*bp, VXLAN_HDR_LEN);
58 flags = *bp;
59 bp += 4;
61 vni = EXTRACT_24BITS(bp);
62 bp += 4;
68 ether_print(ndo, bp, len - VXLAN_HDR_LEN, ndo->ndo_snapend - bp, NULL, NULL);
H A Dprint-nsh.c49 nsh_print(netdissect_options *ndo, const u_char *bp, u_int len) argument
69 ND_TCHECK2(*bp, NSH_BASE_HDR_LEN + NSH_SERVICE_PATH_HDR_LEN);
71 ver = (uint8_t)(*bp >> 6);
72 flags = *bp;
73 bp += 1;
74 length = *bp;
75 bp += 1;
76 md_type = *bp;
77 bp += 1;
78 next_protocol = *bp;
[all...]
H A Dprint-geonet.c60 const u_char *bp)
67 version = bp[0];
68 msg_type = bp[1];
76 const u_char *bp)
78 uint16_t dest = EXTRACT_16BITS(bp+0);
79 uint16_t src = EXTRACT_16BITS(bp+2);
85 const u_char *bp)
89 if (!ND_TTEST2(*bp, GEONET_ADDR_LEN))
91 ND_PRINT((ndo, "GN_ADDR:%s ", linkaddr_string (ndo, bp, 0, GEONET_ADDR_LEN)));
93 if (!ND_TTEST2(*(bp
59 print_btp_body(netdissect_options *ndo, const u_char *bp) argument
75 print_btp(netdissect_options *ndo, const u_char *bp) argument
84 print_long_pos_vector(netdissect_options *ndo, const u_char *bp) argument
108 geonet_print(netdissect_options *ndo, const u_char *bp, u_int length, const struct lladdr_info *src) argument
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_entry_strmode.c44 char *bp = entry->strmode; local
49 strcpy(bp, "?rwxrwxrwx ");
53 case AE_IFREG: bp[0] = '-'; break;
54 case AE_IFBLK: bp[0] = 'b'; break;
55 case AE_IFCHR: bp[0] = 'c'; break;
56 case AE_IFDIR: bp[0] = 'd'; break;
57 case AE_IFLNK: bp[0] = 'l'; break;
58 case AE_IFSOCK: bp[0] = 's'; break;
59 case AE_IFIFO: bp[0] = 'p'; break;
62 bp[
[all...]
/freebsd-11-stable/contrib/byacc/
H A Dsymtab.c32 bucket *bp; local
36 bp = TMALLOC(bucket, 1);
37 NO_SPACE(bp);
39 bp->link = 0;
40 bp->next = 0;
42 bp->name = TMALLOC(char, strlen(name) + 1);
43 NO_SPACE(bp->name);
45 bp->tag = 0;
46 bp->value = UNDEFINED;
47 bp
65 bucket *bp, **bpp; local
89 bucket *bp; local
[all...]
/freebsd-11-stable/libexec/bootpd/tools/bootptest/
H A Dprint-bootp.c55 bootp_print(bp, length, sport, dport)
56 struct bootp *bp;
75 switch (bp->bp_op) {
90 printf(" bootp-#%d", bp->bp_op);
94 if (bp->bp_htype != 1)
95 printf(" htype:%d", bp->bp_htype);
98 if (bp->bp_hlen != 6)
99 printf(" hlen:%d", bp->bp_hlen);
102 if (bp->bp_hlen) {
106 TCHECK(bp
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_buf.c49 dt_buf_create(dtrace_hdl_t *dtp, dt_buf_t *bp, const char *name, size_t len) argument
54 bp->dbu_buf = bp->dbu_ptr = dt_zalloc(dtp, len);
55 bp->dbu_len = len;
57 if (bp->dbu_buf == NULL)
58 bp->dbu_err = dtrace_errno(dtp);
60 bp->dbu_err = 0;
62 bp->dbu_resizes = 0;
63 bp->dbu_name = name;
67 dt_buf_destroy(dtrace_hdl_t *dtp, dt_buf_t *bp) argument
76 dt_buf_reset(dtrace_hdl_t *dtp, dt_buf_t *bp) argument
85 dt_buf_write(dtrace_hdl_t *dtp, dt_buf_t *bp, const void *buf, size_t len, size_t align) argument
139 dt_buf_offset(const dt_buf_t *bp, size_t align) argument
146 dt_buf_len(const dt_buf_t *bp) argument
152 dt_buf_error(const dt_buf_t *bp) argument
158 dt_buf_ptr(const dt_buf_t *bp) argument
164 dt_buf_claim(dtrace_hdl_t *dtp, dt_buf_t *bp) argument
[all...]
/freebsd-11-stable/sys/net/
H A Dbridgestp.c153 bstp_transmit(struct bstp_state *bs, struct bstp_port *bp) argument
162 if (bp->bp_hello_timer.active == 0) {
164 bstp_hello_timer_expiry(bs, bp);
167 if (bp->bp_txcount > bs->bs_txholdcount)
171 if (bp->bp_protover == BSTP_PROTO_RSTP) {
172 bstp_transmit_bpdu(bs, bp);
173 bp->bp_tc_ack = 0;
175 switch (bp->bp_role) {
177 bstp_transmit_bpdu(bs, bp);
178 bp
191 bstp_transmit_bpdu(struct bstp_state *bs, struct bstp_port *bp) argument
227 bstp_transmit_tcn(struct bstp_state *bs, struct bstp_port *bp) argument
266 bstp_decode_bpdu(struct bstp_port *bp, struct bstp_cbpdu *cpdu, struct bstp_config_unit *cu) argument
339 bstp_send_bpdu(struct bstp_state *bs, struct bstp_port *bp, struct bstp_cbpdu *bpdu) argument
395 bstp_pdu_flags(struct bstp_port *bp) argument
452 bstp_input(struct bstp_port *bp, struct ifnet *ifp, struct mbuf *m) argument
529 bstp_received_stp(struct bstp_state *bs, struct bstp_port *bp, struct mbuf **mp, struct bstp_tbpdu *tpdu) argument
554 bstp_received_rstp(struct bstp_state *bs, struct bstp_port *bp, struct mbuf **mp, struct bstp_tbpdu *tpdu) argument
573 bstp_received_tcn(struct bstp_state *bs, struct bstp_port *bp, struct bstp_tcn_unit *tcn) argument
581 bstp_received_bpdu(struct bstp_state *bs, struct bstp_port *bp, struct bstp_config_unit *cu) argument
674 bstp_pdu_rcvtype(struct bstp_port *bp, struct bstp_config_unit *cu) argument
719 bstp_pdu_bettersame(struct bstp_port *bp, int newinfo) argument
781 struct bstp_port *bp, *rbp = NULL; local
898 bstp_update_state(struct bstp_state *bs, struct bstp_port *bp) argument
923 bstp_update_roles(struct bstp_state *bs, struct bstp_port *bp) argument
1075 bstp_update_tc(struct bstp_port *bp) argument
1132 bstp_update_info(struct bstp_port *bp) argument
1161 bstp_set_other_tcprop(struct bstp_port *bp) argument
1178 struct bstp_port *bp; local
1189 struct bstp_port *bp; local
1202 bstp_set_port_state(struct bstp_port *bp, int state) argument
1239 bstp_set_port_role(struct bstp_port *bp, int role) argument
1313 bstp_set_port_proto(struct bstp_port *bp, int proto) argument
1344 bstp_set_port_tc(struct bstp_port *bp, int state) argument
1420 bstp_set_timer_tc(struct bstp_port *bp) argument
1442 bstp_set_timer_msgage(struct bstp_port *bp) argument
1454 bstp_rerooted(struct bstp_state *bs, struct bstp_port *bp) argument
1525 struct bstp_port *bp; local
1542 struct bstp_port *bp; local
1588 bstp_set_port_priority(struct bstp_port *bp, int pri) argument
1606 bstp_set_path_cost(struct bstp_port *bp, uint32_t path_cost) argument
1632 bstp_set_edge(struct bstp_port *bp, int set) argument
1646 bstp_set_autoedge(struct bstp_port *bp, int set) argument
1663 bstp_set_ptp(struct bstp_port *bp, int set) argument
1674 bstp_set_autoptp(struct bstp_port *bp, int set) argument
1693 bstp_calc_path_cost(struct bstp_port *bp) argument
1731 struct bstp_port *bp = (struct bstp_port *)arg; local
1745 struct bstp_port *bp = (struct bstp_port *)arg; local
1772 bstp_linkstate(struct bstp_port *bp) argument
1788 struct bstp_port *bp = (struct bstp_port *)arg; local
1850 bstp_enable_port(struct bstp_state *bs, struct bstp_port *bp) argument
1856 bstp_disable_port(struct bstp_state *bs, struct bstp_port *bp) argument
1865 struct bstp_port *bp; local
1951 bstp_hello_timer_expiry(struct bstp_state *bs, struct bstp_port *bp) argument
1964 bstp_message_age_expiry(struct bstp_state *bs, struct bstp_port *bp) argument
1974 bstp_migrate_delay_expiry(struct bstp_state *bs, struct bstp_port *bp) argument
1980 bstp_edge_delay_expiry(struct bstp_state *bs, struct bstp_port *bp) argument
2023 struct bstp_port *bp; local
2186 struct bstp_port *bp; local
2199 bstp_create(struct bstp_state *bs, struct bstp_port *bp, struct ifnet *ifp) argument
2224 bstp_enable(struct bstp_port *bp) argument
2250 bstp_disable(struct bstp_port *bp) argument
2268 bstp_destroy(struct bstp_port *bp) argument
[all...]
/freebsd-11-stable/contrib/bmake/
H A Dbuf.c107 Buf_Expand_1(Buffer *bp) argument
109 bp->size += max(bp->size, 16);
110 bp->buffer = bmake_realloc(bp->buffer, bp->size);
127 Buf_AddBytes(Buffer *bp, int numBytes, const Byte *bytesPtr) argument
129 int count = bp->count;
132 if (__predict_false(count + numBytes >= bp->size)) {
133 bp
157 Buf_GetAll(Buffer *bp, int *numBytesPtr) argument
180 Buf_Empty(Buffer *bp) argument
206 Buf_Init(Buffer *bp, int size) argument
[all...]
/freebsd-11-stable/contrib/mdocml/
H A Deqn_term.c43 term_eqn(struct termp *p, const struct eqn_box *bp) argument
46 eqn_box(p, bp);
51 eqn_box(struct termp *p, const struct eqn_box *bp) argument
58 if ((bp->type == EQN_LIST && bp->expectargs > 1) ||
59 (bp->type == EQN_PILE && (bp->prev || bp->next)) ||
60 (bp->parent != NULL && (bp
[all...]
/freebsd-11-stable/usr.sbin/ppp/
H A Dmbuf.c80 m_length(struct mbuf *bp) argument
84 for (len = 0; bp; bp = bp->m_next)
85 len += bp->m_len;
109 struct mbuf *bp; local
128 bp = &(*mb)->u.m;
147 bp = &(*mb)->u.m;
155 memset(bp, '\0', sizeof(struct mbuf));
156 bp
167 m_free(struct mbuf *bp) argument
190 m_freem(struct mbuf *bp) argument
197 mbuf_Read(struct mbuf *bp, void *v, size_t len) argument
225 mbuf_View(struct mbuf *bp, void *v, size_t len) argument
245 m_prepend(struct mbuf *bp, const void *ptr, size_t len, u_short extra) argument
275 m_adj(struct mbuf *bp, ssize_t n) argument
305 mbuf_Write(struct mbuf *bp, const void *ptr, size_t m_len) argument
349 struct mbuf *bp; local
369 m_enqueue(struct mqueue *queue, struct mbuf *bp) argument
383 m_pullup(struct mbuf *bp) argument
402 bcopy(MBUF_CTOP(bp), bp + 1, bp->m_len); local
412 m_settype(struct mbuf *bp, int type) argument
425 m_append(struct mbuf *bp, const void *v, size_t sz) argument
[all...]
H A Dproto.c58 proto_Prepend(struct mbuf *bp, u_short proto, unsigned comp, int extra) argument
66 bp = m_prepend(bp, cp + 1, 1, extra);
68 bp = m_prepend(bp, cp, 2, extra);
70 return bp;
74 proto_LayerPush(struct bundle *b __unused, struct link *l, struct mbuf *bp, argument
78 bp = proto_Prepend(bp, *proto, l->lcp.his_protocomp,
80 m_settype(bp, MB_PROTOOU
87 proto_LayerPull(struct bundle *b __unused, struct link *l, struct mbuf *bp, u_short *proto) argument
[all...]
/freebsd-11-stable/lib/libc/db/hash/
H A Dhash_buf.c107 BUFHEAD *bp; local
115 bp = prev_bp->ovfl;
116 if (!bp || (bp->addr != addr))
117 bp = NULL;
129 bp = PTROF(segp[segment_ndx]);
134 if (!bp) {
135 bp = newbuf(hashp, addr, prev_bp);
136 if (!bp ||
137 __get_page(hashp, bp
158 BUFHEAD *bp; /* The buffer we're going to use */ local
322 BUFHEAD *bp; local
351 __reclaim_buf(HTAB *hashp, BUFHEAD *bp) argument
[all...]
/freebsd-11-stable/usr.sbin/makefs/ffs/
H A Dbuf.c82 printf("bread: bp %p blkno %lld offset %lld bcount %ld\n",
103 brelse(struct buf *bp, int u1 __unused) argument
106 assert (bp != NULL);
107 assert (bp->b_data != NULL);
109 if (bp->b_lblkno < 0) {
123 bp->b_bcount = 0;
127 TAILQ_REMOVE(&buftail, bp, b_tailq);
128 free(bp->b_data);
129 free(bp);
133 bwrite(struct buf *bp) argument
161 struct buf *bp; local
186 struct buf *bp; local
[all...]
/freebsd-11-stable/sys/geom/
H A Dgeom_io.c68 static int g_io_transient_map_bio(struct bio *bp);
132 struct bio *bp; local
134 bp = TAILQ_FIRST(&bq->bio_queue);
135 if (bp != NULL) {
136 KASSERT((bp->bio_flags & BIO_ONQUEUE),
137 ("Bio not on queue bp=%p target %p", bp, bq));
138 bp->bio_flags &= ~BIO_ONQUEUE;
139 TAILQ_REMOVE(&bq->bio_queue, bp, bio_queue);
142 return (bp);
148 struct bio *bp; local
166 struct bio *bp; local
182 g_destroy_bio(struct bio *bp) argument
197 g_clone_bio(struct bio *bp) argument
242 g_duplicate_bio(struct bio *bp) argument
271 g_reset_bio(struct bio *bp) argument
293 struct bio *bp; local
313 struct bio *bp; local
341 struct bio *bp; local
360 g_io_check(struct bio *bp) argument
503 g_run_classifiers(struct bio *bp) argument
516 g_io_request(struct bio *bp, struct g_consumer *cp) argument
641 g_io_deliver(struct bio *bp, int error) argument
780 g_io_transient_map_bio(struct bio *bp) argument
826 struct bio *bp; local
887 bio_taskqueue(struct bio *bp, bio_task_t *func, void *arg) argument
909 struct bio *bp; local
941 struct bio *bp; local
971 struct bio *bp; local
993 struct bio *bp; local
1012 g_print_bio(struct bio *bp) argument
[all...]
/freebsd-11-stable/contrib/ntp/libntp/
H A Dhumandate.c19 char * bp; local
28 LIB_GETBUF(bp);
30 snprintf(bp, LIB_BUFLENGTH, "%2d %s %02d:%02d:%02d",
34 return bp;
47 char * bp; local
54 LIB_GETBUF(bp);
56 snprintf(bp, LIB_BUFLENGTH, "%02d:%02d:%02d",
59 return bp;
H A Dmodetoa.c15 char *bp; local
29 LIB_GETBUF(bp);
30 snprintf(bp, LIB_BUFLENGTH, "mode#%zu", mode);
31 return bp;
/freebsd-11-stable/sys/kern/
H A Dsubr_disk.c34 disk_err(struct bio *bp, const char *what, int blkdone, int nl) argument
38 if (bp->bio_dev != NULL)
39 printf("%s: %s ", devtoname(bp->bio_dev), what);
40 else if (bp->bio_disk != NULL)
42 bp->bio_disk->d_name, bp->bio_disk->d_unit, what);
45 switch(bp->bio_cmd) {
51 default: printf("cmd=%x ", bp->bio_cmd); break;
53 sn = bp->bio_pblkno;
54 if (bp
156 bioq_remove(struct bio_queue_head *head, struct bio *bp) argument
171 struct bio *bp; local
178 bioq_insert_head(struct bio_queue_head *head, struct bio *bp) argument
187 bioq_insert_tail(struct bio_queue_head *head, struct bio *bp) argument
205 struct bio *bp; local
219 bioq_bio_key(struct bio_queue_head *head, struct bio *bp) argument
233 bioq_disksort(struct bio_queue_head *head, struct bio *bp) argument
[all...]
H A Dvfs_bio.c109 static void vm_hold_free_pages(struct buf *bp, int newbsize);
110 static void vm_hold_load_pages(struct buf *bp, vm_offset_t from,
112 static void vfs_page_set_valid(struct buf *bp, vm_ooffset_t off, vm_page_t m);
113 static void vfs_page_set_validclean(struct buf *bp, vm_ooffset_t off,
115 static void vfs_clean_pages_dirty_buf(struct buf *bp);
116 static void vfs_setdirty_locked_object(struct buf *bp);
117 static void vfs_vmio_invalidate(struct buf *bp);
118 static void vfs_vmio_truncate(struct buf *bp, int npages);
119 static void vfs_vmio_extend(struct buf *bp, int npages, int size);
127 static void bremfreel(struct buf *bp);
539 bufspace_adjust(struct buf *bp, int bufsize) argument
744 bufmallocadjust(struct buf *bp, int bufsize) argument
782 runningbufwakeup(struct buf *bp) argument
837 vfs_buf_test_cache(struct buf *bp, vm_ooffset_t foff, vm_offset_t off, vm_offset_t size, vm_page_t m) argument
1040 struct buf *bp; local
1167 vfs_buf_check_mapped(struct buf *bp) argument
1179 vfs_buf_check_unmapped(struct buf *bp) argument
1194 isbufbusy(struct buf *bp) argument
1209 struct buf *bp; local
1322 bpmap_qenter(struct buf *bp) argument
1343 binsfree(struct buf *bp, int qindex) argument
1397 buf_free(struct buf *bp) argument
1432 struct buf *bp; local
1470 struct buf *bp; local
1533 struct buf *bp, *nbp; local
1655 bremfree(struct buf *bp) argument
1675 bremfreef(struct buf *bp) argument
1692 bremfreel(struct buf *bp) argument
1721 bufkva_free(struct buf *bp) argument
1750 bufkva_alloc(struct buf *bp, int maxsize, int gbflags) argument
1858 struct buf *bp; local
1916 bufwrite(struct buf *bp) argument
2012 bufbdflush(struct bufobj *bo, struct buf *bp) argument
2062 bdwrite(struct buf *bp) argument
2154 bdirty(struct buf *bp) argument
2185 bundirty(struct buf *bp) argument
2215 bawrite(struct buf *bp) argument
2232 babarrierwrite(struct buf *bp) argument
2249 bbarrierwrite(struct buf *bp) argument
2298 brelse(struct buf *bp) argument
2475 bqrelse(struct buf *bp) argument
2528 vfs_vmio_iodone(struct buf *bp) argument
2602 vfs_vmio_unwire(struct buf *bp, vm_page_t m) argument
2641 vfs_vmio_invalidate(struct buf *bp) argument
2697 vfs_vmio_truncate(struct buf *bp, int desiredpages) argument
2730 vfs_vmio_extend(struct buf *bp, int desiredpages, int size) argument
2853 vfs_bio_awrite(struct buf *bp) argument
2922 getnewbuf_kva(struct buf *bp, int gbflags, int maxsize) argument
2957 struct buf *bp; local
3121 struct buf *bp; local
3257 struct buf *bp; local
3327 vfs_clean_pages_dirty_buf(struct buf *bp) argument
3357 vfs_setdirty_locked_object(struct buf *bp) argument
3425 bp_unmapped_get_kva(struct buf *bp, daddr_t blkno, int size, int gbflags) argument
3519 struct buf *bp; local
3788 struct buf *bp; local
3808 vfs_nonvmio_truncate(struct buf *bp, int newbsize) argument
3831 vfs_nonvmio_extend(struct buf *bp, int newbsize) argument
3893 allocbuf(struct buf *bp, int size) argument
3948 biodone(struct bio *bp) argument
3990 biowait(struct bio *bp, const char *wchan) argument
4007 biofinish(struct bio *bp, struct devstat *stat, int error) argument
4027 bufwait(struct buf *bp) argument
4064 bufdone(struct buf *bp) argument
4095 bufdone_finish(struct buf *bp) argument
4136 vfs_unbusy_pages(struct buf *bp) argument
4177 vfs_page_set_valid(struct buf *bp, vm_ooffset_t off, vm_page_t m) argument
4206 vfs_page_set_validclean(struct buf *bp, vm_ooffset_t off, vm_page_t m) argument
4239 vfs_drain_busy_pages(struct buf *bp) argument
4276 vfs_busy_pages(struct buf *bp, int clear_modify) argument
4345 vfs_bio_set_valid(struct buf *bp, int base, int size) argument
4387 vfs_bio_clrbuf(struct buf *bp) argument
4444 vfs_bio_bzero_buf(struct buf *bp, int base, int size) argument
4474 b_io_dismiss(struct buf *bp, int ioflag, bool release) argument
4495 vfs_bio_brelse(struct buf *bp, int ioflag) argument
4502 vfs_bio_set_flags(struct buf *bp, int ioflag) argument
4514 vm_hold_load_pages(struct buf *bp, vm_offset_t from, vm_offset_t to) argument
4543 vm_hold_free_pages(struct buf *bp, int newbsize) argument
4580 vmapbuf(struct buf *bp, void *uaddr, size_t len, int mapbuf) argument
4610 vunmapbuf(struct buf *bp) argument
4623 bdone(struct buf *bp) argument
4635 bwait(struct buf *bp, u_char pri, const char *wchan) argument
4654 bufstrategy(struct bufobj *bo, struct buf *bp) argument
4719 bpin(struct buf *bp) argument
4730 bunpin(struct buf *bp) argument
4742 bunpin_wait(struct buf *bp) argument
4757 bdata2bio(struct buf *bp, struct bio *bip) argument
4769 ("Buffer %p too short: %d %lld %d", bp, bip->bio_ma_offset, local
4807 struct buf *bp; local
4960 struct buf *bp = (struct buf *)addr; local
4999 struct buf *bp; local
5016 struct buf *bp; local
5037 struct buf *bp; local
[all...]
/freebsd-11-stable/contrib/gdb/gdb/gdbserver/
H A Dmem-break.c54 struct breakpoint *bp; local
59 bp = malloc (sizeof (struct breakpoint));
60 memset (bp, 0, sizeof (struct breakpoint));
62 (*the_target->read_memory) (where, bp->old_data,
67 bp->pc = where;
68 bp->handler = handler;
70 bp->next = breakpoints;
71 breakpoints = bp;
75 delete_breakpoint (struct breakpoint *bp) argument
79 if (breakpoints == bp)
105 struct breakpoint *bp = breakpoints; local
139 struct breakpoint *bp, *orig_bp; local
160 struct breakpoint *bp; local
174 struct breakpoint *bp; local
190 struct breakpoint *bp; local
215 struct breakpoint *bp = breakpoints; local
248 struct breakpoint *bp = breakpoints; local
[all...]
/freebsd-11-stable/sbin/dhclient/
H A Dhash.c81 struct hash_bucket *bp; local
90 bp = new_hash_bucket();
92 if (!bp) {
96 bp->name = name;
97 bp->value = pointer;
98 bp->next = table->buckets[hashno];
99 bp->len = len;
100 table->buckets[hashno] = bp;
106 struct hash_bucket *bp; local
117 for (bp
[all...]
/freebsd-11-stable/contrib/tcp_wrappers/
H A Dpercent_m.c27 char *bp = obuf; local
30 while (*bp = *cp)
33 strcpy(bp, sys_errlist[errno]);
35 sprintf(bp, "Unknown error %d", errno);
37 bp += strlen(bp);
40 bp++, cp++;

Completed in 137 milliseconds

1234567891011>>