Searched refs:Pipe2 (Results 1 – 6 of 6) sorted by relevance
/packages/modules/Bluetooth/system/gd/hal/ |
D | snoop_logger_socket_test.cc | 45 ON_CALL(mock, Pipe2).WillByDefault(Invoke([&](int* fds, int) { in InitializeCommunicationsSuccess() 56 EXPECT_CALL(mock, Pipe2(_, _)); in InitializeCommunicationsSuccess() 354 ON_CALL(mock, Pipe2(_, _)).WillByDefault(Invoke([ret](int* /* fds */, int) { return ret; })); in TEST_F() 356 EXPECT_CALL(mock, Pipe2(_, _)); in TEST_F() 365 ON_CALL(mock, Pipe2).WillByDefault(Invoke([&](int* fds, int) { in TEST_F() 372 EXPECT_CALL(mock, Pipe2(_, _)); in TEST_F()
|
D | syscall_wrapper_mock.h | 52 MOCK_METHOD(int, Pipe2, (int*, int));
|
D | syscall_wrapper_impl.h | 47 int Pipe2(int* pipefd, int flags);
|
D | syscall_wrapper_interface.h | 56 virtual int Pipe2(int* pipefd, int flags) = 0;
|
D | syscall_wrapper_impl.cc | 88 int SyscallWrapperImpl::Pipe2(int* pipefd, int flags) { in Pipe2() function in bluetooth::hal::SyscallWrapperImpl
|
D | snoop_logger_socket.cc | 96 ret = syscall_if_->Pipe2(self_pipe_fds, O_NONBLOCK | O_CLOEXEC); in InitializeCommunications()
|