Home
last modified time | relevance | path

Searched refs:actual_status (Results 1 – 25 of 468) sorted by relevance

12345678910>>...19

/NetX-Duo-v6.2.1/common/src/
Dnxe_ip_status_check.c79 UINT _nxe_ip_status_check(NX_IP *ip_ptr, ULONG needed_status, ULONG *actual_status, ULONG wait_opt… in _nxe_ip_status_check() argument
86 if ((ip_ptr == NX_NULL) || (ip_ptr -> nx_ip_id != NX_IP_ID) || (actual_status == NX_NULL)) in _nxe_ip_status_check()
103 status = _nx_ip_status_check(ip_ptr, needed_status, actual_status, wait_option); in _nxe_ip_status_check()
Dnxe_ip_interface_status_check.c81 ULONG *actual_status, ULONG wait_option) in _nxe_ip_interface_status_check() argument
88 if ((ip_ptr == NX_NULL) || (ip_ptr -> nx_ip_id != NX_IP_ID) || (actual_status == NX_NULL)) in _nxe_ip_interface_status_check()
115 …status = _nx_ip_interface_status_check(ip_ptr, interface_index, needed_status, actual_status, wai… in _nxe_ip_interface_status_check()
Dnx_ip_status_check.c76 ULONG *actual_status, ULONG wait_option) in _nx_ip_status_check() argument
78 return(_nx_ip_interface_status_check(ip_ptr, 0, needed_status, actual_status, wait_option)); in _nx_ip_status_check()
/NetX-Duo-v6.2.1/samples/
Ddemo_netx_auto_ip.c160 ULONG actual_status; in thread_0_entry() local
170 …status = nx_ip_status_check(&ip_0, NX_IP_ADDRESS_RESOLVED, &actual_status, 10 * NX_IP_PERIODIC_RA… in thread_0_entry()
241 ULONG actual_status; in thread_1_entry() local
251 …status = nx_ip_status_check(&ip_1, NX_IP_ADDRESS_RESOLVED, &actual_status, 10 * NX_IP_PERIODIC_RA… in thread_1_entry()
Ddemo_netxduo_multihome_dhcp_client.c155 UINT actual_status; in client_thread_entry() local
227 …nx_ip_interface_status_check(&client_ip, 0, NX_IP_ADDRESS_RESOLVED, (ULONG *)&actual_status, NX_WA… in client_thread_entry()
230 …nx_ip_interface_status_check(&client_ip, 1, NX_IP_ADDRESS_RESOLVED, (ULONG *)&actual_status, NX_WA… in client_thread_entry()
Ddemo_netx_secure_tls.c467 ULONG actual_status; in tls_client_thread_entry() local
478 status = nx_ip_status_check(&client_ip, NX_IP_INITIALIZE_DONE, &actual_status, in tls_client_thread_entry()
611 ULONG actual_status; in tls_server_thread_entry() local
620 status = nx_ip_status_check(&server_ip, NX_IP_INITIALIZE_DONE, &actual_status, in tls_server_thread_entry()
/NetX-Duo-v6.2.1/test/regression/netxduo_test/
Dnetx_rarp_multiple_interfaces_test.c106 ULONG actual_status; in ntest_0_entry() local
135 …status = nx_ip_interface_status_check(&ip_0, 0, NX_IP_ADDRESS_RESOLVED, &actual_status, 2 * NX_IP… in ntest_0_entry()
138 if ((status != NX_SUCCESS) || (actual_status != NX_IP_ADDRESS_RESOLVED)) in ntest_0_entry()
146 …status = nx_ip_interface_status_check(&ip_0, 1, NX_IP_ADDRESS_RESOLVED, &actual_status, 2 * NX_IP… in ntest_0_entry()
Dnetx_ip_interface_detachment_gateway_test.c75 ULONG actual_status; in ntest_0_entry() local
88 status = nx_ip_status_check(&ip_0, NX_IP_INITIALIZE_DONE, &actual_status, NX_IP_PERIODIC_RATE); in ntest_0_entry()
Dnetx_ip_interface_detachment_tcp_connection_test.c126 ULONG actual_status; in ntest_0_entry() local
138 status = nx_ip_status_check(&ip_0, NX_IP_INITIALIZE_DONE, &actual_status, NX_IP_PERIODIC_RATE); in ntest_0_entry()
238 ULONG actual_status; in ntest_1_entry() local
241 status = nx_ip_status_check(&ip_1, NX_IP_INITIALIZE_DONE, &actual_status, NX_IP_PERIODIC_RATE); in ntest_1_entry()
Dnetx_ip_link_status_test2.c224 ULONG actual_status; in thread_0_entry() local
233 nx_ip_status_check(&ip_0, NX_IP_INITIALIZE_DONE, &actual_status, NX_WAIT_FOREVER); in thread_0_entry()
357 ULONG actual_status; in thread_1_and_2_entry() local
360 nx_ip_status_check(&ip_1, NX_IP_INITIALIZE_DONE, &actual_status, NX_WAIT_FOREVER); in thread_1_and_2_entry()
Dnetx_ip_nxe_api_test.c135 ULONG actual_status; in thread_0_entry() local
1385 …status = nx_ip_interface_status_check(NX_NULL, 0, NX_IP_RARP_COMPLETE, &actual_status, NX_NO_WAIT); in thread_0_entry()
1399 …status = nx_ip_interface_status_check(&invalid_ip, 0, NX_IP_RARP_COMPLETE, &actual_status, NX_NO_W… in thread_0_entry()
1421 …e_status_check(&ip_0, NX_MAX_PHYSICAL_INTERFACES, NX_IP_RARP_COMPLETE, &actual_status, NX_NO_WAIT); in thread_0_entry()
1432 … status = nx_ip_interface_status_check(&ip_0, 1, NX_IP_RARP_COMPLETE, &actual_status, NX_NO_WAIT); in thread_0_entry()
1443 status = nx_ip_interface_status_check(&ip_0, 0, 0x8000, &actual_status, NX_NO_WAIT); in thread_0_entry()
1651 status = nx_ip_status_check(NX_NULL, NX_IP_RARP_COMPLETE, &actual_status, NX_NO_WAIT); in thread_0_entry()
1665 status = nx_ip_status_check(&invalid_ip, NX_IP_RARP_COMPLETE, &actual_status, NX_NO_WAIT); in thread_0_entry()
1687 status = nx_ip_status_check(&ip_0, 0x8000, &actual_status, NX_NO_WAIT); in thread_0_entry()
/NetX-Duo-v6.2.1/test/regression/bsd_test/
Dnetx_bsd_tcp_clients_share_port_test.c203 ULONG actual_status; in thread_server_entry() local
219 …status = nx_ip_status_check(&bsd_ip_server, NX_IP_INITIALIZE_DONE, &actual_status, NX_IP_PERIODIC… in thread_server_entry()
336 ULONG actual_status; in thread_server6_entry() local
353 …status = nx_ip_status_check(&bsd_ip_server, NX_IP_INITIALIZE_DONE, &actual_status, NX_IP_PERIODIC… in thread_server6_entry()
525 ULONG actual_status; in thread_client6_entry() local
535 …status = nx_ip_status_check(&bsd_ip_client, NX_IP_INITIALIZE_DONE, &actual_status, NX_IP_PERIODIC… in thread_client6_entry()
711 ULONG actual_status; in thread_client_entry() local
720 …status = nx_ip_status_check(&bsd_ip_client, NX_IP_INITIALIZE_DONE, &actual_status, NX_IP_PERIODIC… in thread_client_entry()
Dnetx_bsd_tcp_servers_share_port_test.c195 ULONG actual_status; in thread_server_entry() local
216 …status = nx_ip_status_check(&bsd_ip_server, NX_IP_INITIALIZE_DONE, &actual_status, NX_IP_PERIODIC… in thread_server_entry()
402 ULONG actual_status; in thread_server6_entry() local
425 …status = nx_ip_status_check(&bsd_ip_server, NX_IP_INITIALIZE_DONE, &actual_status, NX_IP_PERIODIC… in thread_server6_entry()
808 ULONG actual_status; in thread_client_entry() local
817 …status = nx_ip_status_check(&bsd_ip_server, NX_IP_INITIALIZE_DONE, &actual_status, NX_IP_PERIODIC… in thread_client_entry()
/NetX-Duo-v6.2.1/test/regression/smtp_test/
Dnetx_smtp_abnormal_packet_test.c252 ULONG actual_status; in thread_0_entry() local
266 status = nx_ip_status_check(&client_ip, NX_IP_INITIALIZE_DONE, &actual_status, 100); in thread_0_entry()
328 ULONG actual_status; in thread_1_entry() local
340 status = nx_ip_status_check(&server_ip, NX_IP_INITIALIZE_DONE, &actual_status, 100); in thread_1_entry()
Dnetx_smtp_invalid_release_test.c252 ULONG actual_status; in thread_0_entry() local
271 status = nx_ip_status_check(&client_ip, NX_IP_INITIALIZE_DONE, &actual_status, 100); in thread_0_entry()
329 ULONG actual_status; in thread_1_entry() local
345 status = nx_ip_status_check(&server_ip, NX_IP_INITIALIZE_DONE, &actual_status, 100); in thread_1_entry()
Dnetx_smtp_auth_none_test.c252 ULONG actual_status; in thread_0_entry() local
269 status = nx_ip_status_check(&client_ip, NX_IP_INITIALIZE_DONE, &actual_status, 100); in thread_0_entry()
332 ULONG actual_status; in thread_1_entry() local
348 status = nx_ip_status_check(&server_ip, NX_IP_INITIALIZE_DONE, &actual_status, 100); in thread_1_entry()
Dnetx_smtp_auth_logon_function_test.c256 ULONG actual_status; in thread_0_entry() local
275 status = nx_ip_status_check(&client_ip, NX_IP_INITIALIZE_DONE, &actual_status, 100); in thread_0_entry()
341 ULONG actual_status; in thread_1_entry() local
357 status = nx_ip_status_check(&server_ip, NX_IP_INITIALIZE_DONE, &actual_status, 100); in thread_1_entry()
Dnetx_smtp_auth_no_type_function_test.c253 ULONG actual_status; in thread_0_entry() local
272 status = nx_ip_status_check(&client_ip, NX_IP_INITIALIZE_DONE, &actual_status, 100); in thread_0_entry()
338 ULONG actual_status; in thread_1_entry() local
354 status = nx_ip_status_check(&server_ip, NX_IP_INITIALIZE_DONE, &actual_status, 100); in thread_1_entry()
Dnetx_smtp_auth_no_type_test.c253 ULONG actual_status; in thread_0_entry() local
272 status = nx_ip_status_check(&client_ip, NX_IP_INITIALIZE_DONE, &actual_status, 100); in thread_0_entry()
338 ULONG actual_status; in thread_1_entry() local
354 status = nx_ip_status_check(&server_ip, NX_IP_INITIALIZE_DONE, &actual_status, 100); in thread_1_entry()
Dnetx_smtp_basic_function_test.c253 ULONG actual_status; in thread_0_entry() local
272 status = nx_ip_status_check(&client_ip, NX_IP_INITIALIZE_DONE, &actual_status, 100); in thread_0_entry()
338 ULONG actual_status; in thread_1_entry() local
354 status = nx_ip_status_check(&server_ip, NX_IP_INITIALIZE_DONE, &actual_status, 100); in thread_1_entry()
/NetX-Duo-v6.2.1/test/regression/nx_secure_test/
Dnx_secure_tls_serverhello_extension_test.c170 ULONG actual_status; in ntest_0_entry() local
177 status = nx_ip_status_check(&ip_0, NX_IP_INITIALIZE_DONE, &actual_status, NX_IP_PERIODIC_RATE); in ntest_0_entry()
Dnx_secure_tls_metadata_size_test.c102 ULONG actual_status; in ntest_0_entry() local
118 status = nx_ip_status_check(&ip_0, NX_IP_INITIALIZE_DONE, &actual_status, NX_IP_PERIODIC_RATE); in ntest_0_entry()
Dnx_secure_tls_clienthello_extension_test.c161 ULONG actual_status; in ntest_0_entry() local
168 status = nx_ip_status_check(&ip_0, NX_IP_INITIALIZE_DONE, &actual_status, NX_IP_PERIODIC_RATE); in ntest_0_entry()
/NetX-Duo-v6.2.1/test/regression/mdns_test/
Dnetx_mdns_buffer_size_test.c103 ULONG actual_status; in ntest_0_entry() local
110 status = nx_ip_status_check(&ip_0, NX_IP_INITIALIZE_DONE, &actual_status, 100); in ntest_0_entry()
Dnetx_mdns_txt_test.c113 ULONG actual_status; in ntest_0_entry() local
118 status = nx_ip_status_check(&ip_0, NX_IP_INITIALIZE_DONE, &actual_status, 100); in ntest_0_entry()

12345678910>>...19