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

  /art/runtime/jdwp/
jdwp_priv.h 46 struct JdwpState;
48 bool InitSocketTransport(JdwpState*, const JdwpOptions*);
49 bool InitAdbTransport(JdwpState*, const JdwpOptions*);
56 explicit JdwpNetStateBase(JdwpState*);
90 JdwpState* state_;
jdwp_main.cc 38 JdwpNetStateBase::JdwpNetStateBase(JdwpState* state)
141 bool JdwpState::IsConnected() {
145 void JdwpState::SendBufferedRequest(uint32_t type, const std::vector<iovec>& iov) {
169 void JdwpState::SendRequest(ExpandBuf* pReq) {
188 uint32_t JdwpState::NextRequestSerial() {
196 uint32_t JdwpState::NextEventSerial() {
200 JdwpState::JdwpState(const JdwpOptions* options)
235 JdwpState* JdwpState::Create(const JdwpOptions* options)
    [all...]
jdwp_handler.cc 94 static JdwpError FinishInvoke(JdwpState*, Request& request, ExpandBuf* pReply,
169 static JdwpError VM_Version(JdwpState*, Request&, ExpandBuf* pReply)
193 static JdwpError VM_ClassesBySignature(JdwpState*, Request& request, ExpandBuf* pReply)
225 static JdwpError VM_AllThreads(JdwpState*, Request&, ExpandBuf* pReply)
241 static JdwpError VM_TopLevelThreadGroups(JdwpState*, Request&, ExpandBuf* pReply)
262 static JdwpError VM_IDSizes(JdwpState*, Request&, ExpandBuf* pReply)
272 static JdwpError VM_Dispose(JdwpState*, Request&, ExpandBuf*)
284 static JdwpError VM_Suspend(JdwpState*, Request&, ExpandBuf*)
296 static JdwpError VM_Resume(JdwpState*, Request&, ExpandBuf*)
303 static JdwpError VM_Exit(JdwpState* state, Request& request, ExpandBuf*
    [all...]
jdwp_event.cc 174 JdwpError JdwpState::RegisterEvent(JdwpEvent* pEvent) {
247 void JdwpState::UnregisterEvent(JdwpEvent* pEvent) {
313 void JdwpState::UnregisterEventById(uint32_t requestId) {
334 // event notification (see JdwpState::CleanupMatchList).
342 void JdwpState::UnregisterAll() {
415 void JdwpState::CleanupMatchList(JdwpEvent** match_list, size_t match_count) {
548 void JdwpState::FindMatchingEvents(JdwpEventKind eventKind, const ModBasket& basket,
584 void JdwpState::SuspendByPolicy(JdwpSuspendPolicy suspend_policy, JDWP::ObjectId thread_self_id) {
627 void JdwpState::SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy,
651 bool JdwpState::InvokeInProgress()
    [all...]
jdwp.h 118 struct JdwpState {
125 * Returns a newly-allocated JdwpState struct on success, or NULL on failure.
127 static JdwpState* Create(const JdwpOptions* options)
130 ~JdwpState();
301 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.cc 304 static JDWP::JdwpState* gJdwpState = NULL;
655 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
    [all...]

Completed in 856 milliseconds