Searched refs:tc (Results 1 - 14 of 14) sorted by relevance

/darwin-on-arm/xnu/osfmk/kdp/ml/i386/
H A Dkdp_vm.c64 struct thread_command *tc; local
74 tc = (struct thread_command *) ((uintptr_t)buffer + hoffset);
75 tc->cmd = LC_THREAD;
76 tc->cmdsize = sizeof(struct thread_command) + kern_collectth_state_size();
/darwin-on-arm/xnu/bsd/kern/
H A Dtty_compat.c255 struct tchars *tc = (struct tchars *)data; local
259 cc[VINTR] = tc->t_intrc;
260 cc[VQUIT] = tc->t_quitc;
261 cc[VSTART] = tc->t_startc;
262 cc[VSTOP] = tc->t_stopc;
263 cc[VEOF] = tc->t_eofc;
264 cc[VEOL] = tc->t_brkc;
265 if (tc->t_brkc == -1)
409 struct tchars *tc = (struct tchars *)data; local
412 tc
[all...]
H A Dkern_core.c161 struct thread_command *tc; local
171 tc = (struct thread_command *) (header + hoffset);
172 tc->cmd = LC_THREAD;
173 tc->cmdsize = sizeof(struct thread_command)
H A Dkpi_socket.c521 u_int32_t tc; local
524 tc = SO_TC_VO;
526 tc = SO_TC_VI;
528 tc = SO_TC_BK;
530 tc = SO_TC_BE;
532 return (tc);
H A Duipc_mbuf2.c703 m_set_traffic_class(struct mbuf *m, mbuf_traffic_class_t tc) argument
705 u_int32_t val = MBUF_TC2SCVAL(tc); /* just the val portion */
H A Dkpi_mbuf.c1122 mbuf_set_traffic_class(mbuf_t m, mbuf_traffic_class_t tc) argument
1125 ((u_int32_t)tc >= MBUF_TC_MAX))
1128 return (m_set_traffic_class(m, tc));
/darwin-on-arm/xnu/osfmk/kdp/ml/x86_64/
H A Dkdp_vm.c64 struct thread_command *tc; local
74 tc = (struct thread_command *) ((uintptr_t)buffer + hoffset);
75 tc->cmd = LC_THREAD;
76 tc->cmdsize = (uint32_t)(sizeof(struct thread_command) + kern_collectth_state_size());
/darwin-on-arm/xnu/osfmk/kdp/ml/arm/
H A Dkdp_vm.c66 struct thread_command *tc; local
76 tc = (struct thread_command *) ((uintptr_t) buffer + hoffset);
77 tc->cmd = LC_THREAD;
78 tc->cmdsize = sizeof(struct thread_command) + kern_collectth_state_size();
/darwin-on-arm/xnu/bsd/net/
H A Dbpf.c1509 int tc; local
1511 bcopy(addr, &tc, sizeof (int));
1512 error = bpf_set_traffic_class(d, tc);
1753 bpf_set_traffic_class(struct bpf_d *d, int tc) argument
1757 if (!SO_VALID_TC(tc))
1760 d->bd_traffic_class = tc;
1766 bpf_set_packet_service_class(struct mbuf *m, int tc) argument
1771 VERIFY(SO_VALID_TC(tc));
1772 (void) m_set_service_class(m, so_tc2msc(tc));
H A Dkpi_interface.h1078 @param tc The service class.
1087 mbuf_svc_class_t tc, mbuf_t *packet);
1121 @param tc The service class.
1137 mbuf_svc_class_t tc, u_int32_t max, mbuf_t *first_packet,
/darwin-on-arm/xnu/bsd/netinet/
H A Din_tclass.c719 int tc; local
730 tc = *(int *)(void *)CMSG_DATA(cm);
731 msc = so_tc2msc(tc);
852 /* Assert because tc must have been valid */
997 so_tc2msc(int tc) argument
1001 switch (tc) {
H A Dip_input.c2778 int tc = m_get_traffic_class(m); local
2780 mp = sbcreatecontrol_mbuf((caddr_t) &tc, sizeof(tc),
/darwin-on-arm/xnu/bsd/sys/
H A Dkpi_mbuf.h1388 @tc The traffic class
1391 extern errno_t mbuf_set_traffic_class(mbuf_t mbuf, mbuf_traffic_class_t tc);
/darwin-on-arm/xnu/bsd/netinet6/
H A Dip6_input.c1511 int tc = m_get_traffic_class(m); local
1513 mp = sbcreatecontrol_mbuf((caddr_t) &tc, sizeof(tc),

Completed in 117 milliseconds