Lines Matching defs:ret
37 int ret;
42 ret = LOS_MuxInit(lock, NULL);
43 if (ret != LOS_OK) {
44 PRINT_ERR("Create mutex for vnode hash list fail, status: %d", ret);
45 return ret;
53 int ret;
54 ret = LOS_MuxDestroy(lock);
55 if (ret != LOS_OK) {
56 PRINT_ERR("Destroy mutex for vnode hash list fail, status: %d", ret);
57 return ret;