Searched refs:error_fd (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/llvm-project/lldb/source/Host/posix/ |
| H A D | ProcessLauncherPosixFork.cpp | 39 static void write_string(int error_fd, const char *str) { in write_string() argument 40 int r = write(error_fd, str, strlen(str)); in write_string() 44 [[noreturn]] static void ExitWithError(int error_fd, const char *operation) { in ExitWithError() argument 46 write_string(error_fd, operation); in ExitWithError() 47 write_string(error_fd, " failed: "); in ExitWithError() 49 write_string(error_fd, strerror(err)); in ExitWithError() 53 static void DisableASLR(int error_fd) { in DisableASLR() argument 58 ExitWithError(error_fd, "personality get"); in DisableASLR() 62 ExitWithError(error_fd, "personality set"); in DisableASLR() 66 static void DupDescriptor(int error_fd, const char *file, int fd, int flags) { in DupDescriptor() argument [all …]
|