Home
last modified time | relevance | path

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

/aosp12/packages/apps/Messaging/src/com/android/messaging/mmslib/util/
H A DPduCache.java75 private final SimpleArrayMap<Long, HashSet<Uri>> mThreads; field in PduCache
80 mThreads = new SimpleArrayMap<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()
233 HashSet<Uri> thread = mThreads.get(entry.getThreadId()); in removeFromThreads()
244 HashSet<Uri> thread = mThreads.remove(threadId); in purgeByThreadId()
257 HashSet<Uri> msgBox = mThreads.get(Long.valueOf(entry.getMessageBox())); in removeFromMessageBoxes()
/aosp12/frameworks/base/telephony/common/com/google/android/mms/util/
H A DPduCache.java76 private final HashMap<Long, HashSet<Uri>> mThreads; field in PduCache
82 mThreads = new HashMap<Long, HashSet<Uri>>(); in PduCache()
107 HashSet<Uri> thread = mThreads.get(threadId); in put()
110 mThreads.put(threadId, thread); in put()
185 mThreads.clear(); in purgeAll()
238 HashSet<Uri> thread = mThreads.get(entry.getThreadId()); in removeFromThreads()
249 HashSet<Uri> thread = mThreads.remove(threadId); in purgeByThreadId()
262 HashSet<Uri> msgBox = mThreads.get(Long.valueOf(entry.getMessageBox())); in removeFromMessageBoxes()
/aosp12/system/extras/simpleperf/app_api/java/com/android/simpleperf/
H A DRecordOptions.java92 mThreads.addAll(threads); in setSampleThreads()
146 if (mThreads.isEmpty()) { in toRecordArgs()
151 for (int i = 0; i < mThreads.size(); i++) { in toRecordArgs()
155 s += mThreads.get(i).toString(); in toRecordArgs()
189 private ArrayList<Integer> mThreads = new ArrayList<>(); field in RecordOptions
/aosp12/frameworks/base/media/jni/soundpool/
H A DStreamManager.h127 threads = std::move(mThreads); in quit()
128 mThreads.clear(); in quit()
146 for (auto it = mThreads.begin(); it != mThreads.end(); ) { in launch()
149 it = mThreads.erase(it); in launch()
155 const size_t threadCount = mThreads.size(); in launch()
160 mThreads.emplace_back(std::make_unique<JavaThread>( in launch()
189 std::list<std::unique_ptr<JavaThread>> mThreads GUARDED_BY(mThreadLock);
/aosp12/frameworks/native/libs/binder/
H A DRpcSession.cpp139 mThreads[thread.get_id()] = std::move(thread); in preJoin()
163 auto it = mThreads.find(std::this_thread::get_id()); in join()
164 LOG_ALWAYS_FATAL_IF(it == mThreads.end()); in join()
166 mThreads.erase(it); in join()
/aosp12/packages/modules/DnsResolver/tests/
H A Dresolv_tls_unit_test.cpp501 for (auto& thread : mThreads) { in ~FakeSocketLimited()
506 mThreads.clear(); in ~FakeSocketLimited()
525mThreads.emplace_back(&IDnsTlsSocketObserver::onResponse, mObserver, make_echo(id, query)); in query()
541 for (auto& thread : mThreads) { in sendClose()
546 mThreads.clear(); in sendClose()
553 std::vector<std::thread> mThreads GUARDED_BY(mLock);
643mThreads.emplace_back(&IDnsTlsSocketObserver::onResponse, mObserver, make_query(ID + 1, SIZE)); in FakeSocketGarbage()
647 for (auto& thread : mThreads) { in ~FakeSocketGarbage()
655 mThreads.emplace_back(&IDnsTlsSocketObserver::onResponse, mObserver, echo); in query()
656 mThreads.emplace_back(&IDnsTlsSocketObserver::onResponse, mObserver, echo); in query()
[all …]
/aosp12/frameworks/native/libs/binder/include/binder/
H A DRpcSession.h200 std::map<std::thread::id, std::thread> mThreads; variable