Searched refs:log_name (Results 1 – 5 of 5) sorted by relevance
/device/google/cuttlefish/host/commands/logcat_receiver/ |
D | main.cpp | 50 auto log_name = instance.logcat_pipe_name(); in main() local 51 pipe = cuttlefish::SharedFD::Open(log_name.c_str(), O_RDONLY); in main()
|
/device/google/cuttlefish/host/commands/run_cvd/ |
D | launch.cc | 135 auto log_name = instance.kernel_log_pipe_name(); in LaunchKernelLogMonitor() local 136 if (mkfifo(log_name.c_str(), 0600) != 0) { in LaunchKernelLogMonitor() 137 LOG(ERROR) << "Unable to create named pipe at " << log_name << ": " in LaunchKernelLogMonitor() 146 pipe = cuttlefish::SharedFD::Open(log_name.c_str(), O_RDWR); in LaunchKernelLogMonitor() 179 auto log_name = instance.logcat_pipe_name(); in LaunchLogcatReceiver() local 180 if (mkfifo(log_name.c_str(), 0600) != 0) { in LaunchLogcatReceiver() 181 LOG(ERROR) << "Unable to create named pipe at " << log_name << ": " in LaunchLogcatReceiver() 190 pipe = cuttlefish::SharedFD::Open(log_name.c_str(), O_RDWR); in LaunchLogcatReceiver()
|
/device/google/cuttlefish/host/commands/kernel_log_monitor/ |
D | main.cc | 83 auto log_name = instance.kernel_log_pipe_name(); in main() local 84 pipe = cuttlefish::SharedFD::Open(log_name.c_str(), O_RDONLY); in main()
|
D | kernel_log_server.cc | 70 const std::string& log_name, in KernelLogServer() argument 73 log_fd_(cuttlefish::SharedFD::Open(log_name.c_str(), O_CREAT | O_RDWR, 0666)), in KernelLogServer()
|
D | kernel_log_server.h | 50 const std::string& log_name,
|