OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:JdwpState
(Results
1 - 10
of
10
) sorted by null
/art/runtime/jdwp/
jdwp_priv.h
65
struct
JdwpState
;
67
bool InitSocketTransport(
JdwpState
*, const JdwpOptions*);
68
bool InitAdbTransport(
JdwpState
*, const JdwpOptions*);
75
explicit JdwpNetStateBase(
JdwpState
*);
113
JdwpState
* state_;
jdwp_main.cc
39
JdwpNetStateBase::JdwpNetStateBase(
JdwpState
* state)
152
bool
JdwpState
::IsConnected() {
156
void
JdwpState
::SendBufferedRequest(uint32_t type, const std::vector<iovec>& iov) {
180
void
JdwpState
::SendRequest(ExpandBuf* pReq) {
199
uint32_t
JdwpState
::NextRequestSerial() {
207
uint32_t
JdwpState
::NextEventSerial() {
211
JdwpState
::
JdwpState
(const JdwpOptions* options)
246
JdwpState
*
JdwpState
::Create(const JdwpOptions* options)
[
all
...]
jdwp_handler.cc
85
static JdwpError RequestInvoke(
JdwpState
*, Request* request,
126
static JdwpError VM_Version(
JdwpState
*, Request*, ExpandBuf* pReply)
150
static JdwpError VM_ClassesBySignature(
JdwpState
*, Request* request, ExpandBuf* pReply)
182
static JdwpError VM_AllThreads(
JdwpState
*, Request*, ExpandBuf* pReply)
198
static JdwpError VM_TopLevelThreadGroups(
JdwpState
*, Request*, ExpandBuf* pReply)
217
static JdwpError VM_IDSizes(
JdwpState
*, Request*, ExpandBuf* pReply)
227
static JdwpError VM_Dispose(
JdwpState
*, Request*, ExpandBuf*)
239
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_socket.cc
49
explicit JdwpSocketState(
JdwpState
* state)
66
static JdwpSocketState* SocketStartup(
JdwpState
* state, uint16_t port, bool probe);
71
bool InitSocketTransport(
JdwpState
* state, const JdwpOptions* options) {
116
static JdwpSocketState* SocketStartup(
JdwpState
* state, uint16_t port, bool probe) {
jdwp.h
123
struct
JdwpState
{
130
* Returns a newly-allocated
JdwpState
struct on success, or nullptr on failure.
135
static
JdwpState
* Create(const JdwpOptions* options)
138
~
JdwpState
();
297
explicit
JdwpState
(const JdwpOptions* options);
jdwp_adb.cc
57
explicit JdwpAdbState(
JdwpState
* state) : JdwpNetStateBase(state) {
123
bool InitAdbTransport(
JdwpState
* state, const JdwpOptions*) {
/art/runtime/
debugger.h
609
//
JdwpState
::ProcessRequest). The reply will be sent by the event thread itself after method
702
static JDWP::
JdwpState
* GetJdwpState();
[
all
...]
debugger.cc
284
static JDWP::
JdwpState
* gJdwpState = nullptr;
495
gJdwpState = JDWP::
JdwpState
::Create(&gJdwpOptions);
[
all
...]
/art/runtime/hprof/
hprof.cc
790
JDWP::
JdwpState
* state = Dbg::GetJdwpState();
[
all
...]
Completed in 71 milliseconds