/external/webrtc/webrtc/base/ |
D | socketaddresspair.cc | 17 : src_(src), dest_(dest) { in SocketAddressPair() 22 return (src_ == p.src_) && (dest_ == p.dest_); in operator ==() 30 if (dest_ < p.dest_) in operator <() 32 if (p.dest_ < dest_) in operator <() 38 return src_.Hash() ^ dest_.Hash(); in Hash()
|
D | socketadapters.cc | 268 dest_ = addr; in Connect() 279 return dest_; in GetRemoteAddress() 285 dest_.Clear(); in Close() 315 Connect(dest_); in OnCloseEvent() 367 return force_connect_ || (dest_.port() != 80); in ShouldIssueConnect() 372 ss << "CONNECT " << dest_.ToString() << " HTTP/1.0\r\n"; in SendRequest() 374 ss << "Host: " << dest_.HostAsURIString() << "\r\n"; in SendRequest() 529 dest_ = addr; in Connect() 538 return dest_; in GetRemoteAddress() 543 dest_.Clear(); in Close() [all …]
|
D | socketaddresspair.h | 27 const SocketAddress& destination() const { return dest_; } in destination() 36 SocketAddress dest_; variable
|
D | socketadapters.h | 127 SocketAddress proxy_, dest_; 183 SocketAddress proxy_, dest_; variable
|
/external/tensorflow/tensorflow/core/lib/io/ |
D | record_writer.cc | 59 : dest_(dest), options_(options) { in RecordWriter() 73 dest_ = zlib_output_buffer; in RecordWriter() 83 if (dest_ != nullptr) { in ~RecordWriter() 108 TF_RETURN_IF_ERROR(dest_->Append(StringPiece(header, sizeof(header)))); in WriteRecord() 109 TF_RETURN_IF_ERROR(dest_->Append(data)); in WriteRecord() 110 return dest_->Append(StringPiece(footer, sizeof(footer))); in WriteRecord() 116 Status s = dest_->Close(); in Close() 117 delete dest_; in Close() 118 dest_ = nullptr; in Close() 127 return dest_->Flush(); in Flush()
|
D | recordio_test.cc | 97 StringDest dest_; member in tensorflow::io::RecordioTest 108 writer_(new RecordWriter(&dest_)), in RecordioTest() 121 size_t WrittenBytes() const { return dest_.contents_.size(); } in WrittenBytes() 126 source_.contents_ = StringPiece(dest_.contents_); in Read() 140 dest_.contents_[offset] += delta; in IncrementByte() 144 dest_.contents_[offset] = new_byte; in SetByte() 148 dest_.contents_.resize(dest_.contents_.size() - bytes); in ShrinkSize() 153 uint32_t crc = crc32c::Value(&dest_.contents_[header_offset + 6], 1 + len); in FixChecksum() 155 core::EncodeFixed32(&dest_.contents_[header_offset], crc); in FixChecksum() 167 source_.contents_ = StringPiece(dest_.contents_); in CheckOffsetPastEndReturnsNoRecords()
|
D | record_writer.h | 76 WritableFile* dest_;
|
/external/webrtc/webrtc/p2p/base/ |
D | faketransportcontroller.h | 137 if (dest_) { in Reset() 138 dest_->state_ = STATE_INIT; in Reset() 139 dest_->dest_ = nullptr; in Reset() 140 dest_ = nullptr; in Reset() 150 dest_ = dest; in SetDestination() 151 dest_->dest_ = this; in SetDestination() 152 if (local_cert_ && dest_->local_cert_) { in SetDestination() 154 dest_->do_dtls_ = true; in SetDestination() 158 dest_->state_ = STATE_CONNECTED; in SetDestination() 160 dest_->set_writable(true); in SetDestination() [all …]
|
/external/protobuf/src/google/protobuf/stubs/ |
D | bytestream.cc | 57 if (data != dest_) { in Append() 59 GOOGLE_DCHECK(!(dest_ <= data && data < (dest_ + n))) in Append() 61 memcpy(dest_, data, n); in Append() 63 dest_ += n; in Append() 143 dest_->append(data, n); in Append()
|
D | bytestream.h | 164 explicit UncheckedArrayByteSink(char* dest) : dest_(dest) {} in UncheckedArrayByteSink() 171 char* CurrentDestination() const { return dest_; } in CurrentDestination() 174 char* dest_; 258 explicit StringByteSink(string* dest) : dest_(dest) {} in StringByteSink() 262 string* dest_;
|
/external/webrtc/talk/media/base/ |
D | fakenetworkinterface.h | 52 dest_(NULL), in FakeNetworkInterface() 59 void SetDestination(MediaChannel* dest) { dest_ = dest; } in SetDestination() 188 if (dest_) { in OnMessage() 190 dest_->OnPacketReceived(&msg_data->data(), in OnMessage() 193 dest_->OnRtcpReceived(&msg_data->data(), in OnMessage() 226 MediaChannel* dest_; variable
|
/external/icu/icu4c/source/common/unicode/ |
D | bytestream.h | 239 StringByteSink(StringClass* dest) : dest_(dest) { } in StringByteSink() 248 StringByteSink(StringClass* dest, int32_t initialAppendCapacity) : dest_(dest) { in StringByteSink() 261 virtual void Append(const char* data, int32_t n) { dest_->append(data, n); } in Append() 263 StringClass* dest_;
|
/external/webrtc/talk/media/sctp/ |
D | sctpdataengine_unittest.cc | 59 dest_(NULL) { in SctpFakeNetworkInterface() 62 void SetDestination(cricket::DataMediaChannel* dest) { dest_ = dest; } in SetDestination() 86 if (dest_) { in OnMessage() 87 dest_->OnPacketReceived(buffer.get(), rtc::PacketTime()); in OnMessage() 112 cricket::DataMediaChannel* dest_; member in SctpFakeNetworkInterface
|
/external/python/cpython3/Doc/library/ |
D | argparse.rst | 450 argument as the display name for its values (rather than using the dest_ 678 * dest_ - The name of the attribute to be added to the object returned by 1172 to each expected argument. By default, ArgumentParser objects use the dest_ 1174 actions, the dest_ value is used directly, and for optional argument actions, 1175 the dest_ value is uppercased. So, a single positional argument with 1214 by the dest_ value. 1567 * dest_ - name of the attribute under which sub-command name will be
|
/external/python/cpython2/Doc/library/ |
D | argparse.rst | 632 * dest_ - The name of the attribute to be added to the object returned by 1123 to each expected argument. By default, ArgumentParser objects use the dest_ 1125 actions, the dest_ value is used directly, and for optional argument actions, 1126 the dest_ value is uppercased. So, a single positional argument with 1165 by the dest_ value. 1515 * dest_ - name of the attribute under which sub-command name will be
|
/external/syslinux/core/lwip/ |
D | CHANGELOG | 2847 * TCP and UDP ->dest_* struct members where changed to ->remote_*.
|