/Zephyr-latest/tests/net/tcp/src/ |
D | main.c | 126 static void handle_client_test(sa_family_t af, struct tcphdr *th); 127 static void handle_server_test(sa_family_t af, struct tcphdr *th); 129 static void handle_syn_rst_ack(sa_family_t af, struct tcphdr *th); 130 static void handle_client_fin_wait_2_test(sa_family_t af, struct tcphdr *th); 131 static void handle_client_fin_wait_2_failure_test(sa_family_t af, struct tcphdr *th); 132 static void handle_client_closing_test(sa_family_t af, struct tcphdr *th); 133 static void handle_client_closing_failure_test(sa_family_t af, struct tcphdr *th); 134 static void handle_data_fin1_test(sa_family_t af, struct tcphdr *th); 135 static void handle_data_during_fin1_test(sa_family_t af, struct tcphdr *th); 137 static void handle_server_rst_on_closed_port(sa_family_t af, struct tcphdr *th); [all …]
|
/Zephyr-latest/drivers/pinctrl/ |
D | pinctrl_gd32_af.c | 80 uint32_t port, pin_num, af, mode; in pinctrl_configure_pin() local 89 af = GD32_AF_GET(pin); in pinctrl_configure_pin() 94 if (af != GD32_ANALOG) { in pinctrl_configure_pin() 96 gpio_af_set(port, af, pin_num); in pinctrl_configure_pin()
|
/Zephyr-latest/subsys/net/ip/ |
D | tp.c | 407 static struct net_pkt *tp_output_pkt_alloc(sa_family_t af, in tp_output_pkt_alloc() argument 418 af, IPPROTO_UDP, K_NO_WAIT); in tp_output_pkt_alloc() 429 void _tp_output(sa_family_t af, struct net_if *iface, void *data, in _tp_output() argument 432 struct net_pkt *pkt = tp_output_pkt_alloc(af, iface, data_len, in _tp_output() 580 void tp_out(sa_family_t af, struct net_if *iface, const char *msg, in tp_out() argument 596 tp_output(af, iface, buf, json_len); in tp_out()
|
D | tp.h | 119 void _tp_output(sa_family_t af, struct net_if *iface, void *data, 160 void tp_out(sa_family_t af, struct net_if *iface, const char *msg,
|
D | net_private.h | 191 char *net_sprint_addr(sa_family_t af, const void *addr);
|
D | utils.c | 30 char *net_sprint_addr(sa_family_t af, const void *addr) in net_sprint_addr() argument 37 return net_addr_ntop(af, addr, s, NET_IPV6_ADDR_LEN); in net_sprint_addr()
|
D | tcp.c | 175 static size_t tcp_endpoint_len(sa_family_t af) in tcp_endpoint_len() argument 177 return (af == AF_INET) ? sizeof(struct sockaddr_in) : in tcp_endpoint_len() 2395 sa_family_t af = net_pkt_family(pkt); in tcp_conn_new() local 2399 ret = net_context_get(af, SOCK_STREAM, IPPROTO_TCP, &context); in tcp_conn_new() 2432 net_sin_ptr(&context->local)->sin_family = af; in tcp_conn_new() 2485 ret = net_conn_register(IPPROTO_TCP, af, in tcp_conn_new()
|
/Zephyr-latest/subsys/net/lib/coap/ |
D | coap_server.c | 367 uint8_t af; in coap_service_start() local 395 af = AF_INET6; in coap_service_start() 403 af = AF_INET; in coap_service_start() 410 af = AF_INET6; in coap_service_start() 416 af = AF_INET; in coap_service_start() 426 service->data->sock_fd = zsock_socket(af, SOCK_DGRAM, IPPROTO_UDP); in coap_service_start() 452 if (af == AF_INET6) { in coap_service_start()
|
/Zephyr-latest/subsys/net/lib/http/ |
D | http_server_core.c | 80 int fd, af, i; in http_server_init() local 119 af = AF_INET6; in http_server_init() 126 af = AF_INET; in http_server_init() 133 af = AF_INET6; in http_server_init() 139 af = AF_INET; in http_server_init() 159 fd = zsock_socket(af, SOCK_STREAM, proto); in http_server_init()
|
/Zephyr-latest/drivers/counter/ |
D | maxim_ds3231.c | 672 int af = check_handled_alarms(ds3231); in alarm_worker() local 674 while (af > 0) { in alarm_worker() 678 if ((af & (MAXIM_DS3231_ALARM1 << id)) == 0) { in alarm_worker() 717 af = check_handled_alarms(ds3231); in alarm_worker() 722 if (af < 0) { in alarm_worker() 727 LOG_DBG("ALARM %02x at %u latency %u", af, data->isw_syncclock, in alarm_worker()
|
/Zephyr-latest/dts/arm/gd/gd32f3x0/ |
D | gd32f3x0.dtsi | 121 compatible = "gd,gd32-pinctrl-af";
|
/Zephyr-latest/dts/arm/gd/gd32l23x/ |
D | gd32l23x.dtsi | 121 compatible = "gd,gd32-pinctrl-af";
|
/Zephyr-latest/boards/gd/gd32f350r_eval/doc/ |
D | index.rst | 57 - :dtcompatible:`gd,gd32-pinctrl-af`
|
/Zephyr-latest/boards/gd/gd32l233r_eval/doc/ |
D | index.rst | 62 - :dtcompatible:`gd,gd32-pinctrl-af`
|
/Zephyr-latest/boards/gd/gd32a503v_eval/doc/ |
D | index.rst | 70 - :dtcompatible:`gd,gd32-pinctrl-af`
|
/Zephyr-latest/dts/arm/gd/gd32a50x/ |
D | gd32a50x.dtsi | 216 compatible = "gd,gd32-pinctrl-af";
|
/Zephyr-latest/boards/st/stm32f769i_disco/doc/ |
D | index.rst | 34 - Power Over Ethernet based on IEEE 802.3af (Powered Device, 48 V to 5 V, 3 W)
|
/Zephyr-latest/drivers/modem/ |
D | hl7800.c | 5776 int af; in configure_TCP_socket() local 5784 af = MDM_HL7800_SOCKET_AF_IPV6; in configure_TCP_socket() 5787 af = MDM_HL7800_SOCKET_AF_IPV4; in configure_TCP_socket() 5796 hl7800_sprint_ip_addr(&sock->dst), dst_port, af, restore_on_boot); in configure_TCP_socket() 5812 int af; in configure_UDP_socket() local 5822 af = MDM_HL7800_SOCKET_AF_IPV4; in configure_UDP_socket() 5824 af = MDM_HL7800_SOCKET_AF_IPV6; in configure_UDP_socket() 5829 snprintk(cmd, sizeof(cmd), "AT+KUDPCFG=1,0,,,,,%d,%d", af, restore_on_boot); in configure_UDP_socket()
|
/Zephyr-latest/tests/net/socket/tcp/src/ |
D | main.c | 2104 static void test_ioctl_fionread_setup(int af, int fd[3]) in test_ioctl_fionread_setup() argument 2116 switch (af) { in test_ioctl_fionread_setup() 2146 static void test_ioctl_fionread_common(int af) in test_ioctl_fionread_common() argument 2158 test_ioctl_fionread_setup(af, fd); in test_ioctl_fionread_common()
|
/Zephyr-latest/dts/arm/gd/gd32f4xx/ |
D | gd32f4xx.dtsi | 293 compatible = "gd,gd32-pinctrl-af";
|
/Zephyr-latest/samples/modules/tflite-micro/hello_world/train/ |
D | train_hello_world_model.ipynb | 2874 …WwXkS9FZJWIWDtjGs3aLWu36mu34n4+JonIP/36jvLbqP/126FfxR0fEJGbReQD/719SkS+Hbf/af/9/Mr/rE9Ien9misgLfr3…
|