Searched refs:aArgs (Results 1 – 6 of 6) sorted by relevance
/hal_espressif-3.6.0/examples/openthread/ot_cli/main/ |
D | esp_ot_iperf.c | 21 void esp_ot_process_iperf(void *aContext, uint8_t aArgsLength, char *aArgs[]) in esp_ot_process_iperf() argument 47 if (strcmp(aArgs[i], "-c") == 0) { in esp_ot_process_iperf() 51 cfg.destination_ip6 = aArgs[i]; in esp_ot_process_iperf() 53 } else if (strcmp(aArgs[i], "-s") == 0) { in esp_ot_process_iperf() 56 } else if (strcmp(aArgs[i], "-V") == 0) { in esp_ot_process_iperf() 58 } else if (strcmp(aArgs[i], "-u") == 0) { in esp_ot_process_iperf() 61 } else if (strcmp(aArgs[i], "-p") == 0) { in esp_ot_process_iperf() 64 cfg.sport = atoi(aArgs[i]); in esp_ot_process_iperf() 68 cfg.dport = atoi(aArgs[i]); in esp_ot_process_iperf() 72 } else if (strcmp(aArgs[i], "-i") == 0) { in esp_ot_process_iperf() [all …]
|
D | esp_ot_tcp_socket.c | 140 void esp_ot_process_tcp_server(void *aContext, uint8_t aArgsLength, char *aArgs[]) in esp_ot_process_tcp_server() argument 144 (void)(*aArgs); in esp_ot_process_tcp_server() 148 void esp_ot_process_tcp_client(void *aContext, uint8_t aArgsLength, char *aArgs[]) in esp_ot_process_tcp_client() argument 155 xTaskCreate(tcp_socket_client_task, "ot_tcp_socket_client", 4096, aArgs[0], 4, NULL); in esp_ot_process_tcp_client()
|
D | esp_ot_tcp_socket.h | 20 void esp_ot_process_tcp_server(void *aContext, uint8_t aArgsLength, char *aArgs[]); 26 void esp_ot_process_tcp_client(void *aContext, uint8_t aArgsLength, char *aArgs[]);
|
D | esp_ot_udp_socket.h | 20 void esp_ot_process_udp_server(void *aContext, uint8_t aArgsLength, char *aArgs[]); 26 void esp_ot_process_udp_client(void *aContext, uint8_t aArgsLength, char *aArgs[]);
|
D | esp_ot_udp_socket.c | 123 void esp_ot_process_udp_server(void *aContext, uint8_t aArgsLength, char *aArgs[]) in esp_ot_process_udp_server() argument 130 void esp_ot_process_udp_client(void *aContext, uint8_t aArgsLength, char *aArgs[]) in esp_ot_process_udp_client() argument 137 xTaskCreate(udp_socket_client_task, "ot_udp_socket_client", 4096, aArgs[0], 4, NULL); in esp_ot_process_udp_client()
|
D | esp_ot_iperf.h | 19 void esp_ot_process_iperf(void *aContext, uint8_t aArgsLength, char *aArgs[]);
|