HomeSort by relevance Sort by last modified time
    Searched defs:socket_id (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/chrome/browser/extensions/api/socket/
socket_apitest.cc 72 int socket_id = -1; local
73 EXPECT_TRUE(value->GetInteger("socketId", &socket_id));
74 EXPECT_GT(socket_id, 0);
90 int socket_id = -1; local
91 EXPECT_TRUE(value->GetInteger("socketId", &socket_id));
92 ASSERT_GT(socket_id, 0);
  /external/chromium_org/content/browser/renderer_host/
socket_stream_host.h 24 // socket_id assigned by SocketStreamHost constructor. If socket id is
34 int socket_id);
37 // Gets socket_id associated with |socket|.
41 int socket_id() const { return socket_id_; } function in class:content::SocketStreamHost
socket_stream_host.cc 20 explicit SocketStreamId(int socket_id) : socket_id_(socket_id) {}
22 int socket_id() const { return socket_id_; } function in class:content::__anon11686::SocketStreamId
34 int socket_id)
38 socket_id_(socket_id) {
41 << " socket_id=" << socket_id_;
50 return socket_stream_id->socket_id();
56 VLOG(1) << "SocketStreamHost destructed socket_id=" << socket_id_;
socket_stream_dispatcher_host.cc 62 int socket_id = SocketStreamHost::SocketIdFromSocketStream(socket); local
63 DVLOG(2) << "SocketStreamDispatcherHost::OnConnected socket_id=" << socket_id
65 if (socket_id == kNoSocketId) {
70 socket_id, max_pending_send_allowed))) {
72 DeleteSocketStreamHost(socket_id);
78 int socket_id = SocketStreamHost::SocketIdFromSocketStream(socket); local
79 DVLOG(2) << "SocketStreamDispatcherHost::OnSentData socket_id=" << socket_id
81 if (socket_id == kNoSocketId)
93 int socket_id = SocketStreamHost::SocketIdFromSocketStream(socket); local
108 int socket_id = SocketStreamHost::SocketIdFromSocketStream(socket); local
119 int socket_id = SocketStreamHost::SocketIdFromSocketStream(socket); local
136 int socket_id = SocketStreamHost::SocketIdFromSocketStream(socket); local
154 int socket_id = SocketStreamHost::SocketIdFromSocketStream(socket); local
173 int socket_id = SocketStreamHost::SocketIdFromSocketStream(request); local
193 int socket_id = id.request_id; local
207 int socket_id = id.request_id; local
228 << " socket_id=" << socket_id; local
299 int socket_id = iter.GetCurrentKey(); local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/bluetooth_socket/
bluetooth_socket_event_dispatcher.h 39 void OnSocketConnect(const std::string& extension_id, int socket_id);
42 void OnSocketListen(const std::string& extension_id, int socket_id);
45 void OnSocketResume(const std::string& extension_id, int socket_id);
73 int socket_id; member in struct:extensions::api::BluetoothSocketEventDispatcher::SocketParams
bluetooth_socket_api.cc 32 linked_ptr<SocketInfo> CreateSocketInfo(int socket_id,
38 socket_info->socket_id = socket_id;
174 create_info.socket_id = AddSocket(socket);
190 BluetoothApiSocket* socket = GetSocket(params_->socket_id);
214 BluetoothApiSocket* socket = GetSocket(params_->socket_id);
224 params_->socket_id);
252 BluetoothApiSocket* socket = GetSocket(socket_id());
288 BluetoothApiSocket* api_socket = GetSocket(socket_id());
297 socket_event_dispatcher_->OnSocketListen(extension_id(), socket_id());
316 int BluetoothSocketListenUsingRfcommFunction::socket_id() const { function in class:extensions::api::BluetoothSocketListenUsingRfcommFunction
357 int BluetoothSocketListenUsingL2capFunction::socket_id() const { function in class:extensions::api::BluetoothSocketListenUsingL2capFunction
608 int socket_id = *it; local
    [all...]
  /external/chromium_org/extensions/browser/api/sockets_tcp/
tcp_socket_event_dispatcher.h 33 void OnSocketConnect(const std::string& extension_id, int socket_id);
36 void OnSocketResume(const std::string& extension_id, int socket_id);
63 int socket_id; member in struct:extensions::core_api::TCPSocketEventDispatcher::ReadParams
67 void StartSocketRead(const std::string& extension_id, int socket_id);
sockets_tcp_api.cc 22 linked_ptr<SocketInfo> CreateSocketInfo(int socket_id,
27 socket_info->socket_id = socket_id;
90 ResumableTCPSocket* TCPSocketAsyncApiFunction::GetTcpSocket(int socket_id) {
91 return static_cast<ResumableTCPSocket*>(GetSocket(socket_id));
104 int socket_id) {
105 return static_cast<ResumableTCPSocket*>(GetSocket(socket_id));
127 create_info.socket_id = AddSocket(socket);
142 ResumableTCPSocket* socket = GetTcpSocket(params_->socket_id);
171 ResumableTCPSocket* socket = GetTcpSocket(params_->socket_id);
434 int socket_id = *it; local
    [all...]
  /external/chromium_org/extensions/browser/api/sockets_udp/
udp_socket_event_dispatcher.h 33 void OnSocketBind(const std::string& extension_id, int socket_id);
36 void OnSocketResume(const std::string& extension_id, int socket_id);
63 int socket_id; member in struct:extensions::core_api::UDPSocketEventDispatcher::ReceiveParams
sockets_udp_api.cc 31 ResumableUDPSocket* UDPSocketAsyncApiFunction::GetUdpSocket(int socket_id) {
32 return static_cast<ResumableUDPSocket*>(GetSocket(socket_id));
45 int socket_id) {
46 return static_cast<ResumableUDPSocket*>(GetSocket(socket_id));
50 int socket_id,
56 socket_info->socket_id = socket_id;
109 create_info.socket_id = AddSocket(socket);
124 ResumableUDPSocket* socket = GetUdpSocket(params_->socket_id);
153 ResumableUDPSocket* socket = GetUdpSocket(params_->socket_id);
348 int socket_id = *it; local
    [all...]
  /external/chromium_org/extensions/browser/api/sockets_tcp_server/
tcp_server_socket_event_dispatcher.h 34 void OnServerSocketListen(const std::string& extension_id, int socket_id);
37 void OnServerSocketResume(const std::string& extension_id, int socket_id);
68 int socket_id; member in struct:extensions::core_api::TCPServerSocketEventDispatcher::AcceptParams
72 void StartSocketAccept(const std::string& extension_id, int socket_id);
sockets_tcp_server_api.cc 26 linked_ptr<SocketInfo> CreateSocketInfo(int socket_id,
31 socket_info->socket_id = socket_id;
73 int socket_id) {
74 return static_cast<ResumableTCPServerSocket*>(GetSocket(socket_id));
98 create_info.socket_id = AddSocket(socket);
113 ResumableTCPServerSocket* socket = GetTcpSocket(params_->socket_id);
143 ResumableTCPServerSocket* socket = GetTcpSocket(params_->socket_id);
153 params_->socket_id);
180 ResumableTCPServerSocket* socket = GetTcpSocket(params_->socket_id);
287 int socket_id = *it; local
    [all...]
  /external/chromium_org/content/child/
socket_stream_dispatcher.cc 196 void SocketStreamDispatcher::OnConnected(int socket_id,
199 << max_pending_send_allowed << ") to socket_id=" << socket_id; local
202 IPCWebSocketStreamHandleBridge::FromSocketId(socket_id);
206 DLOG(ERROR) << "No bridge for socket_id=" << socket_id;
209 void SocketStreamDispatcher::OnSentData(int socket_id, int amount_sent) {
211 << " bytes) to socket_id=" << socket_id; local
214 IPCWebSocketStreamHandleBridge::FromSocketId(socket_id);
    [all...]
  /external/bluetooth/bluedroid/btif/include/
btif_hl.h 134 int socket_id[2]; member in struct:__anon5646
  /hardware/ril/libril/
ril.cpp 141 RIL_SOCKET_ID socket_id; member in struct:android::RequestInfo
152 RIL_SOCKET_ID socket_id; member in struct:android::SocketListenParam
166 extern "C" const char * rilSocketIdToString(RIL_SOCKET_ID socket_id);
250 static int sendResponse (Parcel &p, RIL_SOCKET_ID socket_id);
314 size_t datalen, RIL_SOCKET_ID socket_id);
411 issueLocalRequest(int request, void *data, int len, RIL_SOCKET_ID socket_id) {
421 if (socket_id == RIL_SOCKET_2) {
432 pRI->socket_id = socket_id;
445 CALL_ONREQUEST(request, data, len, pRI, pRI->socket_id);
3582 RIL_SOCKET_ID socket_id = RIL_SOCKET_1; local
4092 RIL_SOCKET_ID socket_id = RIL_SOCKET_1; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 

Completed in 307 milliseconds