/third_party/lwip/src/include/lwip/ |
D | ip.h | 95 u8_t tos; \ 111 u8_t tos; \ 255 #define ip_output(p, src, dest, ttl, tos, proto) \ argument 257 ip6_output(p, ip_2_ip6(src), ip_2_ip6(dest), ttl, tos, proto) : \ 258 ip4_output(p, ip_2_ip4(src), ip_2_ip4(dest), ttl, tos, proto)) 263 #define ip_output_if(p, src, dest, ttl, tos, proto, netif) \ argument 265 ip6_output_if(p, ip_2_ip6(src), ip_2_ip6(dest), ttl, tos, proto, netif) : \ 266 ip4_output_if(p, ip_2_ip4(src), ip_2_ip4(dest), ttl, tos, proto, netif)) 271 #define ip_output_if_src(p, src, dest, ttl, tos, proto, netif) \ argument 273 ip6_output_if_src(p, ip_2_ip6(src), ip_2_ip6(dest), ttl, tos, proto, netif) : \ [all …]
|
D | ip4.h | 81 u8_t ttl, u8_t tos, u8_t proto); 83 u8_t ttl, u8_t tos, u8_t proto, struct netif *netif); 85 u8_t ttl, u8_t tos, u8_t proto, struct netif *netif); 88 u8_t ttl, u8_t tos, u8_t proto, struct netif_hint *netif_hint); 92 u8_t ttl, u8_t tos, u8_t proto, struct netif *netif, void *ip_options, 95 u8_t ttl, u8_t tos, u8_t proto, struct netif *netif, void *ip_options,
|
/third_party/gstreamer/gstreamer/libs/gst/net/ |
D | gstnetutils.c | 65 gint tos, fd; in gst_net_utils_set_socket_tos() local 69 tos = (qos_dscp & 0x3f) << 2; in gst_net_utils_set_socket_tos() 71 if (setsockopt (fd, IPPROTO_IP, IP_TOS, &tos, sizeof (tos)) < 0) { in gst_net_utils_set_socket_tos() 78 if (setsockopt (fd, IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof (tos)) < 0) { in gst_net_utils_set_socket_tos()
|
/third_party/pulseaudio/src/pulsecore/ |
D | socket-util.c | 166 int tos = IPTOS_LOWDELAY; in pa_make_tcp_socket_low_delay() local 168 if (setsockopt(fd, SOL_IP, IP_TOS, (const void *) &tos, sizeof(tos)) < 0) in pa_make_tcp_socket_low_delay() 170 if (setsockopt(fd, IPPROTO_IP, IP_TOS, (const void *) &tos, sizeof(tos)) < 0) in pa_make_tcp_socket_low_delay() 184 int tos = IPTOS_LOWDELAY; in pa_make_udp_socket_low_delay() local 186 if (setsockopt(fd, SOL_IP, IP_TOS, (const void *) &tos, sizeof(tos)) < 0) in pa_make_udp_socket_low_delay() 188 if (setsockopt(fd, IPPROTO_IP, IP_TOS, (const void *) &tos, sizeof(tos)) < 0) in pa_make_udp_socket_low_delay()
|
/third_party/musl/porting/liteos_m/kernel/include/netinet/ |
D | ip.h | 32 uint8_t tos; member 119 #define IPTOS_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument 127 #define IPTOS_PREC(tos) ((tos) & IPTOS_PREC_MASK) argument
|
/third_party/musl/ndk_musl_include/netinet/ |
D | ip.h | 32 uint8_t tos; member 119 #define IPTOS_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument 127 #define IPTOS_PREC(tos) ((tos) & IPTOS_PREC_MASK) argument
|
/third_party/musl/porting/liteos_a/kernel/include/netinet/ |
D | ip.h | 32 uint8_t tos; member 119 #define IPTOS_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument 127 #define IPTOS_PREC(tos) ((tos) & IPTOS_PREC_MASK) argument
|
/third_party/musl/include/netinet/ |
D | ip.h | 32 uint8_t tos; member 119 #define IPTOS_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument 127 #define IPTOS_PREC(tos) ((tos) & IPTOS_PREC_MASK) argument
|
/third_party/musl/porting/uniproton/kernel/include/netinet/ |
D | ip.h | 32 uint8_t tos; member 119 #define IPTOS_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument 127 #define IPTOS_PREC(tos) ((tos) & IPTOS_PREC_MASK) argument
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/netinet/ |
D | ip.h | 32 uint8_t tos; member 119 #define IPTOS_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument 127 #define IPTOS_PREC(tos) ((tos) & IPTOS_PREC_MASK) argument
|
/third_party/lwip/src/core/ipv4/ |
D | ip4.c | 829 u8_t ttl, u8_t tos, argument 833 return ip4_output_if_opt(p, src, dest, ttl, tos, proto, netif, NULL, 0); 844 u8_t ttl, u8_t tos, u8_t proto, struct netif *netif, void *ip_options, argument 856 return ip4_output_if_opt_src(p, src_used, dest, ttl, tos, proto, netif, 859 return ip4_output_if_src(p, src_used, dest, ttl, tos, proto, netif); 869 u8_t ttl, u8_t tos, argument 873 return ip4_output_if_opt_src(p, src, dest, ttl, tos, proto, netif, NULL, 0); 882 u8_t ttl, u8_t tos, u8_t proto, struct netif *netif, void *ip_options, argument 962 IPH_TOS_SET(iphdr, tos); 964 chk_sum += PP_NTOHS(tos | (iphdr->_v_hl << 8)); [all …]
|
/third_party/libunwind/src/dwarf/ |
D | Gexpr.c | 249 unsigned int tos = 0; in dwarf_eval_expr() local 260 (((tos - 1) >= MAX_EXPR_STACK_SIZE) ? \ in dwarf_eval_expr() 261 stackerror++ : stack[--tos]); \ in dwarf_eval_expr() 274 if (tos >= MAX_EXPR_STACK_SIZE) \ in dwarf_eval_expr() 279 stack[tos++] = _x; \ in dwarf_eval_expr() 285 (((tos - 1 - (n)) >= MAX_EXPR_STACK_SIZE) ? \ in dwarf_eval_expr() 286 stackerror++ : stack[tos - 1 - (n)]); \ in dwarf_eval_expr()
|
/third_party/musl/porting/liteos_m/kernel/include/net/ |
D | route.h | 94 #define RT_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument
|
/third_party/musl/porting/uniproton/kernel/include/net/ |
D | route.h | 94 #define RT_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument
|
/third_party/musl/include/net/ |
D | route.h | 94 #define RT_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument
|
/third_party/musl/porting/liteos_a/kernel/include/net/ |
D | route.h | 94 #define RT_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument
|
/third_party/musl/ndk_musl_include/net/ |
D | route.h | 94 #define RT_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/net/ |
D | route.h | 94 #define RT_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument
|
/third_party/lwip/src/include/lwip/prot/ |
D | ip4.h | 120 #define IPH_TOS_SET(hdr, tos) (hdr)->_tos = (tos) argument
|
/third_party/vixl/src/aarch64/ |
D | macro-assembler-aarch64.cc | 2436 MemOperand tos(sp, -2 * static_cast<int>(kXRegSizeInBytes), PreIndex); in Emit() local 2438 stp(x29, x30, tos); in Emit() 2439 stp(x27, x28, tos); in Emit() 2440 stp(x25, x26, tos); in Emit() 2441 stp(x23, x24, tos); in Emit() 2442 stp(x21, x22, tos); in Emit() 2443 stp(x19, x20, tos); in Emit() 2445 stp(d14, d15, tos); in Emit() 2446 stp(d12, d13, tos); in Emit() 2447 stp(d10, d11, tos); in Emit() [all …]
|
/third_party/curl/tests/server/ |
D | sws.c | 1404 ssize_t tos[2] = {0, 0}; /* number of bytes to server */ in http_connect() local 1489 if(poll_server_wr[i] && tos[i]) { in http_connect() 1568 tos[DATA] = 0; in http_connect() 1591 len = sizeof(readclient[i]) - tos[i]; in http_connect() 1594 rc = sread(clientfd[i], &readclient[i][tos[i]], len); in http_connect() 1603 data_to_hex(&readclient[i][tos[i]], rc)); in http_connect() 1604 tos[i] += rc; in http_connect() 1647 if(tos[i] && FD_ISSET(serverfd[i], &output)) { in http_connect() 1649 rc = swrite(serverfd[i], readclient[i], tos[i]); in http_connect() 1660 if(tos[i] - rc) in http_connect() [all …]
|
/third_party/skia/third_party/externals/swiftshader/docs/ |
D | Subzero.md | 16 * Install Chrome's [depot_tools](http://dev.chromium.org/developers/how-tos/install-depot-tools). 17 * Run `mkdir nacl && cd nacl && fetch nacl` ([ref](http://www.chromium.org/nativeclient/how-tos/how…
|
/third_party/toybox/toys/pending/ |
D | traceroute.c | 56 long tos; 564 perror_exit("IP_TOS %ld failed ", TT.tos); in traceroute_main() 571 } else if (setsockopt(TT.snd_sock, IPPROTO_IPV6, IPV6_TCLASS, &TT.tos, in traceroute_main() 572 sizeof(TT.tos)) < 0) perror_exit("IPV6_TCLASS %ld failed ", TT.tos); in traceroute_main()
|
/third_party/skia/modules/canvaskit/future_apis/ |
D | ImageDecoder.md | 31 …https://www.chromium.org/developers/how-tos/run-chromium-with-flags](https://www.chromium.org/deve…
|
/third_party/lwip/ |
D | 0082-add-vlanid-in-netif.patch | 36 lpcb->tos = pcb->tos;
|