Home
last modified time | relevance | path

Searched refs:params (Results 1 – 25 of 108) sorted by relevance

12345

/USBX-v6.2.1/support/windows_host_files/
DRNDIS_Template.inf82 HKR, NDI\params\NetworkAddress, ParamDesc, 0, %NetworkAddress%
83 HKR, NDI\params\NetworkAddress, type, 0, "edit"
84 HKR, NDI\params\NetworkAddress, LimitText, 0, "12"
85 HKR, NDI\params\NetworkAddress, UpperCase, 0, "1"
86 HKR, NDI\params\NetworkAddress, default, 0, " "
87 HKR, NDI\params\NetworkAddress, optional, 0, "1"
98 HKR, NDI\params\XPProperty, ParamDesc, 0, %Sample_Property%
99 HKR, NDI\params\XPProperty, type, 0, "edit"
100 HKR, NDI\params\XPProperty, LimitText, 0, "12"
101 HKR, NDI\params\XPProperty, UpperCase, 0, "1"
[all …]
/USBX-v6.2.1/test/regression/
Dux_test_race_condition_overrides.c20 UX_TEST_HOST_STACK_TRANSFER_REQUEST_PARAMS params = { transfer_request }; in _ux_host_stack_transfer_request() local
24 action = ux_test_action_handler(UX_TEST_HOST_STACK_TRANSFER_REQUEST, &params); in _ux_host_stack_transfer_request()
25 ux_test_do_action_before(&action, &params); in _ux_host_stack_transfer_request()
152 ux_test_do_action_after(&action, &params); in _ux_host_stack_transfer_request()
166 UX_TEST_HOST_STACK_TRANSFER_REQUEST_PARAMS params = { transfer_request }; in _ux_host_stack_interface_set() local
188 action = ux_test_action_handler(UX_TEST_HOST_STACK_INTERFACE_SET, &params); in _ux_host_stack_interface_set()
189 ux_test_do_action_before(&action, &params); in _ux_host_stack_interface_set()
Dux_test_dcd_sim_slave.c195 UX_TEST_OVERRIDE_UX_DCD_SIM_SLAVE_FUNCTION_PARAMS params = { dcd, function, parameter }; in _ux_test_dcd_sim_slave_function() local
200 ux_test_do_hooks_before(UX_TEST_OVERRIDE_UX_DCD_SIM_SLAVE_FUNCTION, &params); in _ux_test_dcd_sim_slave_function()
202 action = ux_test_action_handler(UX_TEST_OVERRIDE_UX_DCD_SIM_SLAVE_FUNCTION, &params); in _ux_test_dcd_sim_slave_function()
203 ux_test_do_action_before(&action, &params); in _ux_test_dcd_sim_slave_function()
219 ux_test_do_action_after(&action, &params); in _ux_test_dcd_sim_slave_function()
234 ux_test_do_hooks_after(UX_TEST_OVERRIDE_UX_DCD_SIM_SLAVE_FUNCTION, &params); in _ux_test_dcd_sim_slave_function()
Dux_test.c11 …handler_check(UX_TEST_ACTION *action, UX_TEST_FUNCTION usbx_function, void *params, UCHAR advance);
305 ULONG ux_test_do_hooks_before(UX_TEST_FUNCTION usbx_function, VOID *params) in ux_test_do_hooks_before() argument
315 action = ux_test_action_handler_check(list, usbx_function, params, UX_FALSE); in ux_test_do_hooks_before()
322 ux_test_do_action_before(&action, params); in ux_test_do_hooks_before()
328 VOID ux_test_do_hooks_after(UX_TEST_FUNCTION usbx_function, VOID *params) in ux_test_do_hooks_after() argument
337 action = ux_test_action_handler_check(list, usbx_function, params, UX_FALSE); in ux_test_do_hooks_after()
340 ux_test_do_action_after(&action, params); in ux_test_do_hooks_after()
606 VOID ux_test_do_action_before(UX_TEST_ACTION *action, VOID *params) in ux_test_do_action_before() argument
613 action->action_func(action, params); in ux_test_do_action_before()
618 VOID ux_test_do_action_after(UX_TEST_ACTION *action, VOID *params) in ux_test_do_action_after() argument
[all …]
Dux_test_hcd_sim_host.c221 UX_TEST_OVERRIDE_UX_HCD_SIM_HOST_ENTRY_PARAMS params = { hcd, function, parameter }; in _ux_test_hcd_sim_host_entry() local
226 action_taken = ux_test_do_hooks_before(UX_TEST_OVERRIDE_UX_HCD_SIM_HOST_ENTRY, &params); in _ux_test_hcd_sim_host_entry()
230 action = ux_test_action_handler(UX_TEST_OVERRIDE_UX_HCD_SIM_HOST_ENTRY, &params); in _ux_test_hcd_sim_host_entry()
231 ux_test_do_action_before(&action, &params); in _ux_test_hcd_sim_host_entry()
246 ux_test_do_action_after(&action, &params); in _ux_test_hcd_sim_host_entry()
260 ux_test_do_hooks_after(UX_TEST_OVERRIDE_UX_HCD_SIM_HOST_ENTRY, &params); in _ux_test_hcd_sim_host_entry()
Dux_device_class_dummy_printer.c29 _ux_utility_memory_copy(&printer->params, printer_params, sizeof(*printer_params)); in _ux_device_class_printer_initialize()
91 if (printer->params.instance_activate) in _ux_device_class_printer_activate()
93 printer->params.instance_activate(printer); in _ux_device_class_printer_activate()
107 if (printer->params.instance_deactivate) in _ux_device_class_printer_deactivate()
109 printer->params.instance_deactivate(printer); in _ux_device_class_printer_deactivate()
191 length = UX_MIN(length, printer->params.device_id_length + 2); in _ux_device_class_printer_control_request()
195 _ux_utility_memory_copy(data_ptr + 2, printer->params.device_id, length - 2); in _ux_device_class_printer_control_request()
Dusbx_ux_device_class_cdc_ecm_bulkout_thread_test.c9 static void count_error_callback(struct UX_TEST_ACTION_STRUCT *action, VOID *params) in count_error_callback() argument
11 UX_TEST_ERROR_CALLBACK_PARAMS *error = (UX_TEST_ERROR_CALLBACK_PARAMS *)params; in count_error_callback()
24 static void simulate_ip_header_error(struct UX_TEST_ACTION_STRUCT *action, VOID *params) in simulate_ip_header_error() argument
27 …OVERRIDE_UX_HCD_SIM_HOST_ENTRY_PARAMS *p = (UX_TEST_OVERRIDE_UX_HCD_SIM_HOST_ENTRY_PARAMS *)params; in simulate_ip_header_error()
Dusbx_ux_device_class_cdc_ecm_entry_test.c7 static void count_error_callback(struct UX_TEST_ACTION_STRUCT *action, VOID *params) in count_error_callback() argument
9 UX_TEST_ERROR_CALLBACK_PARAMS *error = (UX_TEST_ERROR_CALLBACK_PARAMS *)params; in count_error_callback()
Dux_device_class_dummy_hub.c63 _ux_utility_memory_copy(&hub->params, hub_params, sizeof(*hub_params)); in _ux_device_class_hub_initialize()
161 if (hub->params.instance_activate) in _ux_device_class_hub_activate()
163 hub->params.instance_activate(hub); in _ux_device_class_hub_activate()
181 if (hub->params.instance_deactivate) in _ux_device_class_hub_deactivate()
183 hub->params.instance_deactivate(hub); in _ux_device_class_hub_deactivate()
335 …quest->ux_slave_transfer_request_data_pointer, dummy_hub->params.descriptor, dummy_hub->params.des… in _ux_device_class_hub_control_request()
Dusbx_cdc_ecm_host_bulki_arm_err_dueto_link_dn_thread_wait_test.c24 static VOID suspend_cdc_ecm_thread_action_func(UX_TEST_ACTION *action, VOID *params) in suspend_cdc_ecm_thread_action_func() argument
36 VOID cdc_ecm_thread_suspend_action_func(UX_TEST_ACTION *action, VOID *params) in cdc_ecm_thread_suspend_action_func() argument
Dusbx_ux_device_class_cdc_ecm_interrupt_thread_test.c7 static void count_error_callback(struct UX_TEST_ACTION_STRUCT *action, VOID *params) in count_error_callback() argument
9 UX_TEST_ERROR_CALLBACK_PARAMS *error = (UX_TEST_ERROR_CALLBACK_PARAMS *)params; in count_error_callback()
Dusbx_msrc_81575_standalone_host_cdc_acm_allocated_enum_free_test.c38 … ux_test_hcd_entry_should_not_be_called(UX_TEST_ACTION *action, VOID *params);
39 … ux_test_hcd_entry_disconnect(UX_TEST_ACTION *action, VOID *params);
40 …OID ux_test_hcd_entry_set_cfg(UX_TEST_ACTION *action, VOID *params);
183 static VOID ux_test_on_cdc_acm_set_line_coding(UX_TEST_ACTION *action, VOID *params) in ux_test_on_cdc_acm_set_line_coding() argument
300 static VOID ux_test_hcd_entry_set_cfg(UX_TEST_ACTION *action, VOID *params) in ux_test_hcd_entry_set_cfg() argument
Dusbx_msrc_81574_standalone_host_hid_allocated_enum_free_test.c44 … ux_test_hcd_entry_should_not_be_called(UX_TEST_ACTION *action, VOID *params);
45 … ux_test_hcd_entry_disconnect(UX_TEST_ACTION *action, VOID *params);
46 …OID ux_test_hcd_entry_set_cfg(UX_TEST_ACTION *action, VOID *params);
217 static VOID ux_test_on_hid_get_report_descriptor(UX_TEST_ACTION *action, VOID *params) in ux_test_on_hid_get_report_descriptor() argument
332 static VOID ux_test_hcd_entry_set_cfg(UX_TEST_ACTION *action, VOID *params) in ux_test_hcd_entry_set_cfg() argument
Dusbx_storage_tests.c998 UX_TEST_OVERRIDE_UX_HCD_SIM_HOST_ENTRY_PARAMS *params = (UX_TEST_OVERRIDE_UX_HCD_SIM_HOST_ENTRY_PAR… in disconnect_host_and_slave_action_func() local
1202 UX_TEST_OVERRIDE_UX_DEVICE_MEDIA_READ_WRITE_FLUSH_PARAMS *params = (UX_TEST_OVERRIDE_UX_DEVICE_MEDI… in device_media_write_block_action_func() local
1251 UX_TEST_OVERRIDE_UX_DEVICE_MEDIA_READ_WRITE_FLUSH_PARAMS *params = (UX_TEST_OVERRIDE_UX_DEVICE_MEDI… in device_media_read_write_media_status_error_action_func() local
1254 *params->media_status = ~0; in device_media_read_write_media_status_error_action_func()
1260 UX_TEST_OVERRIDE_UX_DEVICE_MEDIA_STATUS_PARAMS *params = (UX_TEST_OVERRIDE_UX_DEVICE_MEDIA_STATUS_P… in device_media_status_error_action_func() local
1263 *params->media_status = ~0; in device_media_status_error_action_func()
1299 UX_TEST_OVERRIDE_UX_HCD_SIM_HOST_ENTRY_PARAMS *params = (UX_TEST_OVERRIDE_UX_HCD_SIM_HOST_ENTRY_P… in configuration_reset_action_func() local
1438 UX_TEST_OVERRIDE_UX_HCD_SIM_HOST_ENTRY_PARAMS *params = (UX_TEST_OVERRIDE_UX_HCD_SIM_HOST_ENTRY_P… in async_transfer_completion_code_error_action_func_do_after() local
1440 UX_TRANSFER *transfer = params->parameter; in async_transfer_completion_code_error_action_func_do_after()
1466 UX_TEST_OVERRIDE_UX_HCD_SIM_HOST_ENTRY_PARAMS *params = (UX_TEST_OVERRIDE_UX_HCD_SIM_HOST_ENTRY_P… in async_transfer_completion_code_success_action_func_do_before() local
[all …]
Dusbx_msrc_81572_standalone_host_printer_allocated_enum_free_test.c44 … ux_test_hcd_entry_should_not_be_called(UX_TEST_ACTION *action, VOID *params);
45 … ux_test_hcd_entry_disconnect(UX_TEST_ACTION *action, VOID *params);
46 …OID ux_test_hcd_entry_set_cfg(UX_TEST_ACTION *action, VOID *params);
189 static VOID ux_test_on_printer_get_device_id(UX_TEST_ACTION *action, VOID *params) in ux_test_on_printer_get_device_id() argument
304 static VOID ux_test_hcd_entry_set_cfg(UX_TEST_ACTION *action, VOID *params) in ux_test_hcd_entry_set_cfg() argument
Dusbx_msrc_81573_standalone_host_hub_allocated_enum_free_test.c44 … ux_test_hcd_entry_should_not_be_called(UX_TEST_ACTION *action, VOID *params);
45 … ux_test_hcd_entry_disconnect(UX_TEST_ACTION *action, VOID *params);
46 …OID ux_test_hcd_entry_set_cfg(UX_TEST_ACTION *action, VOID *params);
187 static VOID ux_test_on_hub_get_descriptor(UX_TEST_ACTION *action, VOID *params) in ux_test_on_hub_get_descriptor() argument
318 static VOID ux_test_hcd_entry_set_cfg(UX_TEST_ACTION *action, VOID *params) in ux_test_hcd_entry_set_cfg() argument
Dux_device_class_dummy_printer.h30 UX_DEVICE_CLASS_PRINTER_PARAMS params; member
Dusbx_ux_device_class_cdc_ecm_control_request_test.c8 static void count_error_callback(struct UX_TEST_ACTION_STRUCT *action, VOID *params) in count_error_callback() argument
10 UX_TEST_ERROR_CALLBACK_PARAMS *error = (UX_TEST_ERROR_CALLBACK_PARAMS *)params; in count_error_callback()
Dux_test_utility_sim.c76 static void ux_system_mutex_create_callback(UX_TEST_ACTION *action, VOID *params);
77 static void ux_system_mutex_get_callback(UX_TEST_ACTION *action, VOID *params);
78 static void ux_system_mutex_put_callback(UX_TEST_ACTION *action, VOID *params);
380 UX_TEST_OVERRIDE_TX_SEMAPHORE_GET_PARAMS params = { semaphore_ptr, wait_option }; in _tx_semaphore_get() local
385 ux_test_do_hooks_before(UX_TEST_OVERRIDE_TX_SEMAPHORE_GET, &params); in _tx_semaphore_get()
387 action = ux_test_action_handler(UX_TEST_OVERRIDE_TX_SEMAPHORE_GET, &params); in _tx_semaphore_get()
388 ux_test_do_action_before(&action, &params); in _tx_semaphore_get()
526 ux_test_do_action_after(&action, &params); in _tx_semaphore_get()
529 ux_test_do_hooks_after(UX_TEST_OVERRIDE_TX_SEMAPHORE_GET, &params); in _tx_semaphore_get()
1439 UX_TEST_OVERRIDE_TX_THREAD_PREEMPTION_CHANGE_PARAMS params = { thread_ptr, new_threshold }; in _tx_thread_preemption_change() local
[all …]
Dusbx_msrc_81691_standalone_host_stack_enum_double_free_test.c38 … ux_test_hcd_entry_should_not_be_called(UX_TEST_ACTION *action, VOID *params);
39 … ux_test_hcd_entry_disconnect(UX_TEST_ACTION *action, VOID *params);
40 …OID ux_test_hcd_entry_set_cfg(UX_TEST_ACTION *action, VOID *params);
283 static VOID ux_test_hcd_entry_set_cfg(UX_TEST_ACTION *action, VOID *params) in ux_test_hcd_entry_set_cfg() argument
Dux_device_class_dummy_hub.h40 UX_DEVICE_CLASS_HUB_PARAMS params; member
Dusbx_ux_device_class_cdc_ecm_bulkin_thread_test.c7 static void count_error_callback(struct UX_TEST_ACTION_STRUCT *action, VOID *params) in count_error_callback() argument
9 UX_TEST_ERROR_CALLBACK_PARAMS *error = (UX_TEST_ERROR_CALLBACK_PARAMS *)params; in count_error_callback()
Dusbx_ux_host_device_basic_memory_tests.c42 … ux_test_hcd_entry_should_not_be_called(UX_TEST_ACTION *action, VOID *params);
43 … ux_test_hcd_entry_disconnect(UX_TEST_ACTION *action, VOID *params);
44 …OID ux_test_hcd_entry_set_cfg(UX_TEST_ACTION *action, VOID *params);
643 static VOID ux_test_hcd_entry_should_not_be_called(UX_TEST_ACTION *action, VOID *params) in ux_test_hcd_entry_should_not_be_called() argument
649 static VOID ux_test_hcd_entry_disconnect(UX_TEST_ACTION *action, VOID *params) in ux_test_hcd_entry_disconnect() argument
655 static VOID ux_test_hcd_entry_set_cfg(UX_TEST_ACTION *action, VOID *params) in ux_test_hcd_entry_set_cfg() argument
Dusbx_cdc_ecm_host_bulk_in_transfer_fail_test.c23 static VOID suspend_cdc_ecm_thread_action_func(UX_TEST_ACTION *action, VOID *params) in suspend_cdc_ecm_thread_action_func() argument
Dusbx_cdc_ecm_host_thread_link_down_before_transfer_test.c24 static VOID suspend_cdc_ecm_thread_action_func(UX_TEST_ACTION *action, VOID *params) in suspend_cdc_ecm_thread_action_func() argument

12345