HomeSort by relevance Sort by last modified time
    Searched refs:can_update (Results 1 - 3 of 3) sorted by null

  /external/lldb/include/lldb/Target/
ThreadList.h 42 GetSize(bool can_update = true);
71 GetThreadAtIndex (uint32_t idx, bool can_update = true);
74 FindThreadByID (lldb::tid_t tid, bool can_update = true);
77 FindThreadByProtocolID (lldb::tid_t tid, bool can_update = true);
80 RemoveThreadByID (lldb::tid_t tid, bool can_update = true);
83 RemoveThreadByProtocolID (lldb::tid_t tid, bool can_update = true);
86 FindThreadByIndexID (uint32_t index_id, bool can_update = true);
  /external/lldb/source/Target/
ThreadList.cpp 89 ThreadList::GetSize (bool can_update)
92 if (can_update)
98 ThreadList::GetThreadAtIndex (uint32_t idx, bool can_update)
101 if (can_update)
111 ThreadList::FindThreadByID (lldb::tid_t tid, bool can_update)
115 if (can_update)
133 ThreadList::FindThreadByProtocolID (lldb::tid_t tid, bool can_update)
137 if (can_update)
156 ThreadList::RemoveThreadByID (lldb::tid_t tid, bool can_update)
160 if (can_update)
    [all...]
  /external/lldb/source/API/
SBProcess.cpp 247 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock()); local
249 num_threads = process_sp->GetThreadList().GetSize(can_update);
518 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock()); local
520 thread_sp = process_sp->GetThreadList().GetThreadAtIndex(index, can_update);
856 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock()); local
857 thread_sp = process_sp->GetThreadList().FindThreadByID (tid, can_update);
883 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock()); local
884 thread_sp = process_sp->GetThreadList().FindThreadByIndexID (index_id, can_update);
    [all...]

Completed in 201 milliseconds