Home
last modified time | relevance | path

Searched refs:Pipe2 (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Bluetooth/system/gd/hal/
Dsnoop_logger_socket_test.cc45 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()
Dsyscall_wrapper_mock.h52 MOCK_METHOD(int, Pipe2, (int*, int));
Dsyscall_wrapper_impl.h47 int Pipe2(int* pipefd, int flags);
Dsyscall_wrapper_interface.h56 virtual int Pipe2(int* pipefd, int flags) = 0;
Dsyscall_wrapper_impl.cc88 int SyscallWrapperImpl::Pipe2(int* pipefd, int flags) { in Pipe2() function in bluetooth::hal::SyscallWrapperImpl
Dsnoop_logger_socket.cc96 ret = syscall_if_->Pipe2(self_pipe_fds, O_NONBLOCK | O_CLOEXEC); in InitializeCommunications()