Searched refs:curPing (Results 1 – 1 of 1) sorted by relevance
187 for (ActivePing curPing : mActivePings) { in handleMessage()192 curPing.socket.receive(replyPacket); in handleMessage()194 if (responseBuf[0] == (byte) (curPing.packetId >> 8) && in handleMessage()195 responseBuf[1] == (byte) curPing.packetId) { in handleMessage()196 curPing.result = in handleMessage()197 (int) (SystemClock.elapsedRealtime() - curPing.start); in handleMessage()209 curPing.result = SOCKET_EXCEPTION; in handleMessage()214 ActivePing curPing = iter.next(); in handleMessage() local215 if (curPing.result != null) { in handleMessage()216 sendResponse(curPing.internalId, curPing.packetId, curPing.result); in handleMessage()[all …]