HomeSort by relevance Sort by last modified time
    Searched refs:net_log (Results 26 - 50 of 177) sorted by null

12 3 4 5 6 7 8

  /external/chromium/net/url_request/
url_request_context_storage.cc 13 #include "net/base/net_log.h"
30 void URLRequestContextStorage::set_net_log(NetLog* net_log) {
31 context_->set_net_log(net_log);
32 net_log_.reset(net_log);
  /external/chromium/net/base/
mapped_host_resolver.h 50 const BoundNetLog& net_log);
host_resolver.cc 53 const BoundNetLog& net_log) {
63 info, addresses, transient_callback, &request, net_log);
net_log.cc 5 #include "net/base/net_log.h"
175 BoundNetLog BoundNetLog::Make(NetLog* net_log,
177 if (!net_log)
180 NetLog::Source source(source_type, net_log->NextID());
181 return BoundNetLog(source, net_log);
212 const BoundNetLog& net_log,
215 : net_log_(net_log),
230 const BoundNetLog& ScopedNetLogEvent::net_log() const { function in class:net::ScopedNetLogEvent
host_resolver.h 156 // Profiling information for the request is saved to |net_log| if non-NULL.
161 const BoundNetLog& net_log) = 0;
215 const BoundNetLog& net_log);
246 NetLog* net_log);
  /external/chromium/net/http/
http_auth_handler_basic.h 30 const BoundNetLog& net_log,
http_transaction.h 43 // Profiling information for the request is saved to |net_log| if non-NULL.
46 const BoundNetLog& net_log) = 0;
http_proxy_client_socket_pool.cc 94 NetLog* net_log)
96 BoundNetLog::Make(net_log, NetLog::SOURCE_CONNECT_JOB)),
194 net_log());
226 &callback_, ssl_pool_, net_log());
330 spdy_session = spdy_pool->Get(pair, net_log());
335 net_log(), OK, &spdy_session, /*using_ssl_*/ true);
343 &spdy_stream_, spdy_session->net_log(),
390 NetLog* net_log)
394 net_log_(net_log) {
428 NetLog* net_log)
    [all...]
http_auth_handler_ntlm_win.cc 61 const BoundNetLog& net_log,
78 if (!tmp_handler->InitFromChallenge(challenge, target, origin, net_log))
http_network_session.cc 26 : net_log_(params.net_log),
32 socket_pool_manager_(params.net_log,
http_stream_factory_impl.h 14 #include "net/base/net_log.h"
32 const BoundNetLog& net_log);
37 const BoundNetLog& net_log);
http_proxy_client_socket_pool.h 106 NetLog* net_log);
182 NetLog* net_log);
192 const BoundNetLog& net_log);
197 const BoundNetLog& net_log);
234 NetLog* net_log);
http_stream_factory_impl.cc 10 #include "net/base/net_log.h"
56 const BoundNetLog& net_log) {
57 Request* request = new Request(request_info.url, this, delegate, net_log);
67 new Job(this, session_, alternate_request_info, ssl_config, net_log);
72 Job* job = new Job(this, session_, request_info, ssl_config, net_log);
92 const BoundNetLog& net_log) {
100 job = new Job(this, session_, alternate_request_info, ssl_config, net_log);
103 job = new Job(this, session_, request_info, ssl_config, net_log);
  /external/chromium/net/proxy/
proxy_resolver.h 46 const BoundNetLog& net_log) = 0;
proxy_resolver_v8.h 50 const BoundNetLog& net_log);
  /external/chromium/net/socket/
client_socket.h 9 #include "net/base/net_log.h"
133 void LogByteTransfer(const BoundNetLog& net_log, NetLog::EventType event_type,
client_socket_factory.h 12 #include "net/base/net_log.h"
36 NetLog* net_log,
client_socket_handle.h 18 #include "net/base/net_log.h"
70 // Profiling information for the request is saved to |net_log| if non-NULL.
78 const BoundNetLog& net_log);
191 const BoundNetLog& net_log) {
192 requesting_source_ = net_log.source();
205 group_name, &socket_params, priority, this, &callback_, net_log);
socks_client_socket_pool.cc 67 NetLog* net_log)
69 BoundNetLog::Make(net_log, NetLog::SOURCE_CONNECT_JOB)),
143 net_log());
225 NetLog* net_log)
233 net_log)) {
243 const BoundNetLog& net_log) {
248 handle, callback, net_log);
255 const BoundNetLog& net_log) {
259 base_.RequestSockets(group_name, *casted_params, num_sockets, net_log);
tcp_server_socket_libevent.h 12 #include "net/base/net_log.h"
23 TCPServerSocketLibevent(net::NetLog* net_log,
client_socket_pool_base.cc 15 #include "net/base/net_log.h"
50 const BoundNetLog& net_log)
54 net_log_(net_log),
59 net_log.BeginEvent(NetLog::TYPE_SOCKET_POOL_CONNECT_JOB, NULL);
63 net_log().EndEvent(NetLog::TYPE_SOCKET_POOL_CONNECT_JOB, NULL);
98 net_log().AddEvent(NetLog::TYPE_CONNECT_JOB_SET_SOCKET, make_scoped_refptr(
120 net_log().BeginEvent(NetLog::TYPE_SOCKET_POOL_CONNECT_JOB_CONNECT,
125 net_log().EndEventWithNetErrorCode(
146 const BoundNetLog& net_log
156 net_log_(net_log)
    [all...]
client_socket_pool_manager.cc 69 const BoundNetLog& net_log,
193 num_preconnect_streams, net_log);
199 net_log);
208 num_preconnect_streams, net_log);
214 pool, net_log);
222 num_preconnect_streams, net_log);
228 net_log);
236 num_preconnect_streams, net_log);
242 pool, net_log);
248 NetLog* net_log,
    [all...]
  /external/chromium/net/udp/
udp_client_socket.h 9 #include "net/base/net_log.h"
20 UDPClientSocket(net::NetLog* net_log,
udp_server_socket.h 21 UDPServerSocket(net::NetLog* net_log,
  /external/chromium/net/disk_cache/
mem_entry_impl.h 11 #include "net/base/net_log.h"
58 bool CreateEntry(const std::string& key, net::NetLog* net_log);
90 net::BoundNetLog& net_log() { function in class:disk_cache::MemEntryImpl
149 bool InitChildEntry(MemEntryImpl* parent, int child_id, net::NetLog* net_log);

Completed in 147 milliseconds

12 3 4 5 6 7 8