/external/ltp/testcases/open_posix_testsuite/functional/mqueues/ |
D | send_rev_1.c | 35 int ret_code = PTS_PASS; in main() local 57 ret_code = PTS_UNRESOLVED; in main() 61 for (i = 0; i < MAX_MSG && ret_code == PTS_PASS; i++) { in main() 67 ret_code = PTS_UNRESOLVED; in main() 79 for (i = 0; i < MAX_MSG && ret_code == PTS_PASS; i++) { in main() 85 ret_code = PTS_UNRESOLVED; in main() 93 exit(ret_code); in main() 101 return ret_code; in main()
|
/external/ltp/testcases/open_posix_testsuite/bin/ |
D | run-tests.sh | 51 ret_code=$? 53 if [ "$ret_code" = "0" ]; then 56 case "$ret_code" in 73 if [ $ret_code -gt 128 ]; then 88 return $ret_code
|
/external/autotest/server/cros/crosperf/ |
D | device_setup_utils.py | 419 ret_code, _, _ = run_command_on_dut(dut, cmd, ignore_status=True) 420 if ret_code != good: 425 ret_code, _, _ = run_command_on_dut( 427 logging.info('grep /proc/cmdline returned %d', ret_code) 428 if (intel_pstate and ret_code == good or 429 not intel_pstate and ret_code != good): 520 ret_code, _, _ = run_command_on_dut( 522 if (intel_pstate and ret_code != good or 523 not intel_pstate and ret_code == good): 527 'Final verification failed with status %d', ret_code)
|
/external/u-boot/tools/binman/ |
D | binman.py | 170 ret_code = 0 179 ret_code = RunTests(args.debug, args.verbosity, args.processes, 188 ret_code = control.Binman(args) 194 ret_code = 1 195 return ret_code 201 ret_code = RunBinman(args) variable 202 sys.exit(ret_code)
|
D | binman | 170 ret_code = 0 179 ret_code = RunTests(args.debug, args.verbosity, args.processes, 188 ret_code = control.Binman(args) 194 ret_code = 1 195 return ret_code 201 ret_code = RunBinman(args) variable 202 sys.exit(ret_code)
|
/external/toolchain-utils/cros_utils/ |
D | device_setup_utils.py | 356 ret_code, _, _ = self.RunCommandOnDut(cmd, ignore_status=True) 357 if ret_code != good: 362 ret_code, _, _ = self.RunCommandOnDut(kern_cmdline_cmd, ignore_status=True) 363 self.logger.LogOutput('grep /proc/cmdline returned %d' % ret_code) 364 if (intel_pstate and ret_code == good or 365 not intel_pstate and ret_code != good): 454 ret_code, _, _ = self.RunCommandOnDut(kern_cmdline_cmd, ignore_status=True) 455 if (intel_pstate and ret_code != good or 456 not intel_pstate and ret_code == good): 460 'Final verification failed with status %d' % ret_code)
|
/external/autotest/client/profilers/custom_perf/ |
D | custom_perf.py | 36 ret_code = self._process.poll() 37 if ret_code is not None: 39 '%d. Please check your logs.' % ret_code)
|
/external/google-breakpad/src/testing/gtest/test/ |
D | gtest_test_utils.py | 265 ret_code = p.wait() 276 if os.WIFSIGNALED(ret_code): 277 self._return_code = -os.WTERMSIG(ret_code) 279 self._return_code = os.WEXITSTATUS(ret_code)
|
/external/kernel-headers/original/uapi/linux/ |
D | vfio_ccw.h | 23 __u32 ret_code; member 34 __u32 ret_code; member
|
/external/googletest/googletest/test/ |
D | gtest_test_utils.py | 276 ret_code = p.wait() 287 if os.WIFSIGNALED(ret_code): 288 self._return_code = -os.WTERMSIG(ret_code) 290 self._return_code = os.WEXITSTATUS(ret_code)
|
/external/autotest/client/profilers/cros_perf/ |
D | cros_perf.py | 103 ret_code = process.poll() 105 if ret_code is None: 112 'Please check your logs.', ret_code)
|
/external/v8/src/base/platform/ |
D | platform-aix.cc | 44 int ret_code = gettimeofday(&tv, &tz); in get_gmt_offset() local 46 DCHECK_NE(ret_code, -1); in get_gmt_offset() 47 if (ret_code == -1) { in get_gmt_offset()
|
/external/ltp/include/lapi/ |
D | rt_sigaction.h | 87 int ret_code = -1; in sig_initial() local 104 ret_code = 0; in sig_initial() 107 return ret_code; in sig_initial()
|
/external/vulkan-validation-layers/scripts/ |
D | update_deps.py | 427 ret_code = subprocess.call(cmake_cmd) 428 if ret_code != 0: 429 sys.exit(ret_code) 460 ret_code = subprocess.call(cmake_cmd) 461 if ret_code != 0: 462 sys.exit(ret_code)
|
/external/u-boot/tools/buildman/ |
D | buildman.py | 67 ret_code = control.DoBuildman(options, args) variable 68 sys.exit(ret_code)
|
D | buildman | 67 ret_code = control.DoBuildman(options, args) variable 68 sys.exit(ret_code)
|
D | func_test.py | 439 ret_code = self._RunControl('-b', TEST_BRANCH, '-o', self._output_dir) 450 self.assertEqual(ret_code, 128)
|
/external/u-boot/drivers/mtd/ |
D | mtdcore.c | 949 int ret_code; in mtd_read() local 962 ret_code = mtd->_read(mtd, from, len, retlen, buf); in mtd_read() 969 ret_code = mtd->_read_oob(mtd, from, &ops); in mtd_read() 975 if (unlikely(ret_code < 0)) in mtd_read() 976 return ret_code; in mtd_read() 979 return ret_code >= mtd->bitflip_threshold ? -EUCLEAN : 0; in mtd_read() 1069 int ret_code; in mtd_read_oob() local 1072 ret_code = mtd_check_oob_ops(mtd, from, ops); in mtd_read_oob() 1073 if (ret_code) in mtd_read_oob() 1074 return ret_code; in mtd_read_oob() [all …]
|
/external/libavc/encoder/ |
D | ih264e_error.h | 46 #define SET_ERROR_ON_RETURN(error, severity, out_status, ret_code) \ argument 50 return (ret_code);\
|
/external/u-boot/tools/dtoc/ |
D | dtoc.py | 108 ret_code = run_tests(args) variable 109 sys.exit(ret_code)
|
D | dtoc | 108 ret_code = run_tests(args) variable 109 sys.exit(ret_code)
|
/external/boringssl/src/decrepit/bio/ |
D | base64_bio.c | 121 int ret = 0, i, ii, j, k, x, n, num, ret_code = 0; in b64_read() local 166 ret_code = 0; in b64_read() 176 ret_code = i; in b64_read() 294 ret_code = 0; in b64_read() 317 return ret == 0 ? ret_code : ret; in b64_read()
|
/external/u-boot/drivers/tee/optee/ |
D | rpmb.c | 38 u8 ret_code; member 114 info->ret_code = RPMB_CMD_GET_DEV_INFO_RET_OK; in rpmb_get_dev_info()
|
/external/curl/lib/ |
D | security.c | 360 int ret_code = 0; in Curl_sec_read_msg() local 399 (void)sscanf(buf, "%d", &ret_code); in Curl_sec_read_msg() 405 return ret_code; in Curl_sec_read_msg()
|
/external/mesa3d/src/glx/ |
D | dri2.c | 65 DRI2Error(Display *display, xError *err, XExtCodes *codes, int *ret_code); 180 DRI2Error(Display *display, xError *err, XExtCodes *codes, int *ret_code) in DRI2Error() argument 200 *ret_code = False; in DRI2Error()
|