Home
last modified time | relevance | path

Searched refs:mThreads (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/libs/hwui/thread/
DTaskManager.cpp42 mThreads.add(new WorkerThread(name)); in TaskManager()
47 for (size_t i = 0; i < mThreads.size(); i++) { in ~TaskManager()
48 mThreads[i]->exit(); in ~TaskManager()
53 return mThreads.size() > 0; in canRunTasks()
57 for (size_t i = 0; i < mThreads.size(); i++) { in stop()
58 mThreads[i]->exit(); in stop()
63 if (mThreads.size() > 0) { in addTaskBase()
69 for (size_t i = 0; i < mThreads.size(); i++) { in addTaskBase()
70 if (mThreads[i]->getTaskCount() < minQueueSize) { in addTaskBase()
71 thread = mThreads[i]; in addTaskBase()
[all …]
DTaskManager.h101 Vector<sp<WorkerThread> > mThreads; variable
/frameworks/opt/telephony/src/java/com/google/android/mms/util/
DPduCache.java75 private final HashMap<Long, HashSet<Uri>> mThreads; field in PduCache
80 mThreads = new HashMap<Long, HashSet<Uri>>(); in PduCache()
104 HashSet<Uri> thread = mThreads.get(threadId); in put()
107 mThreads.put(threadId, thread); in put()
179 mThreads.clear(); in purgeAll()
232 HashSet<Uri> thread = mThreads.get(entry.getThreadId()); in removeFromThreads()
243 HashSet<Uri> thread = mThreads.remove(threadId); in purgeByThreadId()
256 HashSet<Uri> msgBox = mThreads.get(Long.valueOf(entry.getMessageBox())); in removeFromMessageBoxes()
/frameworks/base/core/java/android/net/http/
DRequestQueue.java68 ConnectionThread[] mThreads; field in RequestQueue.ActivePool
79 mThreads = new ConnectionThread[mConnectionCount]; in ActivePool()
82 mThreads[i] = new ConnectionThread( in ActivePool()
89 mThreads[i].start(); in startup()
95 mThreads[i].requestStop(); in shutdown()
107 ConnectionThread rt = mThreads[i]; in startTiming()
118 ConnectionThread rt = mThreads[i]; in stopTiming()
132 dump.append(mThreads[i] + "\n"); in logState()
147 Connection connection = mThreads[i].mConnection; in disablePersistence()
158 for (int i = 0; i < mThreads.length; i++) { in getThread()
[all …]