| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 61   V(SecureSocket_Handshake, 1)                                                 \ | 61   V(SecureSocket_Handshake, 1)                                                 \ | 
| 62   V(SecureSocket_Init, 1)                                                      \ | 62   V(SecureSocket_Init, 1)                                                      \ | 
| 63   V(SecureSocket_InitializeLibrary, 3)                                         \ | 63   V(SecureSocket_InitializeLibrary, 3)                                         \ | 
| 64   V(SecureSocket_PeerCertificate, 1)                                           \ | 64   V(SecureSocket_PeerCertificate, 1)                                           \ | 
| 65   V(SecureSocket_RegisterBadCertificateCallback, 2)                            \ | 65   V(SecureSocket_RegisterBadCertificateCallback, 2)                            \ | 
| 66   V(SecureSocket_RegisterHandshakeCompleteCallback, 2)                         \ | 66   V(SecureSocket_RegisterHandshakeCompleteCallback, 2)                         \ | 
| 67   V(SecureSocket_Renegotiate, 4)                                               \ | 67   V(SecureSocket_Renegotiate, 4)                                               \ | 
| 68   V(ServerSocket_Accept, 2)                                                    \ | 68   V(ServerSocket_Accept, 2)                                                    \ | 
| 69   V(ServerSocket_CreateBindListen, 5)                                          \ | 69   V(ServerSocket_CreateBindListen, 5)                                          \ | 
| 70   V(Socket_CreateConnect, 3)                                                   \ | 70   V(Socket_CreateConnect, 3)                                                   \ | 
|  | 71   V(Socket_CreateBindConnect, 4)                                               \ | 
| 71   V(Socket_CreateBindDatagram, 4)                                              \ | 72   V(Socket_CreateBindDatagram, 4)                                              \ | 
| 72   V(Socket_Available, 1)                                                       \ | 73   V(Socket_Available, 1)                                                       \ | 
| 73   V(Socket_Read, 2)                                                            \ | 74   V(Socket_Read, 2)                                                            \ | 
| 74   V(Socket_RecvFrom, 1)                                                        \ | 75   V(Socket_RecvFrom, 1)                                                        \ | 
| 75   V(Socket_WriteList, 4)                                                       \ | 76   V(Socket_WriteList, 4)                                                       \ | 
| 76   V(Socket_SendTo, 6)                                                          \ | 77   V(Socket_SendTo, 6)                                                          \ | 
| 77   V(Socket_GetPort, 1)                                                         \ | 78   V(Socket_GetPort, 1)                                                         \ | 
| 78   V(Socket_GetRemotePeer, 1)                                                   \ | 79   V(Socket_GetRemotePeer, 1)                                                   \ | 
| 79   V(Socket_GetError, 1)                                                        \ | 80   V(Socket_GetError, 1)                                                        \ | 
| 80   V(Socket_GetStdioHandle, 2)                                                  \ | 81   V(Socket_GetStdioHandle, 2)                                                  \ | 
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 133     struct NativeEntries* entry = &(IOEntries[i]); | 134     struct NativeEntries* entry = &(IOEntries[i]); | 
| 134     if (reinterpret_cast<Dart_NativeFunction>(entry->function_) == nf) { | 135     if (reinterpret_cast<Dart_NativeFunction>(entry->function_) == nf) { | 
| 135       return reinterpret_cast<const uint8_t*>(entry->name_); | 136       return reinterpret_cast<const uint8_t*>(entry->name_); | 
| 136     } | 137     } | 
| 137   } | 138   } | 
| 138   return NULL; | 139   return NULL; | 
| 139 } | 140 } | 
| 140 | 141 | 
| 141 }  // namespace bin | 142 }  // namespace bin | 
| 142 }  // namespace dart | 143 }  // namespace dart | 
| OLD | NEW | 
|---|