HomeSort by relevance Sort by last modified time
    Searched refs:JdwpState (Results 1 - 10 of 10) sorted by null

  /art/runtime/jdwp/
jdwp_priv.h 63 struct JdwpState;
65 bool InitSocketTransport(JdwpState*, const JdwpOptions*);
66 bool InitAdbTransport(JdwpState*, const JdwpOptions*);
73 explicit JdwpNetStateBase(JdwpState*);
111 JdwpState* state_;
jdwp_main.cc 39 JdwpNetStateBase::JdwpNetStateBase(JdwpState* state)
149 bool JdwpState::IsConnected() {
153 void JdwpState::SendBufferedRequest(uint32_t type, const std::vector<iovec>& iov) {
177 void JdwpState::SendRequest(ExpandBuf* pReq) {
196 uint32_t JdwpState::NextRequestSerial() {
204 uint32_t JdwpState::NextEventSerial() {
208 JdwpState::JdwpState(const JdwpOptions* options)
243 JdwpState* JdwpState::Create(const JdwpOptions* options)
    [all...]
jdwp_handler.cc 84 static JdwpError RequestInvoke(JdwpState*, Request* request,
125 static JdwpError VM_Version(JdwpState*, Request*, ExpandBuf* pReply)
149 static JdwpError VM_ClassesBySignature(JdwpState*, Request* request, ExpandBuf* pReply)
181 static JdwpError VM_AllThreads(JdwpState*, Request*, ExpandBuf* pReply)
197 static JdwpError VM_TopLevelThreadGroups(JdwpState*, Request*, ExpandBuf* pReply)
216 static JdwpError VM_IDSizes(JdwpState*, Request*, ExpandBuf* pReply)
226 static JdwpError VM_Dispose(JdwpState*, Request*, ExpandBuf*)
238 static JdwpError VM_Suspend(JdwpState*, Request*, ExpandBuf*)
250 static JdwpError VM_Resume(JdwpState*, Request*, ExpandBuf*)
256 static JdwpError VM_Exit(JdwpState* state, Request* request, ExpandBuf*
    [all...]
jdwp_event.cc 186 JdwpError JdwpState::RegisterEvent(JdwpEvent* pEvent) {
259 void JdwpState::UnregisterEvent(JdwpEvent* pEvent) {
316 void JdwpState::UnregisterEventById(uint32_t requestId) {
337 // event notification (see JdwpState::CleanupMatchList).
345 void JdwpState::UnregisterAll() {
408 void JdwpState::CleanupMatchList(const std::vector<JdwpEvent*>& match_list) {
534 void JdwpState::FindMatchingEventsLocked(JdwpEventKind event_kind, const ModBasket& basket,
554 bool JdwpState::FindMatchingEvents(JdwpEventKind event_kind, const ModBasket& basket,
584 void JdwpState::SuspendByPolicy(JdwpSuspendPolicy suspend_policy, JDWP::ObjectId thread_self_id) {
619 void JdwpState::SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy
    [all...]
jdwp.h 123 struct JdwpState {
130 * Returns a newly-allocated JdwpState struct on success, or nullptr on failure.
132 static JdwpState* Create(const JdwpOptions* options)
135 ~JdwpState();
299 explicit JdwpState(const JdwpOptions* options);
jdwp_socket.cc 49 explicit JdwpSocketState(JdwpState* state) : JdwpNetStateBase(state) {
64 static JdwpSocketState* SocketStartup(JdwpState* state, uint16_t port, bool probe);
69 bool InitSocketTransport(JdwpState* state, const JdwpOptions* options) {
114 static JdwpSocketState* SocketStartup(JdwpState* state, uint16_t port, bool probe) {
jdwp_adb.cc 57 explicit JdwpAdbState(JdwpState* state) : JdwpNetStateBase(state) {
123 bool InitAdbTransport(JdwpState* state, const JdwpOptions*) {
  /art/runtime/
debugger.h 633 // JdwpState::ProcessRequest). The reply will be sent by the event thread itself after method
733 static JDWP::JdwpState* GetJdwpState();
    [all...]
debugger.cc 370 static JDWP::JdwpState* gJdwpState = nullptr;
588 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
    [all...]
  /art/runtime/hprof/
hprof.cc 699 JDWP::JdwpState* state = Dbg::GetJdwpState();
    [all...]

Completed in 420 milliseconds