HomeSort by relevance Sort by last modified time
    Searched refs:socketId (Results 1 - 5 of 5) sorted by null

  /external/autotest/client/site_tests/network_FirewallHolePunch/src/tcpserver/
tcp-server.js 123 this.serverSocketId = createInfo.socketId;
149 if (info.socketId != this.serverSocketId)
165 if (info.socketId != this.serverSocketId)
171 TcpServer.prototype._onNoMoreConnectionsAvailable = function(socketId) {
174 chrome.sockets.tcp.send(socketId, arrayBuffer,
176 chrome.sockets.tcp.close(socketId);
190 * @param {number} socketId The ID of the server<->client socket
192 function TcpConnection(socketId) {
193 this.socketId = socketId;
    [all...]
  /external/libvncserver/webclients/novnc/include/chrome-app/
tcp-client.js 46 this.socketId = null;
90 socket.write(this.socketId, buf, this._onWriteComplete.bind(this));
110 socket.write(this.socketId, arrayBuffer, this._onWriteComplete.bind(this));
154 socket.disconnect(this.socketId);
172 this.socketId = createInfo.socketId;
173 if (this.socketId > 0) {
174 socket.connect(this.socketId, this.addr, this.port, this._onConnectComplete.bind(this));
207 socket.getInfo(this.socketId, function (info) {
210 socket.read(that.socketId, null, that._onDataRead.bind(that))
    [all...]
  /hardware/ril/libril/
RilSapSocket.h 67 RIL_SOCKET_ID socketId;
154 static RilSapSocket* getSocketById(RIL_SOCKET_ID socketId);
175 static void addSocketToList(const char *socketName, RIL_SOCKET_ID socketid,
207 RIL_SOCKET_ID socketId,
RilSocket.h 132 RilSocket(const char* socketName, RIL_SOCKET_ID socketId) {
134 id = socketId;
RilSapSocket.cpp 57 RLOGD("Socket id:%d", request->socketId);
59 sap_socket = getSocketById(request->socketId);
77 RIL_SOCKET_ID socketId) {
78 RilSapSocket *sap_socket = getSocketById(socketId);
102 RilSapSocket *RilSapSocket::getSocketById(RIL_SOCKET_ID socketId) {
110 if(socketId == current->socket->id) {
153 void RilSapSocket::addSocketToList(const char *socketName, RIL_SOCKET_ID socketid,
159 socket = new RilSapSocket(socketName, socketid, uimFuncs);
216 RIL_SOCKET_ID socketId,
218 RilSocket(socketName, socketId) {
    [all...]

Completed in 1301 milliseconds