Lines Matching refs:cloud
12 static NX_CLOUD cloud; variable
72 status = nx_cloud_create(&cloud, "Cloud", NX_NULL, 2048, 3); in test_entry()
81 status = nx_cloud_create(&cloud, "Cloud", cloud_stack, 0, 3); in test_entry()
90 status = nx_cloud_create(&cloud, "Cloud", cloud_stack, 2048, TX_MAX_PRIORITIES); in test_entry()
99 status = nx_cloud_create(&cloud, "Cloud", cloud_stack, 2048, 3); in test_entry()
119 …status = nx_cloud_module_register(&cloud, NX_NULL, "Module 1", (NX_CLOUD_COMMON_PERIODIC_EVENT | N… in test_entry()
128 …status = nx_cloud_module_register(&cloud, &cloud_module, "Module 1", 0, cloud_module_event_process… in test_entry()
137 …status = nx_cloud_module_register(&cloud, &cloud_module, "Module 1", (NX_CLOUD_COMMON_PERIODIC_EVE… in test_entry()
146 …status = nx_cloud_module_register(&cloud, &cloud_module, "Module 1", (NX_CLOUD_COMMON_PERIODIC_EVE… in test_entry()
223 status = nx_cloud_module_deregister(&cloud, NX_NULL); in test_entry()
232 status = nx_cloud_module_deregister(&cloud, &cloud_module); in test_entry()
252 status = nx_cloud_delete(&cloud); in test_entry()