Lines Matching refs:ret
161 uint32_t ret;
173 ret = LOS_TaskCreate((uint32_t *)taskid, &attr);
174 if (ret != LOS_OK) {
177 return (ret);
183 uint32_t ret;
185 ret = LOS_TaskDelete(taskid);
186 if (ret != LOS_OK) {
189 return (ret);
209 uint32_t ret;
219 ret = usb_os_task_creat(&td, (TSK_ENTRY_FUNC)usb_process_thread, prio, pmesg, (UINTPTR)up);
220 if (ret != LOS_OK) {