/src/usr.sbin/lastlogin/ |
lastlogin.c | 484 struct output **outs; local in function:sort_and_output_stack 493 outs = malloc(sizeof(*outs) * num); 494 if (!outs) 497 outs[i] = tmpo; 499 mergesort(outs, num, sizeof(*outs), comparelog); 502 output_record(outs[i]);
|
/src/sys/netinet/ |
sctp_timer.c | 695 struct sctp_stream_out *outs; local in function:sctp_move_all_chunks_to_alt 708 TAILQ_FOREACH(outs, &asoc->out_wheel, next_spoke) { 710 TAILQ_FOREACH(chk, &outs->outqueue, sctp_next) { 1194 struct sctp_stream_out *outs; local in function:sctp_audit_stream_queues_for_size 1212 TAILQ_FOREACH(outs, &stcb->asoc.out_wheel, next_spoke) { 1213 if (!TAILQ_EMPTY(&outs->outqueue)) { 1214 TAILQ_FOREACH(chk, &outs->outqueue, sctp_next) {
|
sctp_indata.c | 4040 struct sctp_stream_out *outs; local in function:sctp_handle_sack 4041 TAILQ_FOREACH(outs, &asoc->out_wheel, next_spoke) { 4042 if (!TAILQ_EMPTY(&outs->outqueue)) {
|
sctp_pcb.c | 3122 struct sctp_stream_out *outs; local in function:sctp_free_assoc 3123 outs = TAILQ_FIRST(&asoc->out_wheel); 3124 TAILQ_REMOVE(&asoc->out_wheel, outs, next_spoke); 3126 chk = TAILQ_FIRST(&outs->outqueue); 3128 TAILQ_REMOVE(&outs->outqueue, chk, sctp_next); 3140 chk = TAILQ_FIRST(&outs->outqueue); 3142 outs = TAILQ_FIRST(&asoc->out_wheel); 3248 /* the stream outs */
|
sctp_usrreq.c | 746 struct sctp_stream_out *outs; local in function:sctp_disconnect 747 TAILQ_FOREACH(outs, &asoc->out_wheel, 749 if (!TAILQ_EMPTY(&outs->outqueue)) { 846 struct sctp_stream_out *outs; local in function:sctp_shutdown 847 TAILQ_FOREACH(outs, &asoc->out_wheel, next_spoke) { 848 if (!TAILQ_EMPTY(&outs->outqueue)) {
|
sctp_input.c | 186 struct sctp_stream_out *outs; local in function:sctp_process_init 195 outs = &asoc->strmout[i]; 196 chk = TAILQ_FIRST(&outs->outqueue); 198 TAILQ_REMOVE(&outs->outqueue, chk, 216 chk = TAILQ_FIRST(&outs->outqueue); 581 struct sctp_stream_out *outs; local in function:sctp_handle_shutdown 582 TAILQ_FOREACH(outs, &asoc->out_wheel, next_spoke) { 583 if (!TAILQ_EMPTY(&outs->outqueue)) {
|
sctputil.c | 2570 struct sctp_stream_out *outs; local in function:sctp_report_all_outbound 2579 TAILQ_FOREACH(outs, &asoc->out_wheel, next_spoke) { 2581 chk = TAILQ_FIRST(&outs->outqueue); 2584 TAILQ_REMOVE(&outs->outqueue, chk, sctp_next); 2600 chk = TAILQ_FIRST(&outs->outqueue);
|
sctp_output.c | 4516 struct sctp_stream_out *outs; local in function:sctp_msg_append 4517 TAILQ_FOREACH(outs, &asoc->out_wheel, next_spoke) { 4518 if (!TAILQ_EMPTY(&outs->outqueue)) { 9736 struct sctp_stream_out *outs; local in function:sctp_copy_it_in 9737 TAILQ_FOREACH(outs, &asoc->out_wheel, next_spoke) { 9738 if (!TAILQ_EMPTY(&outs->outqueue)) {
|
/src/sys/netinet6/ |
sctp6_usrreq.c | 725 struct sctp_stream_out *outs; local in function:sctp6_disconnect 726 TAILQ_FOREACH(outs, &asoc->out_wheel, 728 if (!TAILQ_EMPTY(&outs->outqueue)) {
|
/src/common/lib/libx86emu/ |
x86emu.c | 170 static void outs (struct X86EMU *, int size); 1643 outs(emu, 4); 1645 outs(emu, 2); 4404 outs(emu, 1); 8002 outs(struct X86EMU *emu, int size) function in typeref:typename:void
|