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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 V(Process_Start, 10) \ | 47 V(Process_Start, 10) \ |
48 V(Process_Wait, 5) \ | 48 V(Process_Wait, 5) \ |
49 V(Process_Kill, 3) \ | 49 V(Process_Kill, 3) \ |
50 V(Process_SetExitCode, 1) \ | 50 V(Process_SetExitCode, 1) \ |
51 V(Process_GetExitCode, 0) \ | 51 V(Process_GetExitCode, 0) \ |
52 V(Process_Exit, 1) \ | 52 V(Process_Exit, 1) \ |
53 V(Process_Sleep, 1) \ | 53 V(Process_Sleep, 1) \ |
54 V(Process_Pid, 1) \ | 54 V(Process_Pid, 1) \ |
55 V(Process_SetSignalHandler, 1) \ | 55 V(Process_SetSignalHandler, 1) \ |
56 V(Process_ClearSignalHandler, 1) \ | 56 V(Process_ClearSignalHandler, 1) \ |
57 V(SecureSocket_Connect, 9) \ | 57 V(SecureSocket_Connect, 10) \ |
58 V(SecureSocket_Destroy, 1) \ | 58 V(SecureSocket_Destroy, 1) \ |
| 59 V(SecureSocket_FilterPointer, 1) \ |
| 60 V(SecureSocket_GetSelectedProtocol, 1) \ |
59 V(SecureSocket_Handshake, 1) \ | 61 V(SecureSocket_Handshake, 1) \ |
60 V(SecureSocket_Init, 1) \ | 62 V(SecureSocket_Init, 1) \ |
| 63 V(SecureSocket_InitializeLibrary, 3) \ |
61 V(SecureSocket_PeerCertificate, 1) \ | 64 V(SecureSocket_PeerCertificate, 1) \ |
62 V(SecureSocket_RegisterBadCertificateCallback, 2) \ | 65 V(SecureSocket_RegisterBadCertificateCallback, 2) \ |
63 V(SecureSocket_RegisterHandshakeCompleteCallback, 2) \ | 66 V(SecureSocket_RegisterHandshakeCompleteCallback, 2) \ |
64 V(SecureSocket_Renegotiate, 4) \ | 67 V(SecureSocket_Renegotiate, 4) \ |
65 V(SecureSocket_InitializeLibrary, 3) \ | 68 V(ServerSocket_Accept, 2) \ |
66 V(SecureSocket_FilterPointer, 1) \ | |
67 V(ServerSocket_CreateBindListen, 5) \ | 69 V(ServerSocket_CreateBindListen, 5) \ |
68 V(ServerSocket_Accept, 2) \ | |
69 V(Socket_CreateConnect, 3) \ | 70 V(Socket_CreateConnect, 3) \ |
70 V(Socket_CreateBindDatagram, 4) \ | 71 V(Socket_CreateBindDatagram, 4) \ |
71 V(Socket_Available, 1) \ | 72 V(Socket_Available, 1) \ |
72 V(Socket_Read, 2) \ | 73 V(Socket_Read, 2) \ |
73 V(Socket_RecvFrom, 1) \ | 74 V(Socket_RecvFrom, 1) \ |
74 V(Socket_WriteList, 4) \ | 75 V(Socket_WriteList, 4) \ |
75 V(Socket_SendTo, 6) \ | 76 V(Socket_SendTo, 6) \ |
76 V(Socket_GetPort, 1) \ | 77 V(Socket_GetPort, 1) \ |
77 V(Socket_GetRemotePeer, 1) \ | 78 V(Socket_GetRemotePeer, 1) \ |
78 V(Socket_GetError, 1) \ | 79 V(Socket_GetError, 1) \ |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 struct NativeEntries* entry = &(IOEntries[i]); | 133 struct NativeEntries* entry = &(IOEntries[i]); |
133 if (reinterpret_cast<Dart_NativeFunction>(entry->function_) == nf) { | 134 if (reinterpret_cast<Dart_NativeFunction>(entry->function_) == nf) { |
134 return reinterpret_cast<const uint8_t*>(entry->name_); | 135 return reinterpret_cast<const uint8_t*>(entry->name_); |
135 } | 136 } |
136 } | 137 } |
137 return NULL; | 138 return NULL; |
138 } | 139 } |
139 | 140 |
140 } // namespace bin | 141 } // namespace bin |
141 } // namespace dart | 142 } // namespace dart |
OLD | NEW |