| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "mojo/nacl/nonsfi/irt_mojo_nonsfi.h" | 5 #include "mojo/nacl/nonsfi/irt_mojo_nonsfi.h" |
| 6 | 6 |
| 7 #include "mojo/public/c/system/buffer.h" | 7 #include "mojo/public/c/system/buffer.h" |
| 8 #include "mojo/public/c/system/data_pipe.h" | 8 #include "mojo/public/c/system/data_pipe.h" |
| 9 #include "mojo/public/c/system/handle.h" | 9 #include "mojo/public/c/system/handle.h" |
| 10 #include "mojo/public/c/system/message_pipe.h" | 10 #include "mojo/public/c/system/message_pipe.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 MojoClose, | 26 MojoClose, |
| 27 MojoWait, | 27 MojoWait, |
| 28 MojoWaitMany, | 28 MojoWaitMany, |
| 29 MojoCreateMessagePipe, | 29 MojoCreateMessagePipe, |
| 30 MojoWriteMessage, | 30 MojoWriteMessage, |
| 31 MojoReadMessage, | 31 MojoReadMessage, |
| 32 MojoCreateDataPipe, | 32 MojoCreateDataPipe, |
| 33 MojoWriteData, | 33 MojoWriteData, |
| 34 MojoBeginWriteData, | 34 MojoBeginWriteData, |
| 35 MojoEndWriteData, | 35 MojoEndWriteData, |
| 36 MojoSetDataPipeConsumerOptions, |
| 37 MojoGetDataPipeConsumerOptions, |
| 36 MojoReadData, | 38 MojoReadData, |
| 37 MojoBeginReadData, | 39 MojoBeginReadData, |
| 38 MojoEndReadData, | 40 MojoEndReadData, |
| 39 MojoCreateSharedBuffer, | 41 MojoCreateSharedBuffer, |
| 40 MojoDuplicateBufferHandle, | 42 MojoDuplicateBufferHandle, |
| 41 MojoGetBufferInformation, | 43 MojoGetBufferInformation, |
| 42 MojoMapBuffer, | 44 MojoMapBuffer, |
| 43 MojoUnmapBuffer, | 45 MojoUnmapBuffer, |
| 44 }; | 46 }; |
| 45 | 47 |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 void* table, | 125 void* table, |
| 124 size_t tablesize) { | 126 size_t tablesize) { |
| 125 size_t result = nacl_irt_query_list(interface_ident, table, tablesize, | 127 size_t result = nacl_irt_query_list(interface_ident, table, tablesize, |
| 126 kIrtInterfaces, sizeof(kIrtInterfaces)); | 128 kIrtInterfaces, sizeof(kIrtInterfaces)); |
| 127 if (result != 0) | 129 if (result != 0) |
| 128 return result; | 130 return result; |
| 129 return nacl_irt_query_core(interface_ident, table, tablesize); | 131 return nacl_irt_query_core(interface_ident, table, tablesize); |
| 130 } | 132 } |
| 131 | 133 |
| 132 } // namespace nacl | 134 } // namespace nacl |
| OLD | NEW |