Searched refs:uh (Results 1 - 19 of 19) sorted by relevance

/macosx-10.9.5/tcpdump-56/tcpdump/
H A Dprint-usb.c84 usb_header_print(const pcap_usb_header *uh) argument
88 switch(uh->transfer_type)
106 switch(uh->event_type)
121 direction = get_direction(uh->transfer_type, uh->event_type);
126 printf(" %d:%d:%d", uh->bus_id, uh->device_address, uh->endpoint_number & 0x7f);
H A DsctpHeader.h164 struct sctpChunkDesc uh; member in struct:sctpUnifiedInit
195 struct sctpChunkDesc uh; member in struct:sctpUnifiedSack
231 struct sctpChunkDesc uh; member in struct:sctpUnifiedAbort
236 struct sctpChunkDesc uh; member in struct:sctpUnifiedAbortLight
241 struct sctpChunkDesc uh; member in struct:sctpUnifiedAbortHeavy
254 struct sctpChunkDesc uh; member in struct:sctpUnifiedShutdown
268 struct sctpChunkDesc uh; member in struct:sctpUnifiedOpError
274 struct sctpChunkDesc uh; member in struct:sctpUnifiedStreamError
282 struct sctpChunkDesc uh; member in struct:staleCookieMsg
293 struct sctpChunkDesc uh; member in struct:sctpUnifiedSingleMsg
304 struct sctpChunkDesc uh; member in struct:sctpUnifiedDatagram
309 struct sctpChunkDesc uh; member in struct:sctpECN_echo
315 struct sctpChunkDesc uh; member in struct:sctpCWR
[all...]
H A Dprint-icmp6.c598 struct udphdr *uh; local
620 uh = (struct udphdr *)bp;
621 if (TTEST(uh->uh_dport)) {
623 return(uh);
/macosx-10.9.5/ntfs-83/kext/
H A Dntfs_usnjrnl.c67 USN_HEADER *uh; local
82 err = ntfs_page_map(max_ni, 0, &upl, &pl, (u8**)&uh, TRUE);
95 sle64_to_cpu(uh->journal_id),
97 sle64_to_cpu(uh->lowest_valid_usn),
100 uh->lowest_valid_usn = cpu_to_sle64(j_size);
101 uh->journal_id = stamp;
H A Dntfs_vfsops.c2433 USN_HEADER *uh; local
2523 err = ntfs_page_map(max_ni, 0, &upl, &pl, (u8**)&uh, FALSE);
2530 if (sle64_to_cpu(uh->allocation_delta) >
2531 sle64_to_cpu(uh->maximum_size)) {
2535 sle64_to_cpu(uh->allocation_delta),
2537 sle64_to_cpu(uh->maximum_size));
2563 if (sle64_to_cpu(uh->lowest_valid_usn) >= data_size) {
2564 if (sle64_to_cpu(uh->lowest_valid_usn) == data_size) {
2578 sle64_to_cpu(uh->lowest_valid_usn),
/macosx-10.9.5/bash-92/bash-3.2/examples/scripts.noah/
H A Dprompt.bash29 uh) PS1='\u@\h\$ ' ;;
/macosx-10.9.5/xnu-2422.115.4/bsd/netinet6/
H A Dudp6_usrreq.c244 struct udphdr *uh; local
267 uh = (struct udphdr *)(void *)((caddr_t)ip6 + off);
268 ulen = ntohs((u_short)uh->uh_ulen);
277 if (uh->uh_dport == 0) {
285 if (udp6_input_checksum(m, uh, off, ulen))
292 fromsa.sin6_port = uh->uh_sport;
329 udp_in6.sin6_port = uh->uh_sport;
367 if (in6p->in6p_lport != uh->uh_dport) {
402 in6p->in6p_fport != uh->uh_sport)) {
458 uh
580 struct udphdr uh; local
908 udp6_input_checksum(struct mbuf *m, struct udphdr *uh, int off, int ulen) argument
[all...]
H A Dipsec.c1197 struct udphdr uh; local
1241 m_copydata(m, off, sizeof(uh), (caddr_t)&uh);
1243 uh.uh_sport;
1245 uh.uh_dport;
1306 struct udphdr uh; local
1342 m_copydata(m, off, sizeof(uh), (caddr_t)&uh);
1343 ((struct sockaddr_in6 *)&spidx->src)->sin6_port = uh.uh_sport;
1344 ((struct sockaddr_in6 *)&spidx->dst)->sin6_port = uh
4572 struct udphdr *uh; local
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/netinet/
H A Dudp_usrreq.c282 struct udphdr *uh; local
341 uh = (struct udphdr *)(void *)((caddr_t)ip + iphlen);
344 if (uh->uh_dport == 0) {
349 KERNEL_DEBUG(DBG_LAYER_IN_BEG, uh->uh_dport, uh->uh_sport,
350 ip->ip_src.s_addr, ip->ip_dst.s_addr, uh->uh_ulen);
356 len = ntohs((u_short)uh->uh_ulen);
375 if (udp_input_checksum(m, uh, iphlen, len))
403 udp_in.sin_port = uh->uh_sport;
452 if (inp->inp_lport != uh
896 struct udphdr uh; local
2137 udp_input_checksum(struct mbuf *m, struct udphdr *uh, int off, int ulen) argument
[all...]
/macosx-10.9.5/network_cmds-433/alias/
H A Dalias_nbt.c231 struct udphdr * uh; local
237 uh = (struct udphdr *) ((char *) pip + (pip->ip_hl << 2));
238 pmax = (char *)uh + ntohs( uh->uh_ulen );
240 ndh = (NbtDataHeader *)((char *)uh + (sizeof (struct udphdr)));
270 if ( uh->uh_sum != 0 ) {
281 ADJUST_CHECKSUM(acc, uh->uh_sum);
649 struct udphdr * uh; local
662 uh = (struct udphdr *) ((char *) pip + (pip->ip_hl << 2));
663 nbtarg.uh_sum = &(uh
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/net/
H A Dpktap.c804 struct udphdr uh; local
807 sizeof(struct udphdr), &uh);
813 fport = uh.uh_sport;
814 lport = uh.uh_dport;
864 struct udphdr uh; local
867 sizeof(struct udphdr), &uh);
874 fport = uh.uh_sport;
875 lport = uh.uh_dport;
H A Dpf.c4776 struct udphdr *uh = pd->hdr.udp; local
4777 size_t plen = m->m_pkthdr.len - off - sizeof (*uh);
4779 if (ntohs(uh->uh_sport) == PF_IKE_PORT &&
4780 ntohs(uh->uh_dport) == PF_IKE_PORT &&
4784 m_copydata(m, off + sizeof (*uh), plen, &ike);
5014 struct udphdr *uh = pd->hdr.udp; local
5017 ntohs(uh->uh_sport) == PF_IKE_PORT &&
5018 ntohs(uh->uh_dport) == PF_IKE_PORT) {
6379 struct udphdr *uh = pd->hdr.udp; local
6390 key.ext.xport.port = uh
6899 struct udphdr uh; local
8260 struct udphdr uh; local
8850 struct udphdr uh; local
[all...]
/macosx-10.9.5/ruby-104/ruby/
H A Dvm.c2478 /* uh = {
2496 VALUE uh; local
2502 uh = rb_const_get(rb_cRubyVM, usage_hash);
2503 if ((ihash = rb_hash_aref(uh, INT2FIX(insn))) == Qnil) {
2505 HASH_ASET(uh, INT2FIX(insn), ihash);
2522 uh = rb_const_get(rb_cRubyVM, bigram_hash);
2523 if ((cv = rb_hash_aref(uh, bi)) == Qnil) {
2526 HASH_ASET(uh, bi, INT2FIX(FIX2INT(cv) + 1));
2536 VALUE uh; local
2544 uh
2567 VALUE uh; local
[all...]
/macosx-10.9.5/vim-53/src/
H A Dundo.c2989 u_header_T *uh; local
2991 for (uh = uhp; uh != NULL; uh = uh->uh_prev.ptr)
2993 uh->uh_flags |= UH_CHANGED;
2994 if (uh->uh_alt_next.ptr != NULL)
2995 u_unch_branch(uh->uh_alt_next.ptr); /* recursive */
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A Dregengine.inc236 /* uh-oh... we couldn't find a subexpression-level match */
469 default: /* uh oh */
668 default: /* uh oh */
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/sfio/
H A Dsftable.c391 else fp[n].argv.i = fp[n].argv.uh;
H A Dsfhdr.h713 ushort uh; member in union:__anon9319
H A Dsfvprintf.c559 else argv.i = argv.uh;
/macosx-10.9.5/emacs-92/emacs/leim/CXTERM-DIC/
H A DARRAY30.tit1184 uh\040 �� # ---> 7^6- 1

Completed in 658 milliseconds