Home
last modified time | relevance | path

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

/external/rust/crates/gdbstub/src/protocol/common/
Dthread_id.rs14 WithID(NonZeroUsize), enumerator
62 id => IdKind::WithID(NonZeroUsize::new(decode_hex(id).map_err(drop)?).ok_or(())?), in try_from()
/external/rust/crates/gdbstub/src/gdbstub_impl/
Dmod.rs618 IdKind::WithID(tid) => TidSelector::WithID(tid), in handle_base()
667 IdKind::WithID(tid) => self.current_mem_tid = tid, in handle_base()
673 IdKind::WithID(tid) => self.current_resume_tid = TidSelector::WithID(tid), in handle_base()
683 pid: Some(IdKind::WithID(FAKE_PID)), in handle_base()
684 tid: IdKind::WithID(SINGLE_THREAD_TID), in handle_base()
697 pid: Some(IdKind::WithID(FAKE_PID)), in handle_base()
698 tid: IdKind::WithID(tid), in handle_base()
720 IdKind::WithID(tid) => match target.base_ops() { in handle_base()
994 self.current_resume_tid = TidSelector::WithID(tid); in finish_vcont()
1000 pid: Some(IdKind::WithID(FAKE_PID)), in finish_vcont()
[all …]
/external/rust/crates/gdbstub/src/target/ext/base/
Dmultithread.rs18 WithID(Tid), enumerator
/external/rust/crates/gdbstub/src/protocol/
Dresponse_writer.rs134 IdKind::WithID(id) => self.write_num(id.get())?, in write_id_kind()