Home
last modified time | relevance | path

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

/art/runtime/jdwp/
Djdwp_main.cc43 JdwpNetStateBase::JdwpNetStateBase(JdwpState* state) in JdwpNetStateBase()
156 bool JdwpState::IsConnected() { in IsConnected()
160 void JdwpState::SendBufferedRequest(uint32_t type, const std::vector<iovec>& iov) { in SendBufferedRequest()
184 void JdwpState::SendRequest(ExpandBuf* pReq) { in SendRequest()
203 uint32_t JdwpState::NextRequestSerial() { in NextRequestSerial()
211 uint32_t JdwpState::NextEventSerial() { in NextEventSerial()
215 JdwpState::JdwpState(const JdwpOptions* options) in JdwpState() function in art::JDWP::JdwpState
251 JdwpState* JdwpState::Create(const JdwpOptions* options) { in Create()
254 std::unique_ptr<JdwpState> state(new JdwpState(options)); in Create()
330 void JdwpState::ResetState() { in ResetState()
[all …]
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_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.h124 struct JdwpState { struct
136 static JdwpState* Create(const JdwpOptions* options)
139 ~JdwpState();
302 explicit JdwpState(const JdwpOptions* options);
Djdwp_adb.cc69 explicit JdwpAdbState(JdwpState* state) in JdwpAdbState()
154 bool InitAdbTransport(JdwpState* state, const JdwpOptions*) { in InitAdbTransport()
/art/runtime/
Ddebugger.h705 static JDWP::JdwpState* GetJdwpState();
Ddebugger.cc294 static JDWP::JdwpState* gJdwpState = nullptr;
510 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions); in StartJdwp()
4466 JDWP::JdwpState* Dbg::GetJdwpState() { in GetJdwpState()
/art/runtime/hprof/
Dhprof.cc811 JDWP::JdwpState* state = Dbg::GetJdwpState(); in DumpToDdmsDirect()
/art/runtime/openjdkjvmti/
Dti_redefine.cc1183 art::JDWP::JdwpState* state = art::Dbg::GetJdwpState(); in UnregisterBreakpoints()