Searched refs:cloud_module (Results 1 – 5 of 5) sorted by relevance
| /NetX-Duo-v6.2.1/test/regression/cloud_test/ |
| D | netx_cloud_module_event_test.c | 26 static NX_CLOUD_APP cloud_module[3]; variable 103 …cloud_module[0].nx_cloud_module, "Module 1", (NX_CLOUD_COMMON_PERIODIC_EVENT | NX_CLOUD_MODULE_1_E… in test_entry() 113 …gister(&cloud, &cloud_module[1].nx_cloud_module, "Module 2", NX_CLOUD_MODULE_1_EVENT, cloud_module… in test_entry() 123 …cloud_module[2].nx_cloud_module, "Module 3", (NX_CLOUD_COMMON_PERIODIC_EVENT|NX_CLOUD_MODULE_1_EVE… in test_entry() 160 nx_cloud_module_event_set(&cloud_module[module_id].nx_cloud_module, module_own_events); in test_entry() 165 … if ((cloud_module[j].nx_cloud_module_event_1 != module_event[j].nx_cloud_module_event_1) || in test_entry() 166 … (cloud_module[j].nx_cloud_module_event_2 != module_event[j].nx_cloud_module_event_2) || in test_entry() 167 … (cloud_module[j].nx_cloud_module_event_3 != module_event[j].nx_cloud_module_event_3) || in test_entry() 168 … (cloud_module[j].nx_cloud_module_event_4 != module_event[j].nx_cloud_module_event_4)) in test_entry() 182 if ((cloud_module[0].nx_cloud_module_event_periodic != periodic_count) || in test_entry() [all …]
|
| D | netx_cloud_api_test.c | 14 static NX_CLOUD_MODULE cloud_module; variable 110 …X_NULL, &cloud_module, "Module 1", (NX_CLOUD_COMMON_PERIODIC_EVENT | NX_CLOUD_MODULE_EVENT), cloud… in test_entry() 119 …MMON_PERIODIC_EVENT | NX_CLOUD_MODULE_EVENT), cloud_module_event_process, (void *)(&cloud_module)); in test_entry() 128 … = nx_cloud_module_register(&cloud, &cloud_module, "Module 1", 0, cloud_module_event_process, (voi… in test_entry() 137 …_register(&cloud, &cloud_module, "Module 1", (NX_CLOUD_COMMON_PERIODIC_EVENT | NX_CLOUD_MODULE_EVE… in test_entry() 146 …&cloud, &cloud_module, "Module 1", (NX_CLOUD_COMMON_PERIODIC_EVENT | NX_CLOUD_MODULE_EVENT), cloud… in test_entry() 165 status = nx_cloud_module_event_set(&cloud_module, 0); in test_entry() 174 status = nx_cloud_module_event_set(&cloud_module, NX_CLOUD_MODULE_EVENT_1); in test_entry() 194 status = nx_cloud_module_event_clear(&cloud_module, 0); in test_entry() 203 status = nx_cloud_module_event_clear(&cloud_module, NX_CLOUD_MODULE_EVENT_1); in test_entry() [all …]
|
| D | netx_cloud_basic_test.c | 14 static NX_CLOUD_MODULE cloud_module; variable 80 …&cloud, &cloud_module, "Module 1", (NX_CLOUD_COMMON_PERIODIC_EVENT | NX_CLOUD_MODULE_EVENT), cloud… in test_entry() 93 status = nx_cloud_module_event_set(&cloud_module, NX_CLOUD_MODULE_EVENT_1); in test_entry() 110 …status = nx_cloud_module_event_set(&cloud_module, NX_CLOUD_MODULE_EVENT_1|NX_CLOUD_MODULE_EVENT_2); in test_entry() 127 …status = nx_cloud_module_event_set(&cloud_module, NX_CLOUD_MODULE_EVENT_1|NX_CLOUD_MODULE_EVENT_2|… in test_entry() 144 …status = nx_cloud_module_event_set(&cloud_module, NX_CLOUD_MODULE_EVENT_1|NX_CLOUD_MODULE_EVENT_2|… in test_entry() 161 …status = nx_cloud_module_event_set(&cloud_module, NX_CLOUD_MODULE_EVENT_2|NX_CLOUD_MODULE_EVENT_3|… in test_entry() 178 …status = nx_cloud_module_event_set(&cloud_module, NX_CLOUD_MODULE_EVENT_3|NX_CLOUD_MODULE_EVENT_4); in test_entry() 195 status = nx_cloud_module_event_set(&cloud_module, NX_CLOUD_MODULE_EVENT_4); in test_entry() 225 status = nx_cloud_module_deregister(&cloud, &cloud_module); in test_entry()
|
| /NetX-Duo-v6.2.1/addons/cloud/ |
| D | nx_cloud.c | 794 UINT _nxe_cloud_module_event_set(NX_CLOUD_MODULE *cloud_module, ULONG module_own_event) in _nxe_cloud_module_event_set() argument 800 if (cloud_module == NX_NULL) in _nxe_cloud_module_event_set() 812 status = _nx_cloud_module_event_set(cloud_module, module_own_event); in _nxe_cloud_module_event_set() 862 UINT _nx_cloud_module_event_set(NX_CLOUD_MODULE *cloud_module, ULONG module_own_event) in _nx_cloud_module_event_set() argument 867 NX_CLOUD *cloud_ptr = cloud_module -> nx_cloud_ptr; in _nx_cloud_module_event_set() 875 cloud_module -> nx_cloud_module_own_events |= module_own_event; in _nx_cloud_module_event_set() 878 …registered_event = (cloud_module -> nx_cloud_module_registered_events)&(~NX_CLOUD_COMMON_PERIODIC_… in _nx_cloud_module_event_set() 933 UINT _nxe_cloud_module_event_clear(NX_CLOUD_MODULE *cloud_module, ULONG module_own_event) in _nxe_cloud_module_event_clear() argument 939 if (cloud_module == NX_NULL) in _nxe_cloud_module_event_clear() 951 status = _nx_cloud_module_event_clear(cloud_module, module_own_event); in _nxe_cloud_module_event_clear() [all …]
|
| D | nx_cloud.h | 195 UINT nx_cloud_module_event_set(NX_CLOUD_MODULE *cloud_module, ULONG module_own_event); 196 UINT nx_cloud_module_event_clear(NX_CLOUD_MODULE *cloud_module, ULONG module_own_event); 212 UINT _nxe_cloud_module_event_set(NX_CLOUD_MODULE *cloud_module, ULONG module_own_event); 213 UINT _nx_cloud_module_event_set(NX_CLOUD_MODULE *cloud_module, ULONG module_own_event); 214 UINT _nxe_cloud_module_event_clear(NX_CLOUD_MODULE *cloud_module, ULONG module_own_event); 215 UINT _nx_cloud_module_event_clear(NX_CLOUD_MODULE *cloud_module, ULONG module_own_event);
|