| /llvm-project-15.0.7/libc/src/__support/OSUtil/linux/x86_64/ |
| H A D | syscall.h | 19 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 D | android_run.py | 34 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 D | index.cgi | 264 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 D | utils.py | 51 retcode = process.poll() 59 print("retcode:", retcode)
|
| H A D | README | 40 retcode: 0
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/ |
| H A D | lldbplatformutil.py | 71 retcode, stdout, stderr = _run_adb_command( 73 if retcode == 0:
|
| H A D | lldbutil.py | 1645 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 D | PlatformPOSIX.cpp | 139 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 D | 2008-04-16-ReMatBug.ll | 114 %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 D | TestCorefileDefaultPtrauth.py | 27 … retcode = 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 D | gdbremote_testcase.py | 202 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 D | TestKernVerStrLCNOTE.py | 79 … retcode = call(self.create_corefile + " " + self.corefile + " " + self.test_exe, shell=True)
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectPlatform.cpp | 601 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 D | llvm-compilers-check | 308 retcode = proc.wait() 310 return retcode
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationClient.cpp | 3134 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 D | GDBRemoteCommunicationServerCommon.cpp | 692 bool retcode = llvm::sys::fs::exists(path); in Handle_vFile_Exists() local 696 if (retcode) in Handle_vFile_Exists()
|