HomeSort by relevance Sort by last modified time
    Searched full:net_result (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_tcp_server_socket_message_filter.cc 135 int net_result = socket_->Accept( local
140 if (net_result != net::ERR_IO_PENDING)
141 OnAcceptCompleted(reply_context, net_result);
173 int net_result = net::OK; local
176 net_result = socket_->Open(ip_end_point.GetFamily());
177 if (net_result != net::OK)
179 net_result = socket_->SetDefaultOptionsForServer();
180 if (net_result != net::OK)
182 net_result = socket_->Bind(ip_end_point);
183 if (net_result != net::OK
    [all...]
pepper_tcp_socket.cc 92 int net_result = resolver_->Resolve( local
98 if (net_result != net::ERR_IO_PENDING)
99 OnResolveCompleted(net_result);
162 int net_result = socket_->Connect( local
165 if (net_result != net::ERR_IO_PENDING)
166 OnSSLHandshakeCompleted(net_result);
189 int net_result = socket_->Read( local
193 if (net_result != net::ERR_IO_PENDING)
194 OnReadCompleted(net_result);
287 int net_result = socket_->Connect local
519 int net_result = socket_->Write( local
    [all...]
pepper_tcp_socket_message_filter.cc 298 int net_result = ssl_socket_->Connect( local
301 if (net_result != net::ERR_IO_PENDING)
302 OnSSLHandshakeCompleted(reply_context, net_result);
323 int net_result = net::ERR_FAILED; local
326 net_result = socket_->Read(
333 net_result = ssl_socket_->Read(
339 if (net_result != net::ERR_IO_PENDING)
340 OnReadCompleted(reply_context, net_result);
407 int net_result = socket_->Accept( local
412 if (net_result != net::ERR_IO_PENDING
559 int net_result = resolver_->Resolve( local
606 int net_result = net::ERR_FAILED; local
671 int net_result = net::OK; local
    [all...]
pepper_udp_socket_message_filter.cc 216 int net_result = socket_->RecvFrom( local
223 if (net_result != net::ERR_IO_PENDING)
224 OnRecvFromCompleted(context->MakeReplyMessageContext(), net_result);
351 int net_result = socket_->SendTo( local
358 if (net_result != net::ERR_IO_PENDING)
359 OnSendToCompleted(context, net_result);
371 int net_result) {
375 int32_t pp_result = NetErrorToPepperError(net_result);
398 int net_result) {
402 int32_t pp_result = NetErrorToPepperError(net_result);
    [all...]
pepper_tcp_socket_message_filter.h 117 int net_result);
121 int net_result);
123 int net_result);
125 int net_result);
127 int net_result);
129 int net_result);
pepper_tcp_server_socket_message_filter.h 74 int net_result);
76 int net_result);
pepper_udp_socket_message_filter.h 87 int net_result);
89 int net_result);
pepper_host_resolver_message_filter.h 69 void OnLookupFinished(int net_result,
pepper_host_resolver_message_filter.cc 189 int net_result,
192 if (net_result != net::OK) {
193 SendResolveError(NetErrorToPepperError(net_result), context);
  /external/chromium_org/chrome/browser/extensions/api/sockets_tcp/
sockets_tcp_api.cc 207 int net_result = (success ? net::OK : net::ERR_FAILED); local
208 if (net_result != net::OK)
209 error_ = net::ErrorToString(net_result);
210 results_ = sockets_tcp::SetKeepAlive::Results::Create(net_result);
231 int net_result = (success ? net::OK : net::ERR_FAILED); local
232 if (net_result != net::OK)
233 error_ = net::ErrorToString(net_result);
234 results_ = sockets_tcp::SetNoDelay::Results::Create(net_result);
295 void SocketsTcpConnectFunction::OnCompleted(int net_result) {
296 if (net_result == net::OK)
    [all...]
sockets_tcp_api.h 149 void OnCompleted(int net_result);
186 void OnCompleted(int net_result);
187 void SetSendResult(int net_result, int bytes_sent);
  /external/chromium_org/chrome/browser/extensions/api/sockets_udp/
sockets_udp_api.cc 203 int net_result = socket->Bind(params_->address, params_->port); local
204 if (net_result == net::OK) {
209 if (net_result != net::OK)
210 error_ = net::ErrorToString(net_result);
211 results_ = sockets_udp::Bind::Results::Create(net_result);
269 void SocketsUdpSendFunction::OnCompleted(int net_result) {
270 if (net_result >= net::OK) {
271 SetSendResult(net::OK, net_result);
273 SetSendResult(net_result, -1);
277 void SocketsUdpSendFunction::SetSendResult(int net_result, int bytes_sent)
386 int net_result = socket->JoinGroup(params_->address); local
418 int net_result = socket->LeaveGroup(params_->address); local
443 int net_result = socket->SetMulticastTimeToLive(params_->ttl); local
468 int net_result = socket->SetMulticastLoopbackMode(params_->enabled); local
    [all...]
sockets_udp_api.h 125 void OnCompleted(int net_result);
126 void SetSendResult(int net_result, int bytes_sent);
  /external/chromium_org/chrome/browser/extensions/api/sockets_tcp_server/
sockets_tcp_server_api.cc 191 int net_result = socket->Listen( local
197 if (net_result != net::OK)
198 error_ = net::ErrorToString(net_result);
201 if (net_result == net::OK) {
206 results_ = sockets_tcp_server::Listen::Results::Create(net_result);

Completed in 209 milliseconds