Home
last modified time | relevance | path

Searched refs:mRequestMap (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
DHandleMap.java88 Map<Integer, Integer> mRequestMap = null; field in HandleMap
93 mRequestMap = new HashMap<Integer, Integer>(); in HandleMap()
98 mRequestMap.clear(); in clear()
179 mRequestMap.put(requestId, handle); in addRequest()
183 mRequestMap.remove(requestId); in deleteRequest()
187 Integer handle = mRequestMap.get(requestId); in getByRequestId()
201 sb.append(" Requests: " + mRequestMap.size() + "\n"); in dump()
/packages/apps/Email/provider_src/com/android/email/service/
DAttachmentService.java287 final ConcurrentHashMap<Long, DownloadRequest> mRequestMap = field in AttachmentService.DownloadQueue
313 final boolean exists = mRequestMap.containsKey(requestId); in addRequest()
316 mRequestMap.put(requestId, request); in addRequest()
341 mRequestMap.remove(request.mAttachmentId); in removeRequest()
358 mRequestMap.remove(requestId); in getNextRequest()
377 return mRequestMap.get(requestId); in findRequestById()
383 return mRequestMap.size(); in getSize()
389 return mRequestMap.isEmpty(); in isEmpty()
1330 for (final DownloadRequest req : mDownloadQueue.mRequestMap.values()) { in dump()