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()
140 bool JdwpState::IsConnected() { in IsConnected()
144 void JdwpState::SendBufferedRequest(uint32_t type, const std::vector<iovec>& iov) { in SendBufferedRequest()
168 void JdwpState::SendRequest(ExpandBuf* pReq) { in SendRequest()
187 uint32_t JdwpState::NextRequestSerial() { in NextRequestSerial()
195 uint32_t JdwpState::NextEventSerial() { in NextEventSerial()
199 JdwpState::JdwpState(const JdwpOptions* options) in JdwpState() function in art::JDWP::JdwpState
231 JdwpState* JdwpState::Create(const JdwpOptions* options) { in Create()
234 UniquePtr<JdwpState> state(new JdwpState(options)); in Create()
322 void JdwpState::ResetState() { in ResetState()
[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_handler.cc94 static JdwpError FinishInvoke(JdwpState*, Request& request, ExpandBuf* pReply, in FinishInvoke() argument
161 static JdwpError VM_Version(JdwpState*, Request&, ExpandBuf* pReply) in VM_Version() argument
185 static JdwpError VM_ClassesBySignature(JdwpState*, Request& request, ExpandBuf* pReply) in VM_ClassesBySignature() argument
217 static JdwpError VM_AllThreads(JdwpState*, Request&, ExpandBuf* pReply) in VM_AllThreads() argument
233 static JdwpError VM_TopLevelThreadGroups(JdwpState*, Request&, ExpandBuf* pReply) in VM_TopLevelThreadGroups() argument
254 static JdwpError VM_IDSizes(JdwpState*, Request&, ExpandBuf* pReply) in VM_IDSizes() argument
264 static JdwpError VM_Dispose(JdwpState*, Request&, ExpandBuf*) in VM_Dispose() argument
276 static JdwpError VM_Suspend(JdwpState*, Request&, ExpandBuf*) in VM_Suspend() argument
288 static JdwpError VM_Resume(JdwpState*, Request&, ExpandBuf*) in VM_Resume() argument
294 static JdwpError VM_Exit(JdwpState* state, Request& request, ExpandBuf*) in VM_Exit()
[all …]
Djdwp_event.cc145 JdwpError JdwpState::RegisterEvent(JdwpEvent* pEvent) { in RegisterEvent()
195 void JdwpState::UnregisterEvent(JdwpEvent* pEvent) { in UnregisterEvent()
237 void JdwpState::UnregisterEventById(uint32_t requestId) { in UnregisterEventById()
257 void JdwpState::UnregisterAll() { in UnregisterAll()
330 void JdwpState::CleanupMatchList(JdwpEvent** match_list, int match_count) { in CleanupMatchList()
457 void JdwpState::FindMatchingEvents(JdwpEventKind eventKind, ModBasket* basket, in FindMatchingEvents()
496 void JdwpState::SuspendByPolicy(JdwpSuspendPolicy suspend_policy, JDWP::ObjectId thread_self_id) { in SuspendByPolicy()
547 void JdwpState::SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy, in SendRequestAndPossiblySuspend()
571 bool JdwpState::InvokeInProgress() { in InvokeInProgress()
586 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.h105 struct JdwpState { struct
114 static JdwpState* Create(const JdwpOptions* options)
117 ~JdwpState();
269 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.cc170 static JDWP::JdwpState* gJdwpState = NULL;
450 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions); in StartJdwp()