Lines Matching refs:cloud_module
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()
1001 UINT _nx_cloud_module_event_clear(NX_CLOUD_MODULE *cloud_module, ULONG module_own_event) in _nx_cloud_module_event_clear() argument
1006 NX_CLOUD *cloud_ptr = cloud_module -> nx_cloud_ptr; in _nx_cloud_module_event_clear()
1014 cloud_module -> nx_cloud_module_own_events &= ~module_own_event; in _nx_cloud_module_event_clear()
1017 if (cloud_module -> nx_cloud_module_own_events == 0) in _nx_cloud_module_event_clear()
1021 …registered_event = (cloud_module -> nx_cloud_module_registered_events)&(~NX_CLOUD_COMMON_PERIODIC_… in _nx_cloud_module_event_clear()
1085 NX_CLOUD_MODULE *cloud_module; in _nx_cloud_thread_entry() local
1104 …for (cloud_module = cloud_ptr -> nx_cloud_modules_list_header; cloud_module; cloud_module = cloud_… in _nx_cloud_thread_entry()
1108 if (cloud_events & cloud_module -> nx_cloud_module_registered_events) in _nx_cloud_thread_entry()
1115 module_own_events = cloud_module -> nx_cloud_module_own_events; in _nx_cloud_thread_entry()
1118 cloud_module -> nx_cloud_module_own_events = 0; in _nx_cloud_thread_entry()
1127 …cloud_module -> nx_cloud_module_process(cloud_module -> nx_cloud_module_context, cloud_events & cl… in _nx_cloud_thread_entry()