Home
last modified time | relevance | path

Searched refs:retcode (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/libc/src/__support/OSUtil/linux/x86_64/
H A Dsyscall.h19 long retcode; in syscall() local
24 return retcode; in syscall()
28 long retcode; in syscall() local
33 return retcode; in syscall()
38 long retcode; in syscall() local
43 return retcode; in syscall()
48 long retcode; in syscall() local
53 return retcode; in syscall()
58 long retcode; in syscall() local
71 long retcode; in syscall() local
[all …]
/llvm-project-15.0.7/compiler-rt/test/sanitizer_common/android_commands/
H A Dandroid_run.py34 retcode = int(pull_from_device(device_exitcode)) variable
37 if retcode > 128:
39 sys.exit(retcode)
/llvm-project-15.0.7/clang/www/demo/
H A Dindex.cgi264 my $retcode = 0;
269 $retcode = system($commandline);
279 if ( WIFEXITED($retcode) && WEXITSTATUS($retcode) != 0 ) {
286 if ( WIFSIGNALED($retcode) != 0 ) {
287 my $sig = WTERMSIG($retcode);
/llvm-project-15.0.7/lldb/examples/customization/pwd-cd-and-system/
H A Dutils.py51 retcode = process.poll()
59 print("retcode:", retcode)
H A DREADME40 retcode: 0
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbplatformutil.py71 retcode, stdout, stderr = _run_adb_command(
73 if retcode == 0:
H A Dlldbutil.py1645 err, retcode, msg = testcase.run_platform_command("ls %s" % file_path)
1646 if err.Success() and retcode == 0:
/llvm-project-15.0.7/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp139 int retcode; in PutFile() local
140 Host::RunShellCommand(command.GetData(), FileSpec(), &retcode, nullptr, in PutFile()
142 if (retcode == 0) { in PutFile()
196 int retcode; in GetFile() local
197 Host::RunShellCommand(command.GetData(), FileSpec(), &retcode, nullptr, in GetFile()
199 if (retcode == 0) in GetFile()
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A D2008-04-16-ReMatBug.ll114 %retcode.0 = phi i16 [ -2, %bb28 ], [ %tmp113, %bb92 ] ; <i16> [#uses=2]
117 %tmp157158 = sext i16 %retcode.0 to i32 ; <i32> [#uses=1]
122 ret i16 %retcode.0
/llvm-project-15.0.7/lldb/test/API/macosx/corefile-default-ptrauth/
H A DTestCorefileDefaultPtrauth.py27retcode = call(self.create_corefile + " " + self.test_exe + " " + self.corefile, shell=True)
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/tools/lldb-server/
H A Dgdbremote_testcase.py202 err, retcode, shell_stat = self.run_platform_command(
205 err.Success() and retcode == 0,
208 retcode))
212 err, retcode, ls_output = self.run_platform_command(
215 err.Success() and retcode == 0,
219 retcode))
/llvm-project-15.0.7/lldb/test/API/macosx/lc-note/kern-ver-str/
H A DTestKernVerStrLCNOTE.py79retcode = call(self.create_corefile + " " + self.corefile + " " + self.test_exe, shell=True)
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectPlatform.cpp601 uint64_t retcode = platform_sp->ReadFile( in DoExecute() local
603 if (retcode != UINT64_MAX) { in DoExecute()
604 result.AppendMessageWithFormat("Return = %" PRIu64 "\n", retcode); in DoExecute()
696 uint64_t retcode = in DoExecute() local
699 if (retcode != UINT64_MAX) { in DoExecute()
700 result.AppendMessageWithFormat("Return = %" PRIu64 "\n", retcode); in DoExecute()
/llvm-project-15.0.7/llvm/utils/
H A Dllvm-compilers-check308 retcode = proc.wait()
310 return retcode
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp3134 uint32_t retcode = response.GetHexMaxU64(false, UINT64_MAX); in GetFileSize() local
3135 return retcode; in GetFileSize()
3231 int64_t retcode = response.GetS64(-1, 16); in ReadFile() local
3232 if (retcode == -1) { in ReadFile()
3373 bool retcode = (response.GetChar() != '0'); in GetFileExists() local
3374 return retcode; in GetFileExists()
H A DGDBRemoteCommunicationServerCommon.cpp692 bool retcode = llvm::sys::fs::exists(path); in Handle_vFile_Exists() local
696 if (retcode) in Handle_vFile_Exists()