| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #include "bin/io_natives.h" | 5 #include "bin/io_natives.h" |
| 6 | 6 |
| 7 #include <stdlib.h> | 7 #include <stdlib.h> |
| 8 #include <string.h> | 8 #include <string.h> |
| 9 | 9 |
| 10 #include "bin/builtin.h" | 10 #include "bin/builtin.h" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 V(Process_Pid, 1) \ | 43 V(Process_Pid, 1) \ |
| 44 V(SecureSocket_Connect, 9) \ | 44 V(SecureSocket_Connect, 9) \ |
| 45 V(SecureSocket_Destroy, 1) \ | 45 V(SecureSocket_Destroy, 1) \ |
| 46 V(SecureSocket_Handshake, 1) \ | 46 V(SecureSocket_Handshake, 1) \ |
| 47 V(SecureSocket_Init, 1) \ | 47 V(SecureSocket_Init, 1) \ |
| 48 V(SecureSocket_PeerCertificate, 1) \ | 48 V(SecureSocket_PeerCertificate, 1) \ |
| 49 V(SecureSocket_RegisterBadCertificateCallback, 2) \ | 49 V(SecureSocket_RegisterBadCertificateCallback, 2) \ |
| 50 V(SecureSocket_RegisterHandshakeCompleteCallback, 2) \ | 50 V(SecureSocket_RegisterHandshakeCompleteCallback, 2) \ |
| 51 V(SecureSocket_Renegotiate, 4) \ | 51 V(SecureSocket_Renegotiate, 4) \ |
| 52 V(SecureSocket_InitializeLibrary, 3) \ | 52 V(SecureSocket_InitializeLibrary, 3) \ |
| 53 V(SecureSocket_AddCertificate, 2) \ |
| 53 V(SecureSocket_NewServicePort, 0) \ | 54 V(SecureSocket_NewServicePort, 0) \ |
| 54 V(SecureSocket_FilterPointer, 1) \ | 55 V(SecureSocket_FilterPointer, 1) \ |
| 55 V(ServerSocket_CreateBindListen, 5) \ | 56 V(ServerSocket_CreateBindListen, 5) \ |
| 56 V(ServerSocket_Accept, 2) \ | 57 V(ServerSocket_Accept, 2) \ |
| 57 V(Socket_CreateConnect, 3) \ | 58 V(Socket_CreateConnect, 3) \ |
| 58 V(Socket_Available, 1) \ | 59 V(Socket_Available, 1) \ |
| 59 V(Socket_Read, 2) \ | 60 V(Socket_Read, 2) \ |
| 60 V(Socket_WriteList, 4) \ | 61 V(Socket_WriteList, 4) \ |
| 61 V(Socket_GetPort, 1) \ | 62 V(Socket_GetPort, 1) \ |
| 62 V(Socket_GetRemotePeer, 1) \ | 63 V(Socket_GetRemotePeer, 1) \ |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 if (!strcmp(function_name, entry->name_) && | 96 if (!strcmp(function_name, entry->name_) && |
| 96 (entry->argument_count_ == argument_count)) { | 97 (entry->argument_count_ == argument_count)) { |
| 97 return reinterpret_cast<Dart_NativeFunction>(entry->function_); | 98 return reinterpret_cast<Dart_NativeFunction>(entry->function_); |
| 98 } | 99 } |
| 99 } | 100 } |
| 100 return NULL; | 101 return NULL; |
| 101 } | 102 } |
| 102 | 103 |
| 103 } // namespace bin | 104 } // namespace bin |
| 104 } // namespace dart | 105 } // namespace dart |
| OLD | NEW |