Searched refs:error_fd (Results 1 – 1 of 1) sorted by relevance
| /src/contrib/llvm-project/lldb/source/Host/posix/ |
| H A D | ProcessLauncherPosixFork.cpp | 45 static void write_string(int error_fd, const char *str) { in write_string() argument 46 int r = write(error_fd, str, strlen(str)); in write_string() 50 [[noreturn]] static void ExitWithError(int error_fd, in ExitWithError() argument 53 write_string(error_fd, operation); in ExitWithError() 54 write_string(error_fd, " failed: "); in ExitWithError() 56 write_string(error_fd, strerror(err)); in ExitWithError() 60 static void DisableASLR(int error_fd) { in DisableASLR() argument 65 ExitWithError(error_fd, "personality get"); in DisableASLR() 69 ExitWithError(error_fd, "personality set"); in DisableASLR() 73 static void DupDescriptor(int error_fd, const char *file, int fd, int flags) { in DupDescriptor() argument [all …]
|