Home
last modified time | relevance | path

Searched refs:_fifo (Results 1 – 2 of 2) sorted by relevance

/openbmc/phosphor-logging/test/openpower-pels/
H A Dmocks.hpp112 _fifo = dir / "fifo"; in MockHostInterface()
120 std::filesystem::remove_all(_fifo.parent_path()); in ~MockHostInterface()
197 if (!std::filesystem::exists(_fifo)) in send()
199 if (mkfifo(_fifo.c_str(), 0622)) in send()
201 ADD_FAILURE() << "Failed mkfifo " << _fifo << strerror(errno); in send()
208 int fd = open(_fifo.c_str(), O_NONBLOCK | O_RDWR); in send()
260 int newFD = open(_fifo.c_str(), O_NONBLOCK | O_RDONLY); in receive()
291 std::filesystem::path _fifo; member in openpower::pels::MockHostInterface
/openbmc/linux/drivers/misc/
H A Dhpilo.h183 #define FIFOBARTOHANDLE(_fifo) \ argument
184 ((struct fifo *)(((char *)(_fifo)) - FIFOHANDLESIZE))