Home
last modified time | relevance | path

Searched refs:JdwpState (Results 1 – 10 of 10) sorted by relevance

/art/runtime/jdwp/
Djdwp_handler.cc88 static JdwpError RequestInvoke(JdwpState*, Request* request, in RequestInvoke() argument
129 static JdwpError VM_Version(JdwpState*, Request*, ExpandBuf* pReply) in VM_Version() argument
153 static JdwpError VM_ClassesBySignature(JdwpState*, Request* request, ExpandBuf* pReply) in VM_ClassesBySignature() argument
185 static JdwpError VM_AllThreads(JdwpState*, Request*, ExpandBuf* pReply) in VM_AllThreads() argument
201 static JdwpError VM_TopLevelThreadGroups(JdwpState*, Request*, ExpandBuf* pReply) in VM_TopLevelThreadGroups() argument
220 static JdwpError VM_IDSizes(JdwpState*, Request*, ExpandBuf* pReply) in VM_IDSizes() argument
230 static JdwpError VM_Dispose(JdwpState*, Request*, ExpandBuf*) in VM_Dispose() argument
242 static JdwpError VM_Suspend(JdwpState*, Request*, ExpandBuf*) in VM_Suspend() argument
253 static JdwpError VM_Resume(JdwpState*, Request*, ExpandBuf*) in VM_Resume() argument
259 static JdwpError VM_Exit(JdwpState* state, Request* request, ExpandBuf*) in VM_Exit()
[all …]
Djdwp_main.cc156 JdwpNetStateBase::JdwpNetStateBase(JdwpState* state) in JdwpNetStateBase()
269 bool JdwpState::IsConnected() { in IsConnected()
273 void JdwpState::SendBufferedRequest(uint32_t type, const std::vector<iovec>& iov) { in SendBufferedRequest()
297 void JdwpState::SendRequest(ExpandBuf* pReq) { in SendRequest()
316 uint32_t JdwpState::NextRequestSerial() { in NextRequestSerial()
324 uint32_t JdwpState::NextEventSerial() { in NextEventSerial()
328 JdwpState::JdwpState(const JdwpOptions* options) in JdwpState() function in art::JDWP::JdwpState
364 JdwpState* JdwpState::Create(const JdwpOptions* options) { in Create()
367 std::unique_ptr<JdwpState> state(new JdwpState(options)); in Create()
443 void JdwpState::ResetState() { in ResetState()
[all …]
Djdwp_priv.h65 struct JdwpState;
67 bool InitSocketTransport(JdwpState*, const JdwpOptions*);
68 bool InitAdbTransport(JdwpState*, const JdwpOptions*);
75 explicit JdwpNetStateBase(JdwpState*);
113 JdwpState* state_;
Djdwp_event.cc189 JdwpError JdwpState::RegisterEvent(JdwpEvent* pEvent) { in RegisterEvent()
254 void JdwpState::UnregisterLocationEventsOnClass(ObjPtr<mirror::Class> klass) { in UnregisterLocationEventsOnClass()
299 void JdwpState::UnregisterEvent(JdwpEvent* pEvent) { in UnregisterEvent()
356 void JdwpState::UnregisterEventById(uint32_t requestId) { in UnregisterEventById()
385 void JdwpState::UnregisterAll() { in UnregisterAll()
448 void JdwpState::CleanupMatchList(const std::vector<JdwpEvent*>& match_list) { in CleanupMatchList()
574 void JdwpState::FindMatchingEventsLocked(JdwpEventKind event_kind, const ModBasket& basket, in FindMatchingEventsLocked()
594 bool JdwpState::FindMatchingEvents(JdwpEventKind event_kind, const ModBasket& basket, in FindMatchingEvents()
624 void JdwpState::SuspendByPolicy(JdwpSuspendPolicy suspend_policy, JDWP::ObjectId thread_self_id) { in SuspendByPolicy()
659 void JdwpState::SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy, in SendRequestAndPossiblySuspend()
[all …]
Djdwp_socket.cc50 explicit JdwpSocketState(JdwpState* state) in JdwpSocketState()
67 static JdwpSocketState* SocketStartup(JdwpState* state, uint16_t port, bool probe);
72 bool InitSocketTransport(JdwpState* state, const JdwpOptions* options) { in InitSocketTransport()
117 static JdwpSocketState* SocketStartup(JdwpState* state, uint16_t port, bool probe) { in SocketStartup()
Djdwp.h128 struct JdwpState { struct
140 static JdwpState* Create(const JdwpOptions* options)
143 ~JdwpState();
306 explicit JdwpState(const JdwpOptions* options);
Djdwp_adb.cc68 explicit JdwpAdbState(JdwpState* state) in JdwpAdbState()
153 bool InitAdbTransport(JdwpState* state, const JdwpOptions*) { in InitAdbTransport()
/art/runtime/
Ddebugger.h725 static JDWP::JdwpState* GetJdwpState();
Ddebugger.cc313 static JDWP::JdwpState* gJdwpState = nullptr;
576 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions); in StartJdwp()
4571 JDWP::JdwpState* Dbg::GetJdwpState() { in GetJdwpState()
/art/openjdkjvmti/
Dti_redefine.cc1245 art::JDWP::JdwpState* state = art::Dbg::GetJdwpState(); in UnregisterBreakpoints()