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

  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
WebSocketChannelClient.java 48 private String clientID;
77 clientID = null;
108 public void register(final String roomID, final String clientID) {
111 this.clientID = clientID;
116 Log.d(TAG, "Registering WebSocket for room " + roomID + ". CLientID: " + clientID);
121 json.put("clientid", clientID);
221 String postUrl = postServerUrl + "/" + roomID + "/" + clientID;
    [all...]
  /frameworks/base/services/core/java/com/android/server/
NsdService.java 258 private void storeRequestMap(int clientId, int globalId, ClientInfo clientInfo, int what) {
259 clientInfo.mClientIds.put(clientId, globalId);
260 clientInfo.mClientRequests.put(clientId, what);
264 private void removeRequestMap(int clientId, int globalId, ClientInfo clientInfo) {
265 clientInfo.mClientIds.remove(clientId);
266 clientInfo.mClientRequests.remove(clientId);
420 int clientId = clientInfo.getClientId(id);
421 if (clientId < 0) {
436 clientId, servInfo);
443 clientId, servInfo)
    [all...]

Completed in 58 milliseconds