Searched refs:networkKeepalives (Results 1 – 1 of 1) sorted by relevance
231 HashMap networkKeepalives = mKeepalives.get(nai); in findFirstFreeSlot() local232 if (networkKeepalives == null) { in findFirstFreeSlot()233 networkKeepalives = new HashMap<Integer, KeepaliveInfo>(); in findFirstFreeSlot()234 mKeepalives.put(nai, networkKeepalives); in findFirstFreeSlot()240 for (slot = 1; slot <= networkKeepalives.size(); slot++) { in findFirstFreeSlot()241 if (networkKeepalives.get(slot) == null) { in findFirstFreeSlot()257 HashMap <Integer, KeepaliveInfo> networkKeepalives = mKeepalives.get(nai); in handleStopAllKeepalives() local258 if (networkKeepalives != null) { in handleStopAllKeepalives()259 for (KeepaliveInfo ki : networkKeepalives.values()) { in handleStopAllKeepalives()262 networkKeepalives.clear(); in handleStopAllKeepalives()[all …]