OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef LIBRARIES_NACL_IO_TEST_MOCK_KERNEL_PROXY_H_ | 5 #ifndef TESTS_NACL_IO_TEST_MOCK_KERNEL_PROXY_H_ |
6 #define LIBRARIES_NACL_IO_TEST_MOCK_KERNEL_PROXY_H_ | 6 #define TESTS_NACL_IO_TEST_MOCK_KERNEL_PROXY_H_ |
7 | 7 |
8 #include <sys/types.h> | 8 #include <sys/types.h> |
9 #include <sys/stat.h> | 9 #include <sys/stat.h> |
10 #include "gmock/gmock.h" | 10 #include "gmock/gmock.h" |
11 | 11 |
12 #include "nacl_io/kernel_proxy.h" | 12 #include "nacl_io/kernel_proxy.h" |
13 #include "nacl_io/ossignal.h" | 13 #include "nacl_io/ossignal.h" |
14 #include "nacl_io/ossocket.h" | 14 #include "nacl_io/ossocket.h" |
15 #include "nacl_io/ostermios.h" | 15 #include "nacl_io/ostermios.h" |
16 | 16 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 const struct sockaddr*, socklen_t)); | 92 const struct sockaddr*, socklen_t)); |
93 MOCK_METHOD3(sendmsg, ssize_t(int, const struct msghdr*, int)); | 93 MOCK_METHOD3(sendmsg, ssize_t(int, const struct msghdr*, int)); |
94 MOCK_METHOD5(setsockopt, int(int, int, int, const void*, socklen_t)); | 94 MOCK_METHOD5(setsockopt, int(int, int, int, const void*, socklen_t)); |
95 MOCK_METHOD2(shutdown, int(int, int)); | 95 MOCK_METHOD2(shutdown, int(int, int)); |
96 MOCK_METHOD3(socket, int(int, int, int)); | 96 MOCK_METHOD3(socket, int(int, int, int)); |
97 MOCK_METHOD4(socketpair, int(int, int, int, int*)); | 97 MOCK_METHOD4(socketpair, int(int, int, int, int*)); |
98 #endif // PROVIDES_SOCKET_API | 98 #endif // PROVIDES_SOCKET_API |
99 | 99 |
100 }; | 100 }; |
101 | 101 |
102 #endif // LIBRARIES_NACL_IO_TEST_MOCK_KERNEL_PROXY_H_ | 102 #endif // TESTS_NACL_IO_TEST_MOCK_KERNEL_PROXY_H_ |
OLD | NEW |