Lines Matching refs:module_ptr
468 UINT _nxe_cloud_module_register(NX_CLOUD* cloud_ptr, NX_CLOUD_MODULE *module_ptr, const CHAR *modul… in _nxe_cloud_module_register() argument
477 (module_ptr == NX_NULL) || (module_process == NX_NULL)) in _nxe_cloud_module_register()
492 …status = _nx_cloud_module_register(cloud_ptr, module_ptr, module_name, module_registered_event, mo… in _nxe_cloud_module_register()
547 UINT _nx_cloud_module_register(NX_CLOUD* cloud_ptr, NX_CLOUD_MODULE *module_ptr, const CHAR *module… in _nx_cloud_module_register() argument
562 if (current_module == module_ptr) in _nx_cloud_module_register()
573 module_ptr -> nx_cloud_module_name = module_name; in _nx_cloud_module_register()
574 module_ptr -> nx_cloud_module_registered_events = module_registered_event; in _nx_cloud_module_register()
575 module_ptr -> nx_cloud_module_process = module_process; in _nx_cloud_module_register()
576 module_ptr -> nx_cloud_module_context = module_context; in _nx_cloud_module_register()
577 module_ptr -> nx_cloud_ptr = cloud_ptr; in _nx_cloud_module_register()
580 module_ptr -> nx_cloud_module_next = cloud_ptr -> nx_cloud_modules_list_header; in _nx_cloud_module_register()
581 cloud_ptr -> nx_cloud_modules_list_header = module_ptr; in _nx_cloud_module_register()
632 UINT _nxe_cloud_module_deregister(NX_CLOUD* cloud_ptr, NX_CLOUD_MODULE* module_ptr) in _nxe_cloud_module_deregister() argument
640 (module_ptr == NX_NULL)) in _nxe_cloud_module_deregister()
649 status = _nx_cloud_module_deregister(cloud_ptr, module_ptr); in _nxe_cloud_module_deregister()
697 UINT _nx_cloud_module_deregister(NX_CLOUD* cloud_ptr, NX_CLOUD_MODULE* module_ptr) in _nx_cloud_module_deregister() argument
714 if (current_module == module_ptr) in _nx_cloud_module_deregister()