Home
last modified time | relevance | path

Searched refs:tos (Results 1 – 25 of 118) sorted by relevance

12345

/third_party/lwip/src/include/lwip/
Dip.h95 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 …]
Dip4.h81 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/
Dgstnetutils.c65 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/
Dsocket-util.c166 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/
Dip.h32 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/
Dip.h32 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/
Dip.h32 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/
Dip.h32 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/
Dip.h32 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/
Dip.h32 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/
Dip4.c829 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/
DGexpr.c249 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/
Droute.h94 #define RT_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument
/third_party/musl/porting/uniproton/kernel/include/net/
Droute.h94 #define RT_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument
/third_party/musl/include/net/
Droute.h94 #define RT_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument
/third_party/musl/porting/liteos_a/kernel/include/net/
Droute.h94 #define RT_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument
/third_party/musl/ndk_musl_include/net/
Droute.h94 #define RT_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument
/third_party/musl/porting/liteos_m_iccarm/kernel/include/net/
Droute.h94 #define RT_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument
/third_party/lwip/src/include/lwip/prot/
Dip4.h120 #define IPH_TOS_SET(hdr, tos) (hdr)->_tos = (tos) argument
/third_party/vixl/src/aarch64/
Dmacro-assembler-aarch64.cc2436 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/
Dsws.c1404 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/
DSubzero.md16 * 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/
Dtraceroute.c56 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/
DImageDecoder.md31 …https://www.chromium.org/developers/how-tos/run-chromium-with-flags](https://www.chromium.org/deve…
/third_party/lwip/
D0082-add-vlanid-in-netif.patch36 lpcb->tos = pcb->tos;

12345