/src/bin/dd/ |
args.c | 132 char *oper, *arg; local in function:jcl 136 while ((oper = *++argv) != NULL) { 137 if ((oper = strdup(oper)) == NULL) { 143 if ((arg = strchr(oper, '=')) == NULL) { 144 errx(EXIT_FAILURE, "unknown operand %s", oper); 149 errx(EXIT_FAILURE, "no value specified for %s", oper); 152 tmp.name = oper;
|
/src/sys/netinet/ |
sctp_timer.c | 191 struct mbuf *oper; local in function:sctp_threshold_management 192 MGET(oper, M_DONTWAIT, MT_DATA); 193 if (oper) { 197 oper->m_len = sizeof(struct sctp_paramhdr) + 199 ph = mtod(oper, struct sctp_paramhdr *); 201 ph->param_length = htons(oper->m_len); 205 sctp_abort_an_association(inp, stcb, SCTP_FAILED_THRESHOLD, oper); 914 struct mbuf *oper; local in function:sctp_cookie_timer 915 MGET(oper, M_DONTWAIT, MT_DATA); 916 if (oper) { [all...] |
sctp_indata.c | 808 struct mbuf *oper; local in function:sctp_queue_data_to_stream 846 MGET(oper, M_DONTWAIT, MT_DATA); 847 if (oper) { 851 oper->m_len = sizeof(struct sctp_paramhdr) + 853 ph = mtod(oper, struct sctp_paramhdr *); 855 ph->param_length = htons(oper->m_len); 860 SCTP_PEER_FAULTY, oper); 1043 struct mbuf *oper; local in function:sctp_queue_data_for_reasm 1075 MGET(oper, M_DONTWAIT, MT_DATA); 1076 if (oper) { 1676 struct mbuf *oper; local in function:sctp_process_a_data_chunk 3556 struct mbuf *oper; local in function:sctp_handle_sack [all...] |
sctp_input.c | 3214 struct mbuf *oper; local in function:sctp_process_control 3216 oper = NULL; 3217 MGETHDR(oper, M_DONTWAIT, MT_HEADER); 3218 if (oper) { 3220 oper->m_data += 3223 mtod(oper, struct sctp_paramhdr *); 3228 sctp_queue_op_err(stcb, oper); 3490 struct mbuf *oper; local in function:sctp_process_control 3492 oper = NULL; 3493 MGETHDR(oper, M_DONTWAIT, MT_HEADER) [all...] |
/src/usr.sbin/ldpd/ |
mpls_routes.c | 587 char dest[50], gate[50], pref[50], oper[50]; local in function:check_route 735 strlcpy(oper, "added", 20); 738 strlcpy(oper, "delete", 20); 741 strlcpy(oper, "get", 20); 744 strlcpy(oper, "change", 20); 747 strlcpy(oper, "losing", 20); 750 strlcpy(oper, "redirect", 20); 753 strlcpy(oper, "new address", 20); 756 strlcpy(oper, "del address", 20); 759 snprintf(oper, sizeof(oper), "unknown 0x%X operation" [all...] |