HomeSort by: relevance | last modified time | path
    Searched defs:suspended_threads (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_common.cc 216 static void ProcessThreads(SuspendedThreadsList const &suspended_threads,
218 InternalMmapVector<uptr> registers(suspended_threads.RegisterCount());
222 for (uptr i = 0; i < suspended_threads.ThreadCount(); i++) {
223 tid_t os_id = static_cast<tid_t>(suspended_threads.GetThreadID(i));
238 suspended_threads.GetRegistersAndSP(i, registers.data(), &sp);
447 static void ClassifyAllChunks(SuspendedThreadsList const &suspended_threads) {
453 ProcessThreads(suspended_threads, &frontier);
531 const InternalMmapVector<tid_t> &suspended_threads = local
534 uptr i = InternalLowerBound(suspended_threads, 0, suspended_threads.size()
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/lsan/
lsan_common.cpp 277 static void ProcessThreads(SuspendedThreadsList const &suspended_threads,
280 for (uptr i = 0; i < suspended_threads.ThreadCount(); i++) {
281 tid_t os_id = static_cast<tid_t>(suspended_threads.GetThreadID(i));
296 suspended_threads.GetRegistersAndSP(i, &registers, &sp);
543 static void ClassifyAllChunks(SuspendedThreadsList const &suspended_threads,
553 ProcessThreads(suspended_threads, frontier);
614 const InternalMmapVector<tid_t> &suspended_threads = local
617 uptr i = InternalLowerBound(suspended_threads, tctx->os_id);
618 if (i >= suspended_threads.size() || suspended_threads[i] != tctx->os_id
    [all...]

Completed in 37 milliseconds