Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(832)

Side by Side Diff: runtime/bin/io_natives.cc

Issue 21716004: dart:io | Add SecureSocket.importPrivateCertificates, that reads a PKCS#12 file. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add delayed deletion of locked temp directory on Windows. Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/bin/net/nss.gyp » ('j') | tests/standalone/io/user_certificate_test.dart » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
43 V(Process_Sleep, 1) \ 43 V(Process_Sleep, 1) \
44 V(Process_Pid, 1) \ 44 V(Process_Pid, 1) \
45 V(SecureSocket_Connect, 9) \ 45 V(SecureSocket_Connect, 9) \
46 V(SecureSocket_Destroy, 1) \ 46 V(SecureSocket_Destroy, 1) \
47 V(SecureSocket_Handshake, 1) \ 47 V(SecureSocket_Handshake, 1) \
48 V(SecureSocket_Init, 1) \ 48 V(SecureSocket_Init, 1) \
49 V(SecureSocket_PeerCertificate, 1) \ 49 V(SecureSocket_PeerCertificate, 1) \
50 V(SecureSocket_RegisterBadCertificateCallback, 2) \ 50 V(SecureSocket_RegisterBadCertificateCallback, 2) \
51 V(SecureSocket_RegisterHandshakeCompleteCallback, 2) \ 51 V(SecureSocket_RegisterHandshakeCompleteCallback, 2) \
52 V(SecureSocket_Renegotiate, 4) \ 52 V(SecureSocket_Renegotiate, 4) \
53 V(SecureSocket_InitializeLibrary, 3) \ 53 V(SecureSocket_InitializeLibrary, 4) \
54 V(SecureSocket_AddCertificate, 2) \ 54 V(SecureSocket_AddCertificate, 2) \
55 V(SecureSocket_ChangeTrust, 2) \
56 V(SecureSocket_ImportCertificatesWithPrivateKeys, 2) \
57 V(SecureSocket_GetCertificate, 1) \
58 V(SecureSocket_RemoveCertificate, 1) \
55 V(SecureSocket_NewServicePort, 0) \ 59 V(SecureSocket_NewServicePort, 0) \
56 V(SecureSocket_FilterPointer, 1) \ 60 V(SecureSocket_FilterPointer, 1) \
57 V(ServerSocket_CreateBindListen, 5) \ 61 V(ServerSocket_CreateBindListen, 5) \
58 V(ServerSocket_Accept, 2) \ 62 V(ServerSocket_Accept, 2) \
59 V(Socket_CreateConnect, 3) \ 63 V(Socket_CreateConnect, 3) \
60 V(Socket_Available, 1) \ 64 V(Socket_Available, 1) \
61 V(Socket_Read, 2) \ 65 V(Socket_Read, 2) \
62 V(Socket_WriteList, 4) \ 66 V(Socket_WriteList, 4) \
63 V(Socket_GetPort, 1) \ 67 V(Socket_GetPort, 1) \
64 V(Socket_GetRemotePeer, 1) \ 68 V(Socket_GetRemotePeer, 1) \
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 if (!strcmp(function_name, entry->name_) && 101 if (!strcmp(function_name, entry->name_) &&
98 (entry->argument_count_ == argument_count)) { 102 (entry->argument_count_ == argument_count)) {
99 return reinterpret_cast<Dart_NativeFunction>(entry->function_); 103 return reinterpret_cast<Dart_NativeFunction>(entry->function_);
100 } 104 }
101 } 105 }
102 return NULL; 106 return NULL;
103 } 107 }
104 108
105 } // namespace bin 109 } // namespace bin
106 } // namespace dart 110 } // namespace dart
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/net/nss.gyp » ('j') | tests/standalone/io/user_certificate_test.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698