Searched refs:scb (Results 1 - 25 of 35) sorted by relevance

12

/freebsd-9.3-release/contrib/gdb/gdb/
H A Dser-unix.h30 extern int ser_unix_nop_flush_output (struct serial *scb);
31 extern int ser_unix_flush_input (struct serial *scb);
32 extern int ser_unix_nop_send_break (struct serial *scb);
33 extern void ser_unix_nop_raw (struct serial *scb);
34 extern serial_ttystate ser_unix_nop_get_tty_state (struct serial *scb);
35 extern int ser_unix_nop_set_tty_state (struct serial *scb,
37 extern void ser_unix_nop_print_tty_state (struct serial *scb,
40 extern int ser_unix_nop_noflush_set_tty_state (struct serial *scb,
43 extern int ser_unix_nop_setbaudrate (struct serial *scb, int rate);
44 extern int ser_unix_nop_setstopbits (struct serial *scb, in
[all...]
H A Dserial.c43 /* Pointer to list of scb's. */
176 struct serial *scb;
180 for (scb = scb_base; scb; scb = scb->next)
181 if (scb->name && strcmp (scb->name, name) == 0)
183 scb->refcnt++;
184 return scb;
174 struct serial *scb; local
239 struct serial *scb; local
278 do_serial_close(struct serial *scb, int really_close) argument
330 serial_close(struct serial *scb) argument
336 serial_un_fdopen(struct serial *scb) argument
342 serial_readchar(struct serial *scb, int timeout) argument
373 serial_write(struct serial *scb, const char *str, int len) argument
405 serial_drain_output(struct serial *scb) argument
411 serial_flush_output(struct serial *scb) argument
417 serial_flush_input(struct serial *scb) argument
423 serial_send_break(struct serial *scb) argument
432 serial_raw(struct serial *scb) argument
438 serial_get_tty_state(struct serial *scb) argument
444 serial_set_tty_state(struct serial *scb, serial_ttystate ttystate) argument
450 serial_print_tty_state(struct serial *scb, serial_ttystate ttystate, struct ui_file *stream) argument
458 serial_noflush_set_tty_state(struct serial *scb, serial_ttystate new_ttystate, serial_ttystate old_ttystate) argument
466 serial_setbaudrate(struct serial *scb, int rate) argument
472 serial_setstopbits(struct serial *scb, int num) argument
478 serial_can_async_p(struct serial *scb) argument
484 serial_is_async_p(struct serial *scb) argument
490 serial_async(struct serial *scb, serial_event_ftype *handler, void *context) argument
503 deprecated_serial_fd(struct serial *scb) argument
516 serial_debug(struct serial *scb, int debug_p) argument
522 serial_debug_p(struct serial *scb) argument
[all...]
H A Dser-unix.c68 static int hardwire_open (struct serial *scb, const char *name);
69 static void hardwire_raw (struct serial *scb);
70 static int wait_for (struct serial *scb, int timeout);
71 static int hardwire_readchar (struct serial *scb, int timeout);
72 static int do_hardwire_readchar (struct serial *scb, int timeout);
73 static int generic_readchar (struct serial *scb, int timeout,
74 int (*do_readchar) (struct serial *scb,
77 static int hardwire_setbaudrate (struct serial *scb, int rate);
78 static void hardwire_close (struct serial *scb);
79 static int get_tty_state (struct serial *scb,
107 hardwire_open(struct serial *scb, const char *name) argument
117 get_tty_state(struct serial *scb, struct hardwire_ttystate *state) argument
147 set_tty_state(struct serial *scb, struct hardwire_ttystate *state) argument
177 hardwire_get_tty_state(struct serial *scb) argument
190 hardwire_set_tty_state(struct serial *scb, serial_ttystate ttystate) argument
200 hardwire_noflush_set_tty_state(struct serial *scb, serial_ttystate new_ttystate, serial_ttystate old_ttystate) argument
233 hardwire_print_tty_state(struct serial *scb, serial_ttystate ttystate, struct ui_file *stream) argument
291 hardwire_drain_output(struct serial *scb) argument
320 hardwire_flush_output(struct serial *scb) argument
337 hardwire_flush_input(struct serial *scb) argument
356 hardwire_send_break(struct serial *scb) argument
386 hardwire_raw(struct serial *scb) argument
441 wait_for(struct serial *scb, int timeout) argument
562 do_hardwire_readchar(struct serial *scb, int timeout) argument
630 hardwire_readchar(struct serial *scb, int timeout) argument
781 hardwire_setbaudrate(struct serial *scb, int rate) argument
820 hardwire_setstopbits(struct serial *scb, int num) argument
863 hardwire_close(struct serial *scb) argument
876 ser_unix_nop_get_tty_state(struct serial *scb) argument
883 ser_unix_nop_set_tty_state(struct serial *scb, serial_ttystate ttystate) argument
889 ser_unix_nop_raw(struct serial *scb) argument
898 ser_unix_wait_for(struct serial *scb, int timeout) argument
943 do_unix_readchar(struct serial *scb, int timeout) argument
1034 generic_readchar(struct serial *scb, int timeout, int (do_readchar) (struct serial *scb, int timeout)) argument
1072 ser_unix_readchar(struct serial *scb, int timeout) argument
1078 ser_unix_nop_noflush_set_tty_state(struct serial *scb, serial_ttystate new_ttystate, serial_ttystate old_ttystate) argument
1086 ser_unix_nop_print_tty_state(struct serial *scb, serial_ttystate ttystate, struct ui_file *stream) argument
1095 ser_unix_nop_setbaudrate(struct serial *scb, int rate) argument
1101 ser_unix_nop_setstopbits(struct serial *scb, int num) argument
1107 ser_unix_write(struct serial *scb, const char *str, int len) argument
1124 ser_unix_nop_flush_output(struct serial *scb) argument
1130 ser_unix_flush_input(struct serial *scb) argument
1143 ser_unix_nop_send_break(struct serial *scb) argument
1149 ser_unix_nop_drain_output(struct serial *scb) argument
1186 reschedule(struct serial *scb) argument
1253 struct serial *scb = context; local
1295 struct serial *scb = context; local
1305 ser_unix_async(struct serial *scb, int async_p) argument
[all...]
H A Dserial.h50 extern void serial_close (struct serial *scb);
54 extern void serial_un_fdopen (struct serial *scb);
72 extern int serial_readchar (struct serial *scb, int timeout);
77 extern int serial_write (struct serial *scb, const char *str, int len);
99 extern int serial_send_break (struct serial *scb);
103 extern void serial_raw (struct serial *scb);
108 extern serial_ttystate serial_get_tty_state (struct serial *scb);
115 extern int serial_set_tty_state (struct serial *scb, serial_ttystate ttystate);
121 extern void serial_print_tty_state (struct serial *scb, serial_ttystate ttystate, struct ui_file *);
129 extern int serial_noflush_set_tty_state (struct serial *scb, serial_ttystat
[all...]
H A Dser-tcp.c45 static int net_open (struct serial *scb, const char *name);
46 static void net_close (struct serial *scb);
58 net_open (struct serial *scb, const char *name) argument
98 scb->fd = socket (PF_INET, SOCK_DGRAM, 0);
100 scb->fd = socket (PF_INET, SOCK_STREAM, 0);
102 if (scb->fd < 0)
112 ioctl (scb->fd, FIONBIO, &tmp);
115 n = connect (scb->fd, (struct sockaddr *) &sockaddr, sizeof (sockaddr));
119 net_close (scb);
141 net_close (scb);
198 net_close(struct serial *scb) argument
[all...]
H A Dser-e7kpc.c36 static int e7000pc_open (struct serial *scb, const char *name);
37 static void e7000pc_raw (struct serial *scb);
38 static int e7000pc_readchar (struct serial *scb, int timeout);
39 static int e7000pc_setbaudrate (struct serial *scb, int rate);
40 static int e7000pc_write (struct serial *scb, const char *str, int len);
41 static void e7000pc_close (struct serial *scb);
42 static serial_ttystate e7000pc_get_tty_state (struct serial *scb);
43 static int e7000pc_set_tty_state (struct serial *scb, serial_ttystate state);
294 e7000pc_open (struct serial *scb, const char *name) argument
302 scb
311 e7000pc_noop(struct serial *scb) argument
317 e7000pc_raw(struct serial *scb) argument
323 e7000pc_readchar(struct serial *scb, int timeout) argument
348 e7000pc_get_tty_state(struct serial *scb) argument
358 e7000pc_set_tty_state(struct serial *scb, serial_ttystate ttystate) argument
364 e7000pc_noflush_set_tty_state(struct serial *scb, serial_ttystate new_ttystate, serial_ttystate old_ttystate) argument
372 e7000pc_print_tty_state(struct serial *scb, serial_ttystate ttystate, struct ui_file *stream) argument
381 e7000pc_setbaudrate(struct serial *scb, int rate) argument
387 e7000pc_setstopbits(struct serial *scb, int rate) argument
393 e7000pc_write(struct serial *scb, const char *str, int len) argument
401 e7000pc_close(struct serial *scb) argument
[all...]
H A Dser-pipe.c37 static int pipe_open (struct serial *scb, const char *name);
38 static void pipe_close (struct serial *scb);
50 pipe_open (struct serial *scb, const char *name) argument
110 scb->fd = pdes[0];
111 scb->state = state;
120 pipe_close (struct serial *scb) argument
122 struct pipe_state *state = scb->state;
126 close (scb->fd);
127 scb->fd = -1;
129 scb
[all...]
H A Dser-go32.c231 static int dos_open (struct serial *scb, const char *name);
232 static void dos_raw (struct serial *scb);
233 static int dos_readchar (struct serial *scb, int timeout);
234 static int dos_setbaudrate (struct serial *scb, int rate);
235 static int dos_write (struct serial *scb, const char *str, int len);
236 static void dos_close (struct serial *scb);
237 static serial_ttystate dos_get_tty_state (struct serial *scb);
238 static int dos_set_tty_state (struct serial *scb, serial_ttystate state);
459 dos_open (struct serial *scb, const char *name)
490 scb
456 dos_open(struct serial *scb, const char *name) argument
561 dos_close(struct serial *scb) argument
603 dos_noop(struct serial *scb) argument
609 dos_raw(struct serial *scb) argument
615 dos_readchar(struct serial *scb, int timeout) argument
633 dos_get_tty_state(struct serial *scb) argument
657 dos_set_tty_state(struct serial *scb, serial_ttystate ttystate) argument
667 dos_noflush_set_tty_state(struct serial *scb, serial_ttystate new_ttystate, serial_ttystate old_ttystate) argument
678 dos_flush_input(struct serial *scb) argument
690 dos_print_tty_state(struct serial *scb, serial_ttystate ttystate, struct ui_file *stream) argument
721 dos_setbaudrate(struct serial *scb, int rate) argument
753 dos_setstopbits(struct serial *scb, int num) argument
780 dos_write(struct serial *scb, const char *str, int len) argument
821 dos_sendbreak(struct serial *scb) argument
[all...]
/freebsd-9.3-release/sys/dev/aic7xxx/
H A Daic_osm_lib.h108 struct scb;
114 void aic_set_recoveryscb(struct aic_softc *aic, struct scb *scb);
203 static __inline u_int aic_get_timeout(struct scb *);
204 static __inline void aic_scb_timer_reset(struct scb *, u_int);
218 aic_get_timeout(struct scb *scb) argument
220 return (scb->io_ctx->ccb_h.timeout);
224 aic_scb_timer_reset(struct scb *scb, u_in argument
235 aic_scb_timer_start(struct scb *scb) argument
265 aic_set_transaction_status(struct scb *scb, uint32_t status) argument
272 aic_set_scsi_status(struct scb *scb, uint32_t status) argument
278 aic_get_transaction_status(struct scb *scb) argument
284 aic_get_scsi_status(struct scb *scb) argument
290 aic_set_transaction_tag(struct scb *scb, int enabled, u_int type) argument
300 aic_get_transfer_length(struct scb *scb) argument
306 aic_get_transfer_dir(struct scb *scb) argument
312 aic_set_residual(struct scb *scb, u_long resid) argument
318 aic_set_sense_residual(struct scb *scb, u_long resid) argument
324 aic_get_residual(struct scb *scb) argument
330 aic_perform_autosense(struct scb *scb) argument
336 aic_get_sense_bufsize(struct aic_softc *aic, struct scb *scb) argument
351 aic_freeze_scb(struct scb *scb) argument
357 aic_platform_freeze_devq(struct aic_softc *aic, struct scb *scb) argument
372 aic_platform_scb_free(struct aic_softc *aic, struct scb *scb) argument
[all...]
H A Daic_osm_lib.c41 aic_set_recoveryscb(struct aic_softc *aic, struct scb *scb) argument
44 if ((scb->flags & SCB_RECOVERY_SCB) == 0) {
45 struct scb *list_scb;
47 scb->flags |= SCB_RECOVERY_SCB;
60 callout_stop(&scb->io_timer);
68 struct scb *scb; local
70 scb = (struct scb *)ar
[all...]
H A Daic7xxx_inline.h59 * manual pause while accessing scb ram, accesses to certain registers
151 ahc_sg_bus_to_virt(struct scb *scb,
154 ahc_sg_virt_to_bus(struct scb *scb,
159 struct scb *scb, int op);
161 struct scb *scb, int op);
167 ahc_sg_bus_to_virt(struct scb *sc argument
179 ahc_sg_virt_to_bus(struct scb *scb, struct ahc_dma_seg *sg) argument
197 ahc_sync_scb(struct ahc_softc *ahc, struct scb *scb, int op) argument
206 ahc_sync_sglist(struct ahc_softc *ahc, struct scb *scb, int op) argument
271 ahc_update_residual(struct ahc_softc *ahc, struct scb *scb) argument
363 struct scb *scb; local
380 ahc_free_scb(struct ahc_softc *ahc, struct scb *scb) argument
399 struct scb* scb; local
409 ahc_swap_with_next_hscb(struct ahc_softc *ahc, struct scb *scb) argument
449 ahc_queue_scb(struct ahc_softc *ahc, struct scb *scb) argument
489 ahc_get_sense_buf(struct ahc_softc *ahc, struct scb *scb) argument
498 ahc_get_sense_bufaddr(struct ahc_softc *ahc, struct scb *scb) argument
[all...]
H A Daic79xx_inline.h233 static __inline void *ahd_sg_setup(struct ahd_softc *ahd, struct scb *scb,
237 struct scb *scb);
239 struct scb *scb);
241 struct scb *scb);
244 ahd_sg_setup(struct ahd_softc *ahd, struct scb *scb, argument
268 ahd_setup_scb_common(struct ahd_softc *ahd, struct scb *scb) argument
289 ahd_setup_data_scb(struct ahd_softc *ahd, struct scb *scb) argument
326 ahd_setup_noxfer_scb(struct ahd_softc *ahd, struct scb *scb) argument
362 ahd_sg_bus_to_virt(struct ahd_softc *ahd, struct scb *scb, uint32_t sg_busaddr) argument
372 ahd_sg_virt_to_bus(struct ahd_softc *ahd, struct scb *scb, void *sg) argument
384 ahd_sync_scb(struct ahd_softc *ahd, struct scb *scb, int op) argument
393 ahd_sync_sglist(struct ahd_softc *ahd, struct scb *scb, int op) argument
405 ahd_sync_sense(struct ahd_softc *ahd, struct scb *scb, int op) argument
471 ahd_complete_scb(struct ahd_softc *ahd, struct scb *scb) argument
487 ahd_update_residual(struct ahd_softc *ahd, struct scb *scb) argument
725 struct scb* scb; local
737 ahd_swap_with_next_hscb(struct ahd_softc *ahd, struct scb *scb) argument
776 ahd_queue_scb(struct ahd_softc *ahd, struct scb *scb) argument
821 ahd_get_sense_buf(struct ahd_softc *ahd, struct scb *scb) argument
827 ahd_get_sense_bufaddr(struct ahd_softc *ahd, struct scb *scb) argument
[all...]
H A Daic7xxx_osm.c66 struct ccb_scsiio *csio, struct scb *scb);
311 * We have an scb which has been processed by the
316 ahc_done(struct ahc_softc *ahc, struct scb *scb) argument
320 CAM_DEBUG(scb->io_ctx->ccb_h.path, CAM_DEBUG_TRACE,
321 ("ahc_done - scb %d\n", scb->hscb->tag));
323 ccb = scb->io_ctx;
324 LIST_REMOVE(scb, pending_link
500 struct scb *scb; local
931 struct scb *scb; local
1136 ahc_setup_data(struct ahc_softc *ahc, struct cam_sim *sim, struct ccb_scsiio *csio, struct scb *scb) argument
[all...]
H A Daic79xx_osm.c73 struct ccb_scsiio *csio, struct scb *scb);
309 * We have an scb which has been processed by the
314 ahd_done(struct ahd_softc *ahd, struct scb *scb) argument
318 CAM_DEBUG(scb->io_ctx->ccb_h.path, CAM_DEBUG_TRACE,
319 ("ahd_done - scb %d\n", SCB_GET_TAG(scb)));
321 ccb = scb->io_ctx;
322 LIST_REMOVE(scb, pending_link
516 struct scb *scb; local
946 struct scb *scb; local
1069 ahd_setup_data(struct ahd_softc *ahd, struct cam_sim *sim, struct ccb_scsiio *csio, struct scb *scb) argument
[all...]
H A Daic79xx.h86 #define SCB_IS_SCSIBUS_B(ahd, scb) (0)
87 #define SCB_GET_OUR_ID(scb) \
88 SCSIID_OUR_ID((scb)->hscb->scsiid)
89 #define SCB_GET_TARGET(ahd, scb) \
90 SCSIID_TARGET((ahd), (scb)->hscb->scsiid)
91 #define SCB_GET_CHANNEL(ahd, scb) \
92 SCSIID_CHANNEL(ahd, (scb)->hscb->scsiid)
93 #define SCB_GET_LUN(scb) \
94 ((scb)->hscb->lun)
95 #define SCB_GET_TARGET_OFFSET(ahd, scb) \
609 struct scb { struct
[all...]
H A Daic79xx.c140 struct scb *scb);
143 struct scb *scb);
179 struct scb *scb);
192 struct scb *scb, u_int col_idx);
194 struct scb *scb);
380 struct scb *scb; local
590 ahd_scb_active_in_fifo(struct ahd_softc *ahd, struct scb *scb) argument
619 ahd_run_data_fifo(struct ahd_softc *ahd, struct scb *scb) argument
856 struct scb *scb; local
956 struct scb *scb; local
1003 struct scb *scb; local
1020 struct scb *scb; local
1061 struct scb *scb; local
1153 struct scb *scb; local
1220 struct scb *scb; local
1359 struct scb *scb; local
1396 struct scb *scb; local
1424 struct scb *scb; local
1476 struct scb *scb; local
1539 struct scb *scb; local
1723 struct scb *scb; local
1817 struct scb *scb; local
2059 struct scb *scb; local
2160 struct scb *scb; local
2189 struct scb *scb; local
2468 struct scb *scb; local
2747 ahd_print_scb(struct scb *scb) argument
2772 ahd_dump_sglist(struct scb *scb) argument
3558 ahd_scb_devinfo(struct ahd_softc *ahd, struct ahd_devinfo *devinfo, struct scb *scb) argument
3581 ahd_setup_initiator_msgout(struct ahd_softc *ahd, struct ahd_devinfo *devinfo, struct scb *scb) argument
4722 struct scb *scb; local
4888 struct scb *scb; local
5037 struct scb *scb; local
5184 ahd_setup_target_msgin(struct ahd_softc *ahd, struct ahd_devinfo *devinfo, struct scb *scb) argument
5766 struct scb *scb; local
5920 ahd_add_col_list(struct ahd_softc *ahd, struct scb *scb, u_int col_idx) argument
5940 ahd_rem_col_list(struct ahd_softc *ahd, struct scb *scb) argument
5976 struct scb *scb; local
6011 ahd_free_scb(struct ahd_softc *ahd, struct scb *scb) argument
7282 ahd_match_scb(struct ahd_softc *ahd, struct scb *scb, int target, char channel, int lun, u_int tag, role_t role) argument
7318 ahd_freeze_devq(struct ahd_softc *ahd, struct scb *scb) argument
7336 ahd_qinfifo_requeue_tail(struct ahd_softc *ahd, struct scb *scb) argument
7358 ahd_qinfifo_requeue(struct ahd_softc *ahd, struct scb *prev_scb, struct scb *scb) argument
7398 struct scb *scb; local
7421 ahd_done_with_status(struct ahd_softc *ahd, struct scb *scb, uint32_t status) argument
7440 struct scb *scb; local
7672 struct scb *scb; local
8168 ahd_handle_scb_status(struct ahd_softc *ahd, struct scb *scb) argument
8179 ahd_handle_scsi_status(struct ahd_softc *ahd, struct scb *scb) argument
8406 ahd_calc_residual(struct ahd_softc *ahd, struct scb *scb) argument
9011 struct scb *scb; local
9302 ahd_timeout(struct scb *scb) argument
9327 struct scb *scb; local
9559 ahd_other_scb_timeout(struct ahd_softc *ahd, struct scb *scb, struct scb *other_scb) argument
10105 struct scb *scb; local
[all...]
H A Daic7xxx.c166 struct scb *scb);
170 struct scb *scb);
207 struct scb *scb);
215 struct scb *prev_scb,
216 struct scb *scb);
234 struct scb *sc
315 struct scb *scb; local
371 struct scb *scb; local
420 struct scb *scb; local
692 struct scb *scb; local
796 struct scb *scb; local
978 struct scb *scb; local
1536 ahc_print_scb(struct scb *scb) argument
2255 ahc_scb_devinfo(struct ahc_softc *ahc, struct ahc_devinfo *devinfo, struct scb *scb) argument
2289 ahc_setup_initiator_msgout(struct ahc_softc *ahc, struct ahc_devinfo *devinfo, struct scb *scb) argument
2564 struct scb *scb; local
3510 struct scb *scb; local
3656 struct scb *scb; local
3764 struct scb *scb; local
3873 ahc_setup_target_msgin(struct ahc_softc *ahc, struct ahc_devinfo *devinfo, struct scb *scb) argument
5329 ahc_match_scb(struct ahc_softc *ahc, struct scb *scb, int target, char channel, int lun, u_int tag, role_t role) argument
5365 ahc_freeze_devq(struct ahc_softc *ahc, struct scb *scb) argument
5383 ahc_qinfifo_requeue_tail(struct ahc_softc *ahc, struct scb *scb) argument
5405 ahc_qinfifo_requeue(struct ahc_softc *ahc, struct scb *prev_scb, struct scb *scb) argument
5440 struct scb *scb; local
5649 struct scb *scb; local
6226 ahc_calc_residual(struct ahc_softc *ahc, struct scb *scb) argument
6749 struct scb *scb; local
6931 ahc_timeout(struct scb *scb) argument
6953 ahc_other_scb_timeout(struct ahc_softc *ahc, struct scb *scb, struct scb *other_scb) argument
7008 struct scb *scb; local
7580 struct scb *scb; local
[all...]
H A Daic7xxx.h87 #define SCB_IS_SCSIBUS_B(ahc, scb) \
88 (SCSIID_CHANNEL(ahc, (scb)->hscb->scsiid) == 'B')
89 #define SCB_GET_OUR_ID(scb) \
90 SCSIID_OUR_ID((scb)->hscb->scsiid)
91 #define SCB_GET_TARGET(ahc, scb) \
92 SCSIID_TARGET((ahc), (scb)->hscb->scsiid)
93 #define SCB_GET_CHANNEL(ahc, scb) \
94 SCSIID_CHANNEL(ahc, (scb)->hscb->scsiid)
95 #define SCB_GET_LUN(scb) \
96 ((scb)
581 struct scb { struct
[all...]
H A Daic7xxx_osm.h105 #define SCB_GET_SIM(ahc, scb) \
106 (SCB_GET_CHANNEL(ahc, scb) == 'A' ? (ahc)->platform_data->sim \
244 static __inline void ahc_print_path(struct ahc_softc *, struct scb *);
248 ahc_print_path(struct ahc_softc *ahc, struct scb *scb) argument
250 xpt_print_path(scb->io_ctx->ccb_h.path);
273 void ahc_done(struct ahc_softc *ahc, struct scb *scb);
H A Daic79xx_osm.h94 #define SCB_GET_SIM(ahd, scb) \
237 static __inline void ahd_print_path(struct ahd_softc *, struct scb *);
241 ahd_print_path(struct ahd_softc *ahd, struct scb *scb) argument
243 xpt_print_path(scb->io_ctx->ccb_h.path);
277 void ahd_done(struct ahd_softc *ahd, struct scb *scb);
/freebsd-9.3-release/sys/dev/aic/
H A Daic.c65 static void aic_done(struct aic_softc *aic, struct aic_scb *scb);
79 struct aic_scb *scb; local
81 if ((scb = free_scbs) != NULL)
84 return (scb);
88 aic_free_scb(struct aic_softc *aic, struct aic_scb *scb) argument
92 (scb->ccb->ccb_h.status & CAM_RELEASE_SIMQ) == 0) {
93 scb->ccb->ccb_h.status |= CAM_RELEASE_SIMQ;
96 scb->flags = 0;
97 scb->ccb = (union ccb *)free_scbs;
98 free_scbs = scb;
116 struct aic_scb *scb; local
311 struct aic_scb *scb = (struct aic_scb *)arg; local
371 struct aic_scb *scb = aic->nexus; local
395 struct aic_scb *scb = aic->nexus; local
500 struct aic_scb *scb; local
610 struct aic_scb *scb; local
779 struct aic_scb *scb; local
867 struct aic_scb *scb = aic->nexus; local
937 struct aic_scb *scb = aic->nexus; local
1013 struct aic_scb *scb = aic->nexus; local
1048 aic_done(struct aic_softc *aic, struct aic_scb *scb) argument
1132 struct aic_scb *scb = (struct aic_scb *)arg; local
1191 struct aic_scb *scb; local
1429 struct aic_scb *scb; local
[all...]
/freebsd-9.3-release/sys/net/
H A Dif_epair.c709 struct epair_softc *sca, *scb; local
722 scb = (struct epair_softc *)params;
723 ifp = scb->ifp;
731 strlcpy(name, scb->ifp->if_xname, len);
778 scb = malloc(sizeof(struct epair_softc), M_EPAIR, M_WAITOK | M_ZERO);
779 EPAIR_REFCOUNT_INIT(&scb->refcount, 1);
780 scb->ifp = if_alloc(IFT_ETHER);
781 if (scb->ifp == NULL) {
782 free(scb, M_EPAIR);
792 sca->oifp = scb
884 struct epair_softc *sca, *scb; local
[all...]
/freebsd-9.3-release/sys/dev/ie/
H A Dif_ie.c216 * sizeof(scb) == 2+2+2+2+2+2+2+2 == 16
340 sc->scb->ie_command = sc->scb->ie_status & mask;
364 status = sc->scb->ie_status;
405 if ((status = sc->scb->ie_status) & IE_ST_WHENCE)
435 sc->scb->ie_err_crc +
436 sc->scb->ie_err_align +
437 sc->scb->ie_err_resource +
438 sc->scb->ie_err_overrun;
439 sc->scb
1019 volatile struct ie_sys_ctl_block *scb; local
1493 volatile struct ie_sys_ctl_block *scb = sc->scb; local
[all...]
H A Dif_ievar.h55 volatile struct ie_sys_ctl_block *scb; member in struct:ie_softc
/freebsd-9.3-release/sys/rpc/rpcsec_gss/
H A Dsvc_rpcsec_gss.c195 struct svc_rpc_gss_callback *scb; local
197 scb = mem_alloc(sizeof(struct svc_rpc_gss_callback));
198 if (!scb) {
202 scb->cb_callback = *cb;
204 SLIST_INSERT_HEAD(&svc_rpc_gss_callbacks, scb, cb_link);
213 struct svc_rpc_gss_callback *scb; local
216 SLIST_FOREACH(scb, &svc_rpc_gss_callbacks, cb_link) {
217 if (scb->cb_callback.program == cb->program
218 && scb->cb_callback.version == cb->version
219 && scb
1083 struct svc_rpc_gss_callback *scb; local
[all...]

Completed in 291 milliseconds

12