Searched defs:can_update (Results 1 - 2 of 2) sorted by relevance

/external/lldb/source/Target/
H A DThreadList.cpp89 ThreadList::GetSize (bool can_update) argument
92 if (can_update)
98 ThreadList::GetThreadAtIndex (uint32_t idx, bool can_update) argument
101 if (can_update)
111 ThreadList::FindThreadByID (lldb::tid_t tid, bool can_update) argument
115 if (can_update)
133 ThreadList::FindThreadByProtocolID (lldb::tid_t tid, bool can_update) argument
137 if (can_update)
156 ThreadList::RemoveThreadByID (lldb::tid_t tid, bool can_update) argument
160 if (can_update)
179 RemoveThreadByProtocolID(lldb::tid_t tid, bool can_update) argument
226 FindThreadByIndexID(uint32_t index_id, bool can_update) argument
[all...]
/external/lldb/source/API/
H A DSBProcess.cpp247 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);

Completed in 273 milliseconds