Searched refs:transport (Results 1 – 6 of 6) sorted by relevance
/art/dt_fd_forward/ |
D | README.md | 7 for Attach. This transport requires an address. The address is a single integer 10 When this transport begins listening or attaching it will send the 13 When this transport stops listening for connections it will send the 16 When this transport has successfully received fds from the proxy it sends the 19 When this transport has closed its copies of the fds it will send the proxy the 22 When this transport accepts or attaches to a connection it will read from the 27 to writing any data to write\_fd\_ the transport will _read_ from the 31 This transport implements no optional capabilities, though this may change in
|
D | dt_fd_forward.cc | 456 PacketReader(FdForwardTransport* transport, jdwpPacket* pkt) in PacketReader() argument 457 : transport_(transport), in PacketReader() 587 PacketWriter(FdForwardTransport* transport, const jdwpPacket* pkt) in PacketWriter() argument 588 : transport_(transport), pkt_(pkt), data_() {} in PacketWriter() 782 FdForwardTransport* transport = in jdwpTransport_OnLoad() local 784 transport->functions = &gTransportInterface; in jdwpTransport_OnLoad() 785 *env = transport; in jdwpTransport_OnLoad()
|
/art/runtime/jdwp/ |
D | jdwp_options_test.cc | 33 EXPECT_EQ(opt.transport, JdwpTransportType::kJdwpTransportSocket); in TEST() 47 EXPECT_EQ(opt.transport, JdwpTransportType::kJdwpTransportSocket); in TEST() 62 EXPECT_EQ(opt.transport, JdwpTransportType::kJdwpTransportAndroidAdb); in TEST()
|
D | jdwp_main.cc | 46 jdwp_options->transport = JDWP::kJdwpTransportSocket; in ParseJdwpOption() 48 jdwp_options->transport = JDWP::kJdwpTransportAndroidAdb; in ParseJdwpOption() 50 jdwp_options->transport = JDWP::kJdwpTransportUnknown; in ParseJdwpOption() 135 if (jdwp_options->transport == JDWP::kJdwpTransportUnknown) { in ParseJdwpOptions() 140 if (jdwp_options->transport == JDWP::kJdwpTransportNone) { in ParseJdwpOptions() 141 jdwp_options->transport = JDWP::kJdwpTransportAndroidAdb; in ParseJdwpOptions() 368 switch (options->transport) { in Create() 378 LOG(FATAL) << "Unknown transport: " << options->transport; in Create() 775 return lhs.transport == rhs.transport && in operator ==()
|
D | jdwp.h | 109 JdwpTransportType transport = kJdwpTransportNone; member
|
/art/runtime/ |
D | debugger.cc | 749 CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown); in ConfigureJdwp()
|