Lines Matching refs:ret
19 int ret = 0; in run_copy() local
20 ret = msh_exec("cd /tmp", 7); in run_copy()
21 if (ret != 0) in run_copy()
23 LOG_E("errno=%d, ret=%d\n", errno, ret); in run_copy()
28 ret = msh_exec("touch test", 10); in run_copy()
29 if (ret != 0) in run_copy()
31 LOG_E("errno=%d, ret=%d\n", errno, ret); in run_copy()
36 ret = msh_exec("echo this_is_a_test_file test", 29); in run_copy()
37 if (ret != 0) in run_copy()
39 LOG_E("errno=%d, ret=%d\n", errno, ret); in run_copy()
44 ret = msh_exec("cp test test1", 13); in run_copy()
45 if (ret != 0) in run_copy()
47 LOG_E("errno=%d, ret=%d\n", errno, ret); in run_copy()