/external/apache-http/src/org/apache/http/impl/conn/ |
D | LoggingSessionOutputBuffer.java | 57 private final Wire wire; field in LoggingSessionOutputBuffer 64 public LoggingSessionOutputBuffer(final SessionOutputBuffer out, final Wire wire) { in LoggingSessionOutputBuffer() argument 67 this.wire = wire; in LoggingSessionOutputBuffer() 72 if (this.wire.enabled()) { in write() 73 this.wire.output(b, off, len); in write() 79 if (this.wire.enabled()) { in write() 80 this.wire.output(b); in write() 86 if (this.wire.enabled()) { in write() 87 this.wire.output(b); in write() 97 if (this.wire.enabled()) { in writeLine() [all …]
|
D | LoggingSessionInputBuffer.java | 59 private final Wire wire; field in LoggingSessionInputBuffer 66 public LoggingSessionInputBuffer(final SessionInputBuffer in, final Wire wire) { in LoggingSessionInputBuffer() argument 69 this.wire = wire; in LoggingSessionInputBuffer() 78 if (this.wire.enabled() && l > 0) { in read() 79 this.wire.input(b, off, l); in read() 86 if (this.wire.enabled() && l > 0) { in read() 87 this.wire.input(l); in read() 94 if (this.wire.enabled() && l > 0) { in read() 95 this.wire.input(b, 0, l); in read() 102 if (this.wire.enabled() && s != null) { in readLine() [all …]
|
D | Wire.java | 58 private void wire(String header, InputStream instream) in wire() method in Wire 97 wire(">> ", outstream); in output() 105 wire("<< ", instream); in input() 113 wire(">> ", new ByteArrayInputStream(b, off, len)); in output() 121 wire("<< ", new ByteArrayInputStream(b, off, len)); in input() 129 wire(">> ", new ByteArrayInputStream(b)); in output() 137 wire("<< ", new ByteArrayInputStream(b)); in input()
|
/external/google-tv-pairing-protocol/cpp/src/polo/pairing/ |
D | serverpairingsession.cc | 24 ServerPairingSession::ServerPairingSession(wire::PoloWireAdapter *wire, in ServerPairingSession() argument 28 : PairingSession(wire, context, challenge), in ServerPairingSession() 37 wire()->GetNextMessage(); in DoInitializationPhase() 42 wire()->GetNextMessage(); in DoConfigurationPhase() 54 wire()->SendPairingRequestAckMessage(ack); in OnPairingRequestMessage() 57 wire()->GetNextMessage(); in OnPairingRequestMessage() 64 wire()->SendOptionsMessage(local_options()); in OnOptionsMessage() 72 wire()->SendErrorMessage(kErrorBadConfiguration); in OnConfigurationMessage() 83 wire()->SendErrorMessage(kErrorBadConfiguration); in OnConfigurationMessage() 91 wire()->SendErrorMessage(kErrorBadConfiguration); in OnConfigurationMessage() [all …]
|
D | clientpairingsession.cc | 26 ClientPairingSession::ClientPairingSession(wire::PoloWireAdapter *wire, in ClientPairingSession() argument 31 : PairingSession(wire, context, challenge), in ClientPairingSession() 42 wire()->SendPairingRequestMessage(message); in DoInitializationPhase() 45 wire()->SendPairingRequestMessage(message); in DoInitializationPhase() 49 wire()->GetNextMessage(); in DoInitializationPhase() 60 wire()->SendConfigurationMessage(*config); in DoConfigurationPhase() 61 wire()->GetNextMessage(); in DoConfigurationPhase() 74 wire()->SendOptionsMessage(local_options()); in OnPairingRequestAckMessage() 75 wire()->GetNextMessage(); in OnPairingRequestAckMessage() 89 wire()->SendErrorMessage(kErrorBadConfiguration); in OnOptionsMessage() [all …]
|
D | pairingsession.cc | 24 PairingSession::PairingSession(wire::PoloWireAdapter* wire, in PairingSession() argument 28 wire_(wire), in PairingSession() 165 wire()->SendErrorMessage(kErrorProtocol); in DoOutputPairing() 219 wire()->SendErrorMessage(kErrorProtocol); in OnSecretMessage() 225 wire()->SendErrorMessage(kErrorInvalidChallengeResponse); in OnSecretMessage() 233 wire()->SendErrorMessage(kErrorProtocol); in OnSecretMessage() 249 wire()->SendErrorMessage(kErrorInvalidChallengeResponse); in OnSecretAckMessage()
|
D | pairingsession.h | 59 PairingSession(wire::PoloWireAdapter* wire, 152 wire::PoloWireAdapter* wire() const { return wire_; } in wire() function 186 wire::PoloWireAdapter* wire_;
|
D | serverpairingsession.h | 35 ServerPairingSession(wire::PoloWireAdapter *wire,
|
D | clientpairingsession.h | 36 ClientPairingSession(wire::PoloWireAdapter* wire,
|
/external/okhttp/okhttp-hpacktests/src/test/java/com/squareup/okhttp/internal/spdy/hpackjson/ |
D | Case.java | 34 private String wire; field in Case 47 return ByteString.decodeHex(wire); in getWire() 54 public void setWire(ByteString wire) { in setWire() argument 55 this.wire = wire.hex(); in setWire() 62 result.wire = wire; in clone()
|
/external/google-tv-pairing-protocol/cpp/ |
D | Makefile.am | 70 polo_wire_includedir = $(includedir)/polo/wire 72 src/polo/wire/polowireadapter.h \ 73 src/polo/wire/polowireinterface.h \ 74 src/polo/wire/polowirelistener.h 76 polo_wire_protobuf_includedir = $(includedir)/polo/wire/protobuf 78 src/polo/wire/protobuf/polo.pb.h \ 79 src/polo/wire/protobuf/protobufwireadapter.h 100 src/polo/wire/protobuf/polo.pb.cc \ 101 src/polo/wire/protobuf/polo.pb.h 107 --cpp_out=$(srcdir)/src/polo/wire/protobuf \ [all …]
|
D | Makefile.in | 405 polo_wire_includedir = $(includedir)/polo/wire 407 src/polo/wire/polowireadapter.h \ 408 src/polo/wire/polowireinterface.h \ 409 src/polo/wire/polowirelistener.h 411 polo_wire_protobuf_includedir = $(includedir)/polo/wire/protobuf 413 src/polo/wire/protobuf/polo.pb.h \ 414 src/polo/wire/protobuf/protobufwireadapter.h 424 src/polo/wire/protobuf/polo.proto 427 src/polo/wire/protobuf/polo.pb.cc \ 428 src/polo/wire/protobuf/polo.pb.h [all …]
|
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/ |
D | WireFormat.java | 17 package com.google.polo.wire; 20 import com.google.polo.wire.json.JsonWireAdapter; 21 import com.google.polo.wire.protobuf.ProtobufWireAdapter; 22 import com.google.polo.wire.xml.XmlWireAdapter;
|
/external/google-tv-pairing-protocol/cpp/tests/polo/pairing/ |
D | serverpairingsessiontest.cc | 33 TestServerPairingSession(wire::PoloWireAdapter* wire, in TestServerPairingSession() argument 36 : ServerPairingSession(wire, context, challenge, "server1") { in TestServerPairingSession() 77 StrictMock<wire::MockWireInterface> interface_; 78 StrictMock<wire::MockWireAdapter> wire_;
|
D | clientpairingsessiontest.cc | 33 TestClientPairingSession(wire::PoloWireAdapter* wire, in TestClientPairingSession() argument 36 : ClientPairingSession(wire, context, challenge, "service1", "client1") { in TestClientPairingSession() 86 StrictMock<wire::MockWireInterface> interface_; 87 StrictMock<wire::MockWireAdapter> wire_;
|
D | pairingsessiontest.cc | 35 TestPairingSession(wire::PoloWireAdapter* wire, in TestPairingSession() argument 38 : PairingSession(wire, context, challenge) { in TestPairingSession() 104 StrictMock<wire::MockWireInterface> interface_; 105 StrictMock<wire::MockWireAdapter> wire_;
|
/external/boringssl/src/tool/ |
D | client.cc | 373 std::vector<uint8_t> wire; in Client() local 385 wire.push_back(static_cast<uint8_t>(len)); in Client() 386 wire.resize(wire.size() + len); in Client() 387 OPENSSL_memcpy(wire.data() + wire.size() - len, alpn_protos.data() + i, in Client() 391 if (SSL_CTX_set_alpn_protos(ctx.get(), wire.data(), wire.size()) != 0) { in Client()
|
/external/cros/system_api/dbus/cryptohome/ |
D | signed_secret.proto | 5 // Provides wire protocol for signed password changes from 28 // This is an example format if this were sent on the wire. 30 // on the wire, but only reconstructed from source data.
|
/external/mesa3d/src/glx/ |
D | dri2.c | 61 DRI2WireToEvent(Display *dpy, XEvent *event, xEvent *wire); 63 DRI2EventToWire(Display *dpy, XEvent *event, xEvent *wire); 88 DRI2WireToEvent(Display *dpy, XEvent *event, xEvent *wire) in DRI2WireToEvent() argument 95 switch ((wire->u.u.type & 0x7f) - info->codes->first_event) { in DRI2WireToEvent() 101 xDRI2BufferSwapComplete2 *awire = (xDRI2BufferSwapComplete2 *)wire; in DRI2WireToEvent() 113 aevent->serial = _XSetLastRequestRead(dpy, (xGenericReply *) wire); in DRI2WireToEvent() 150 xDRI2InvalidateBuffers *awire = (xDRI2InvalidateBuffers *)wire; in DRI2WireToEvent() 168 DRI2EventToWire(Display *dpy, XEvent *event, xEvent *wire) in DRI2EventToWire() argument
|
/external/google-tv-pairing-protocol/java/ |
D | Makefile | 54 $(PROTO_JAVA_OUT)/$(PACKAGE_NAME)/wire/protobuf/PoloProto.java: $(PROTO_SRC_DIR)/polo.proto 59 $(PROTO_JAVA_OUT)/$(PACKAGE_NAME)/wire/protobuf/PoloProto.java
|
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/ |
D | XmlWireAdapter.java | 17 package com.google.polo.wire.xml; 24 import com.google.polo.wire.PoloWireInterface;
|
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/ |
D | JsonWireAdapter.java | 17 package com.google.polo.wire.json; 26 import com.google.polo.wire.PoloWireInterface;
|
/external/v8/src/inspector/ |
D | v8-inspector-session-impl.cc | 79 protocol::Runtime::Dispatcher::wire(&m_dispatcher, m_runtimeAgent.get()); in V8InspectorSessionImpl() 83 protocol::Debugger::Dispatcher::wire(&m_dispatcher, m_debuggerAgent.get()); in V8InspectorSessionImpl() 87 protocol::Profiler::Dispatcher::wire(&m_dispatcher, m_profilerAgent.get()); in V8InspectorSessionImpl() 91 protocol::HeapProfiler::Dispatcher::wire(&m_dispatcher, in V8InspectorSessionImpl() 96 protocol::Console::Dispatcher::wire(&m_dispatcher, m_consoleAgent.get()); in V8InspectorSessionImpl() 100 protocol::Schema::Dispatcher::wire(&m_dispatcher, m_schemaAgent.get()); in V8InspectorSessionImpl()
|
/external/flatbuffers/docs/source/ |
D | Benchmarks.md | 15 We compare against Flatbuffers with the binary wire format (as 16 intended), and also with JSON as the wire format with the optional JSON 30 | Memory needed to store decoded wire (bytes / blocks) | 0 / 0 | 760 / 20 …
|
/external/google-tv-pairing-protocol/proto/ |
D | polo.proto | 3 package polo.wire.protobuf; 9 option java_package = "com.google.polo.wire.protobuf";
|