HomeSort by relevance Sort by last modified time
    Searched refs:ENDPOINT (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/net/quic/
quic_connection.cc 135 #define ENDPOINT (is_server_ ? "Server: " : " Client: ")
183 LOG(INFO) << ENDPOINT << "Seeding packet loss with " << seed;
244 LOG(DFATAL) << ENDPOINT << "Framer called OnProtocolVersionMismatch. "
295 LOG(DFATAL) << ENDPOINT << "Framer parsed VersionNegotiationPacket."
312 DLOG(WARNING) << ENDPOINT << "The server already supports our version. "
345 DLOG(INFO) << ENDPOINT << "Ignoring packet from unexpected GUID: "
352 DLOG(INFO) << ENDPOINT << "Packet " << header.packet_sequence_number
369 DLOG(WARNING) << ENDPOINT << "Got packet without version flag before "
392 DVLOG(1) << ENDPOINT << "Received packet header: " << header;
421 DVLOG(1) << ENDPOINT << "OnAckFrame: " << incoming_ack
    [all...]
quic_session.cc 22 #define ENDPOINT (is_server_ ? "Server: " : " Client: ")
107 DLOG(INFO) << ENDPOINT << "Got packet header for invalid GUID: "
184 LOG(DFATAL) << ENDPOINT << "Stream failed to close under ConnectionClose";
230 DLOG(INFO) << ENDPOINT << "Closing stream " << stream_id;
234 DLOG(INFO) << ENDPOINT << "Stream is already closed: " << stream_id;
273 LOG_IF(DFATAL, !config_.negotiated()) << ENDPOINT
282 LOG(ERROR) << ENDPOINT << "Got unknown handshake event: " << event;
291 DLOG(INFO) << ENDPOINT << "num_streams: " << stream_map_.size()
  /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,
140 // Look up the claimed interface by endpoint. Return NULL if the interface
141 // of the endpoint is not found.
143 unsigned char endpoint);
usb_device_handle.cc 66 case UsbDeviceHandle::ENDPOINT:
437 const uint8 endpoint, net::IOBuffer* buffer, const size_t length,
445 const uint8 new_endpoint = ConvertTransferDirection(direction) | endpoint;
464 const uint8 endpoint, net::IOBuffer* buffer, const size_t length,
472 const uint8 new_endpoint = ConvertTransferDirection(direction) | endpoint;
490 const uint8 endpoint, net::IOBuffer* buffer, const size_t length,
503 const uint8 new_endpoint = ConvertTransferDirection(direction) | endpoint;
531 scoped_refptr<const UsbEndpointDescriptor> endpoint = local
533 endpoint_map_[endpoint->GetAddress()] = it->first;
539 UsbDeviceHandle::GetClaimedInterfaceForEndpoint(unsigned char endpoint) {
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/usb/
usb_api.cc 73 static const char kErrorConvertTransferType[] = "Invalid endpoint type.";
217 *output = UsbDeviceHandle::ENDPOINT;
552 scoped_refptr<const UsbEndpointDescriptor> endpoint local
561 if (!ConvertTransferTypeSafely(endpoint->GetTransferType(), &type) ||
562 !ConvertDirectionSafely(endpoint->GetDirection(), &direction) ||
564 endpoint->GetSynchronizationType(), &synchronization) ||
565 !ConvertUsageTypeSafely(endpoint->GetUsageType(), &usage)) {
571 endpoint_desc->address = endpoint->GetAddress();
574 endpoint_desc->maximum_packet_size = endpoint->GetMaximumPacketSize();
580 *polling_interval = endpoint->GetPollingInterval()
    [all...]

Completed in 137 milliseconds