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

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

Issue 3008433003: [dart:io] Remove socket_unsupported.cc (Closed)
Patch Set: Created 3 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
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.
4
5 #if defined(DART_IO_DISABLED)
6
7 #include "bin/builtin.h"
8 #include "bin/dartutils.h"
9 #include "include/dart_api.h"
10
11 namespace dart {
12 namespace bin {
13
14 void FUNCTION_NAME(Socket_CreateConnect)(Dart_NativeArguments args) {
15 Dart_ThrowException(
16 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
17 }
18
19 void FUNCTION_NAME(Socket_CreateBindConnect)(Dart_NativeArguments args) {
20 Dart_ThrowException(
21 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
22 }
23
24 void FUNCTION_NAME(Socket_CreateBindDatagram)(Dart_NativeArguments args) {
25 Dart_ThrowException(
26 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
27 }
28
29 void FUNCTION_NAME(Socket_Available)(Dart_NativeArguments args) {
30 Dart_ThrowException(
31 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
32 }
33
34 void FUNCTION_NAME(Socket_Read)(Dart_NativeArguments args) {
35 Dart_ThrowException(
36 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
37 }
38
39 void FUNCTION_NAME(Socket_RecvFrom)(Dart_NativeArguments args) {
40 Dart_ThrowException(
41 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
42 }
43
44 void FUNCTION_NAME(Socket_WriteList)(Dart_NativeArguments args) {
45 Dart_ThrowException(
46 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
47 }
48
49 void FUNCTION_NAME(Socket_SendTo)(Dart_NativeArguments args) {
50 Dart_ThrowException(
51 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
52 }
53
54 void FUNCTION_NAME(Socket_GetPort)(Dart_NativeArguments args) {
55 Dart_ThrowException(
56 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
57 }
58
59 void FUNCTION_NAME(Socket_GetRemotePeer)(Dart_NativeArguments args) {
60 Dart_ThrowException(
61 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
62 }
63
64 void FUNCTION_NAME(Socket_GetError)(Dart_NativeArguments args) {
65 Dart_ThrowException(
66 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
67 }
68
69 void FUNCTION_NAME(Socket_GetType)(Dart_NativeArguments args) {
70 Dart_ThrowException(
71 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
72 }
73
74 void FUNCTION_NAME(Socket_GetStdioHandle)(Dart_NativeArguments args) {
75 Dart_ThrowException(
76 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
77 }
78
79 void FUNCTION_NAME(Socket_GetSocketId)(Dart_NativeArguments args) {
80 Dart_ThrowException(
81 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
82 }
83
84 void FUNCTION_NAME(Socket_SetSocketId)(Dart_NativeArguments args) {
85 Dart_ThrowException(
86 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
87 }
88
89 void FUNCTION_NAME(ServerSocket_CreateBindListen)(Dart_NativeArguments args) {
90 Dart_ThrowException(
91 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
92 }
93
94 void FUNCTION_NAME(ServerSocket_Accept)(Dart_NativeArguments args) {
95 Dart_ThrowException(
96 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
97 }
98
99 void FUNCTION_NAME(Socket_GetOption)(Dart_NativeArguments args) {
100 Dart_ThrowException(
101 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
102 }
103
104 void FUNCTION_NAME(Socket_SetOption)(Dart_NativeArguments args) {
105 Dart_ThrowException(
106 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
107 }
108
109 void FUNCTION_NAME(Socket_JoinMulticast)(Dart_NativeArguments args) {
110 Dart_ThrowException(
111 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
112 }
113
114 void FUNCTION_NAME(Socket_LeaveMulticast)(Dart_NativeArguments args) {
115 Dart_ThrowException(
116 DartUtils::NewDartArgumentError("Sockets unsupported on this platform"));
117 }
118
119 } // namespace bin
120 } // namespace dart
121
122 #endif // defined(DART_IO_DISABLED)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698