HomeSort by relevance Sort by last modified time
    Searched refs:NetLog (Results 51 - 75 of 448) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/content/browser/media/
media_internals_proxy.cc 20 static const net::NetLog::EventType kNetEventTypeFilter[] = {
21 net::NetLog::TYPE_DISK_CACHE_ENTRY_IMPL,
22 net::NetLog::TYPE_SPARSE_READ,
23 net::NetLog::TYPE_SPARSE_WRITE,
24 net::NetLog::TYPE_URL_REQUEST_START_JOB,
25 net::NetLog::TYPE_HTTP_TRANSACTION_READ_RESPONSE_HEADERS,
79 void MediaInternalsProxy::OnAddEntry(const net::NetLog::Entry& entry) {
102 net::NetLog::EventPhaseToString(net::NetLog::PHASE_NONE),
103 net::NetLog::PHASE_NONE)
    [all...]
  /external/chromium_org/net/http/
http_auth_handler_unittest.cc 19 TEST(HttpAuthHandlerTest, NetLog) {
34 NetLog::EventType event_type =
35 (k == 0) ? NetLog::TYPE_AUTH_PROXY : NetLog::TYPE_AUTH_SERVER;
41 net::NetLog::SOURCE_NONE));
  /external/chromium_org/content/browser/devtools/
devtools_netlog_observer.cc 38 void DevToolsNetLogObserver::OnAddEntry(const net::NetLog::Entry& entry) {
43 if (entry.source().type == net::NetLog::SOURCE_URL_REQUEST)
45 else if (entry.source().type == net::NetLog::SOURCE_HTTP_STREAM_JOB)
47 else if (entry.source().type == net::NetLog::SOURCE_SOCKET)
52 const net::NetLog::Entry& entry) {
55 bool is_begin = entry.phase() == net::NetLog::PHASE_BEGIN;
56 bool is_end = entry.phase() == net::NetLog::PHASE_END;
58 if (entry.type() == net::NetLog::TYPE_URL_REQUEST_START_JOB) {
87 } else if (entry.type() == net::NetLog::TYPE_REQUEST_ALIVE) {
101 case net::NetLog::TYPE_HTTP_TRANSACTION_SEND_REQUEST_HEADERS:
    [all...]
  /external/chromium_org/content/shell/
shell_browser_main_parts.h 18 class NetLog;
49 net::NetLog* net_log() { return net_log_.get(); }
52 scoped_ptr<net::NetLog> net_log_;
shell_url_request_context_getter.h 24 class NetLog;
39 net::NetLog* net_log);
56 net::NetLog* net_log_;
  /external/chromium_org/net/base/
net_log_logger_unittest.cc 59 NetLog::Source source(NetLog::SOURCE_SPDY_SESSION, kDummyId);
60 NetLog::Entry entry(NetLog::TYPE_PROXY_SERVICE,
62 NetLog::PHASE_BEGIN,
65 NetLog::LOG_BASIC);
91 NetLog::Source source(NetLog::SOURCE_SPDY_SESSION, kDummyId);
92 NetLog::Entry entry(NetLog::TYPE_PROXY_SERVICE
    [all...]
net_log_logger.cc 43 void NetLogLogger::StartObserving(net::NetLog* net_log) {
44 net_log->AddThreadSafeObserver(this, net::NetLog::LOG_ALL_BUT_BYTES);
51 void NetLogLogger::OnAddEntry(const net::NetLog::Entry& entry) {
72 constants_dict->Set("logEventTypes", net::NetLog::GetEventTypesAsValue());
148 dict->SetInteger("PHASE_BEGIN", net::NetLog::PHASE_BEGIN);
149 dict->SetInteger("PHASE_END", net::NetLog::PHASE_END);
150 dict->SetInteger("PHASE_NONE", net::NetLog::PHASE_NONE);
157 constants_dict->Set("logSourceType", net::NetLog::GetSourceTypesAsValue());
164 dict->SetInteger("LOG_ALL", net::NetLog::LOG_ALL);
165 dict->SetInteger("LOG_ALL_BUT_BYTES", net::NetLog::LOG_ALL_BUT_BYTES)
    [all...]
file_stream.cc 18 FileStream::FileStream(NetLog* net_log,
23 bound_net_log_(BoundNetLog::Make(net_log, NetLog::SOURCE_FILESTREAM)),
25 bound_net_log_.BeginEvent(NetLog::TYPE_FILE_STREAM_ALIVE);
28 FileStream::FileStream(NetLog* net_log)
32 bound_net_log_(BoundNetLog::Make(net_log, NetLog::SOURCE_FILESTREAM)),
35 bound_net_log_.BeginEvent(NetLog::TYPE_FILE_STREAM_ALIVE);
40 NetLog* net_log,
43 bound_net_log_(BoundNetLog::Make(net_log, NetLog::SOURCE_FILESTREAM)),
45 bound_net_log_.BeginEvent(NetLog::TYPE_FILE_STREAM_ALIVE);
48 FileStream::FileStream(base::PlatformFile file, int flags, NetLog* net_log
    [all...]
file_stream.h 33 FileStream(net::NetLog* net_log,
37 explicit FileStream(net::NetLog* net_log);
50 net::NetLog* net_log,
54 FileStream(base::PlatformFile file, int flags, net::NetLog* net_log);
  /external/chromium_org/net/proxy/
proxy_resolver_v8_tracing.h 23 class NetLog;
43 NetLog* net_log);
72 NetLog* net_log_;
  /external/chromium_org/net/udp/
udp_client_socket.h 22 net::NetLog* net_log,
23 const net::NetLog::Source& source);
37 virtual const BoundNetLog& NetLog() const OVERRIDE;
  /external/chromium_org/remoting/base/
vlog_net_log.cc 16 class VlogNetLog::Observer : public net::NetLog::ThreadSafeObserver {
21 // NetLog::ThreadSafeObserver overrides:
22 virtual void OnAddEntry(const net::NetLog::Entry& entry) OVERRIDE;
34 void VlogNetLog::Observer::OnAddEntry(const net::NetLog::Entry& entry) {
  /external/chromium_org/net/dns/
dns_session.h 30 class NetLog;
63 NetLog* net_log);
66 NetLog* net_log() const { return net_log_; }
102 const NetLog::Source& source);
107 const NetLog::Source& source);
126 NetLog* net_log_;
  /external/chromium/net/http/
http_net_log_params.h 22 class NetLogHttpRequestParameter : public NetLog::EventParameters {
35 // NetLog::EventParameters
47 class NetLogHttpResponseParameter : public NetLog::EventParameters {
56 // NetLog::EventParameters
  /external/chromium/net/socket/
client_socket.h 70 // Gets the NetLog for this socket.
71 virtual const BoundNetLog& NetLog() const = 0;
130 // Logs a SOCKET_BYTES_RECEIVED or SOCKET_BYTES_SENT event to the NetLog.
133 void LogByteTransfer(const BoundNetLog& net_log, NetLog::EventType event_type,
client_socket_factory.h 32 // |source| is the NetLog::Source for the entity trying to create the socket,
36 NetLog* net_log,
37 const NetLog::Source& source) = 0;
tcp_server_socket_libevent.h 23 TCPServerSocketLibevent(net::NetLog* net_log,
24 const net::NetLog::Source& source);
  /external/chromium/net/udp/
udp_client_socket.h 20 UDPClientSocket(net::NetLog* net_log,
21 const net::NetLog::Source& source);
udp_server_socket.h 21 UDPServerSocket(net::NetLog* net_log,
22 const net::NetLog::Source& source);
  /external/chromium_org/ash/shell/content_client/
shell_browser_main_parts.h 22 class NetLog;
49 scoped_ptr<net::NetLog> net_log_;
  /external/chromium_org/chrome/browser/net/
proxy_service_factory.h 15 class NetLog;
45 net::NetLog* net_log,
chrome_net_log.h 20 // ChromeNetLog is an implementation of NetLog that adds file loggers
22 class ChromeNetLog : public net::NetLog {
  /external/chromium_org/net/quic/
quic_connection_logger.cc 21 NetLog::LogLevel /* log_level */) {
34 NetLog::LogLevel /* log_level */) {
47 NetLog::LogLevel /* log_level */) {
62 NetLog::LogLevel /* log_level */) {
72 NetLog::LogLevel /* log_level */) {
96 NetLog::LogLevel /* log_level */) {
132 NetLog::LogLevel /* log_level */) {
142 NetLog::LogLevel /* log_level */) {
175 NetLog::TYPE_QUIC_SESSION_STREAM_FRAME_SENT,
180 NetLog::TYPE_QUIC_SESSION_ACK_FRAME_SENT
    [all...]
  /external/chromium/chrome/browser/net/
chrome_net_log_unittest.cc 30 net::NetLog::Source source(net::NetLog::SOURCE_SOCKET, log_->NextID());
31 log_->AddEntry(net::NetLog::TYPE_SOCKET_ALIVE, base::TimeTicks(),
32 source, net::NetLog::PHASE_BEGIN, NULL);
  /external/chromium/net/websockets/
websocket_net_log_params.h 22 class NetLogWebSocketHandshakeParameter : public NetLog::EventParameters {

Completed in 570 milliseconds

1 23 4 5 6 7 8 91011>>