OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ENDPOINT
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/net/quic/
quic_connection.cc
170
#define
ENDPOINT
(is_server_ ? "Server: " : " Client: ")
216
DVLOG(1) <<
ENDPOINT
<< "Created connection with guid: " << guid;
282
DVLOG(1) <<
ENDPOINT
<< "Received packet with mismatched version "
286
LOG(DFATAL) <<
ENDPOINT
<< "Framer called OnProtocolVersionMismatch. "
324
DVLOG(1) <<
ENDPOINT
<< "version negotiated " << received_version;
339
LOG(DFATAL) <<
ENDPOINT
<< "Framer parsed VersionNegotiationPacket."
356
DLOG(WARNING) <<
ENDPOINT
<< "The server already supports our version. "
369
DVLOG(1) <<
ENDPOINT
<< "negotiating version " << version();
395
DVLOG(1) <<
ENDPOINT
<< "Ignoring packet from unexpected GUID: "
402
DVLOG(1) <<
ENDPOINT
<< "Packet " << header.packet_sequence_numbe
[
all
...]
reliable_quic_stream.cc
16
#define
ENDPOINT
(is_server_ ? "Server: " : " Client: ")
62
DVLOG(1) <<
ENDPOINT
<< "Ignoring frame " << frame.stream_id;
166
DLOG(ERROR) <<
ENDPOINT
<< "Attempt to write when the write side is closed";
194
DVLOG(1) <<
ENDPOINT
<< "Done reading from stream " << id();
198
DVLOG(1) <<
ENDPOINT
<< "Closing stream: " << id();
207
DVLOG(1) <<
ENDPOINT
<< "Done writing to stream " << id();
211
DVLOG(1) <<
ENDPOINT
<< "Closing stream: " << id();
quic_session.cc
23
#define
ENDPOINT
(is_server() ? "Server: " : " Client: ")
210
LOG(DFATAL) <<
ENDPOINT
281
DVLOG(1) <<
ENDPOINT
<< "Closing stream " << stream_id;
285
DVLOG(1) <<
ENDPOINT
<< "Stream is already closed: " << stream_id;
374
LOG_IF(DFATAL, !config_.negotiated()) <<
ENDPOINT
381
LOG(ERROR) <<
ENDPOINT
<< "Got unknown handshake event: " << event;
398
DVLOG(1) <<
ENDPOINT
<< "num_streams: " << stream_map_.size()
quic_data_stream.cc
17
#define
ENDPOINT
(session()->is_server() ? "Server: " : " Client: ")
152
DVLOG(1) <<
ENDPOINT
163
DVLOG(1) <<
ENDPOINT
quic_sent_packet_manager.cc
57
#define
ENDPOINT
(is_server_ ? "Server: " : " Client: ")
216
DVLOG(1) <<
ENDPOINT
<<"Got an ack for packet " << sequence_number;
/external/chromium_org/chrome/browser/usb/
usb_device_handle.h
59
enum TransferRecipient { DEVICE, INTERFACE,
ENDPOINT
, OTHER };
94
const uint8
endpoint
,
101
const uint8
endpoint
,
108
const uint8
endpoint
,
141
// Look up the claimed interface by
endpoint
. Return NULL if the interface
142
// of the
endpoint
is not found.
144
unsigned char
endpoint
);
usb_device_handle.cc
66
case UsbDeviceHandle::
ENDPOINT
:
440
const uint8
endpoint
, net::IOBuffer* buffer, const size_t length,
448
const uint8 new_endpoint = ConvertTransferDirection(direction) |
endpoint
;
467
const uint8
endpoint
, net::IOBuffer* buffer, const size_t length,
475
const uint8 new_endpoint = ConvertTransferDirection(direction) |
endpoint
;
493
const uint8
endpoint
, net::IOBuffer* buffer, const size_t length,
506
const uint8 new_endpoint = ConvertTransferDirection(direction) |
endpoint
;
534
scoped_refptr<const UsbEndpointDescriptor>
endpoint
=
local
536
endpoint_map_[
endpoint
->GetAddress()] = it->first;
542
UsbDeviceHandle::GetClaimedInterfaceForEndpoint(unsigned char
endpoint
) {
[
all
...]
/external/chromium_org/chrome/browser/extensions/api/usb/
usb_api.cc
85
const char kErrorConvertTransferType[] = "Invalid
endpoint
type.";
227
*output = UsbDeviceHandle::
ENDPOINT
;
770
scoped_refptr<const UsbEndpointDescriptor>
endpoint
local
779
if (!ConvertTransferTypeSafely(
endpoint
->GetTransferType(), &type) ||
780
!ConvertDirectionSafely(
endpoint
->GetDirection(), &direction) ||
782
endpoint
->GetSynchronizationType(), &synchronization) ||
783
!ConvertUsageTypeSafely(
endpoint
->GetUsageType(), &usage)) {
789
endpoint_desc->address =
endpoint
->GetAddress();
792
endpoint_desc->maximum_packet_size =
endpoint
->GetMaximumPacketSize();
798
*polling_interval =
endpoint
->GetPollingInterval()
[
all
...]
Completed in 223 milliseconds