Home
last modified time | relevance | path

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

/art/runtime/jdwp/
Djdwp_main.cc38 JdwpNetStateBase::JdwpNetStateBase(JdwpState* state) in JdwpNetStateBase()
141 bool JdwpState::IsConnected() { in IsConnected()
145 void JdwpState::SendBufferedRequest(uint32_t type, const std::vector<iovec>& iov) { in SendBufferedRequest()
169 void JdwpState::SendRequest(ExpandBuf* pReq) { in SendRequest()
188 uint32_t JdwpState::NextRequestSerial() { in NextRequestSerial()
196 uint32_t JdwpState::NextEventSerial() { in NextEventSerial()
200 JdwpState::JdwpState(const JdwpOptions* options) in JdwpState() function in art::JDWP::JdwpState
235 JdwpState* JdwpState::Create(const JdwpOptions* options) { in Create()
238 std::unique_ptr<JdwpState> state(new JdwpState(options)); in Create()
314 void JdwpState::ResetState() { in ResetState()
[all …]
Djdwp_handler.cc94 static JdwpError FinishInvoke(JdwpState*, Request& request, ExpandBuf* pReply, in FinishInvoke() argument
169 static JdwpError VM_Version(JdwpState*, Request&, ExpandBuf* pReply) in VM_Version() argument
193 static JdwpError VM_ClassesBySignature(JdwpState*, Request& request, ExpandBuf* pReply) in VM_ClassesBySignature() argument
225 static JdwpError VM_AllThreads(JdwpState*, Request&, ExpandBuf* pReply) in VM_AllThreads() argument
241 static JdwpError VM_TopLevelThreadGroups(JdwpState*, Request&, ExpandBuf* pReply) in VM_TopLevelThreadGroups() argument
262 static JdwpError VM_IDSizes(JdwpState*, Request&, ExpandBuf* pReply) in VM_IDSizes() argument
272 static JdwpError VM_Dispose(JdwpState*, Request&, ExpandBuf*) in VM_Dispose() argument
284 static JdwpError VM_Suspend(JdwpState*, Request&, ExpandBuf*) in VM_Suspend() argument
296 static JdwpError VM_Resume(JdwpState*, Request&, ExpandBuf*) in VM_Resume() argument
303 static JdwpError VM_Exit(JdwpState* state, Request& request, ExpandBuf*) in VM_Exit()
[all …]
Djdwp_priv.h46 struct JdwpState;
48 bool InitSocketTransport(JdwpState*, const JdwpOptions*);
49 bool InitAdbTransport(JdwpState*, const JdwpOptions*);
56 explicit JdwpNetStateBase(JdwpState*);
90 JdwpState* state_;
Djdwp_event.cc170 JdwpError JdwpState::RegisterEvent(JdwpEvent* pEvent) { in RegisterEvent()
237 void JdwpState::UnregisterEvent(JdwpEvent* pEvent) { in UnregisterEvent()
301 void JdwpState::UnregisterEventById(uint32_t requestId) { in UnregisterEventById()
330 void JdwpState::UnregisterAll() { in UnregisterAll()
403 void JdwpState::CleanupMatchList(JdwpEvent** match_list, size_t match_count) { in CleanupMatchList()
536 void JdwpState::FindMatchingEvents(JdwpEventKind eventKind, const ModBasket& basket, in FindMatchingEvents()
572 void JdwpState::SuspendByPolicy(JdwpSuspendPolicy suspend_policy, JDWP::ObjectId thread_self_id) { in SuspendByPolicy()
615 void JdwpState::SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy, in SendRequestAndPossiblySuspend()
639 bool JdwpState::InvokeInProgress() { in InvokeInProgress()
654 void JdwpState::SetWaitForEventThread(ObjectId threadId) { in SetWaitForEventThread()
[all …]
Djdwp_socket.cc49 explicit JdwpSocketState(JdwpState* state) : JdwpNetStateBase(state) { in JdwpSocketState()
64 static JdwpSocketState* SocketStartup(JdwpState* state, uint16_t port, bool probe);
69 bool InitSocketTransport(JdwpState* state, const JdwpOptions* options) { in InitSocketTransport()
114 static JdwpSocketState* SocketStartup(JdwpState* state, uint16_t port, bool probe) { in SocketStartup()
Djdwp.h118 struct JdwpState { struct
127 static JdwpState* Create(const JdwpOptions* options)
130 ~JdwpState();
301 explicit JdwpState(const JdwpOptions* options);
Djdwp_adb.cc57 explicit JdwpAdbState(JdwpState* state) : JdwpNetStateBase(state) { in JdwpAdbState()
123 bool InitAdbTransport(JdwpState* state, const JdwpOptions*) { in InitAdbTransport()
/art/runtime/
Ddebugger.cc300 static JDWP::JdwpState* gJdwpState = NULL;
653 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions); in StartJdwp()