HomeSort by relevance Sort by last modified time
    Searched refs:CapturingNetLog (Results 1 - 25 of 48) sorted by null

1 2

  /external/chromium/net/base/
capturing_net_log.cc 9 CapturingNetLog::Entry::Entry(EventType type,
18 CapturingNetLog::Entry::~Entry() {}
20 CapturingNetLog::CapturingNetLog(size_t max_num_entries)
26 CapturingNetLog::~CapturingNetLog() {}
28 void CapturingNetLog::GetEntries(EntryList* entry_list) const {
33 void CapturingNetLog::Clear() {
38 void CapturingNetLog::SetLogLevel(NetLog::LogLevel log_level) {
43 void CapturingNetLog::AddEntry(EventType type
    [all...]
capturing_net_log.h 21 // CapturingNetLog is an implementation of NetLog that saves messages to a
23 class CapturingNetLog : public NetLog {
45 // Creates a CapturingNetLog that logs a maximum of |max_num_entries|
47 explicit CapturingNetLog(size_t max_num_entries);
48 virtual ~CapturingNetLog();
78 DISALLOW_COPY_AND_ASSIGN(CapturingNetLog);
82 // CapturingNetLog rather than the more generic NetLog.
88 CapturingBoundNetLog(const NetLog::Source& source, CapturingNetLog* net_log);
100 void GetEntries(CapturingNetLog::EntryList* entry_list) const;
104 // Sets the log level of the underlying CapturingNetLog
    [all...]
net_log_unittest.cc 15 CapturingNetLog log(CapturingNetLog::kUnbounded);
21 CapturingNetLog::EntryList entries;
net_log_unittest.h 24 const CapturingNetLog::EntryList& entries,
36 const CapturingNetLog::Entry& entry = entries[j];
60 const CapturingNetLog::EntryList& log,
71 const CapturingNetLog::EntryList& log,
81 const CapturingNetLog::EntryList& log,
89 const CapturingNetLog::EntryList& log,
96 const CapturingNetLog::EntryList& entries,
105 const CapturingNetLog::Entry& entry = entries[j];
116 const CapturingNetLog::EntryList& entries,
122 const CapturingNetLog::Entry& entry = entries[i]
    [all...]
host_resolver_impl_unittest.cc 270 CapturingBoundNetLog log(CapturingNetLog::kUnbounded);
274 CapturingNetLog::EntryList entries;
305 CapturingBoundNetLog log(CapturingNetLog::kUnbounded);
310 CapturingNetLog::EntryList entries;
342 CapturingNetLog net_log(CapturingNetLog::kUnbounded);
343 CapturingBoundNetLog log(CapturingNetLog::kUnbounded);
367 CapturingNetLog::EntryList entries;
376 CapturingNetLog::EntryList net_log_entries;
956 CapturingBoundNetLog log(CapturingNetLog::kUnbounded)
    [all...]
  /external/chromium_org/net/base/
capturing_net_log.cc 13 CapturingNetLog::CapturedEntry::CapturedEntry(
26 CapturingNetLog::CapturedEntry::CapturedEntry(const CapturedEntry& entry) {
30 CapturingNetLog::CapturedEntry::~CapturedEntry() {}
32 CapturingNetLog::CapturedEntry&
33 CapturingNetLog::CapturedEntry::operator=(const CapturedEntry& entry) {
42 bool CapturingNetLog::CapturedEntry::GetStringValue(
50 bool CapturingNetLog::CapturedEntry::GetIntegerValue(
58 bool CapturingNetLog::CapturedEntry::GetNetErrorCode(int* value) const {
62 std::string CapturingNetLog::CapturedEntry::GetParamsJson() const {
70 CapturingNetLog::Observer::Observer() {
    [all...]
capturing_net_log.h 26 // CapturingNetLog is a NetLog which instantiates Observer that saves messages
30 class CapturingNetLog : public NetLog {
72 CapturingNetLog();
73 virtual ~CapturingNetLog();
118 DISALLOW_COPY_AND_ASSIGN(CapturingNetLog);
122 // CapturingNetLog rather than the more generic NetLog.
135 void GetEntries(CapturingNetLog::CapturedEntryList* entry_list) const;
140 CapturingNetLog::CapturedEntryList* entry_list) const;
147 // Sets the log level of the underlying CapturingNetLog.
151 CapturingNetLog capturing_net_log_
    [all...]
net_log_unittest.h 23 const CapturingNetLog::CapturedEntryList& entries,
35 const CapturingNetLog::CapturedEntry& entry = entries[j];
59 const CapturingNetLog::CapturedEntryList& log,
70 const CapturingNetLog::CapturedEntryList& log,
80 const CapturingNetLog::CapturedEntryList& log,
88 const CapturingNetLog::CapturedEntryList& log,
95 const CapturingNetLog::CapturedEntryList& entries,
104 const CapturingNetLog::CapturedEntry& entry = entries[j];
115 const CapturingNetLog::CapturedEntryList& entries,
121 const CapturingNetLog::CapturedEntry& entry = entries[i]
    [all...]
net_log_unittest.cc 27 CapturingNetLog net_log;
28 CapturingNetLog::CapturedEntryList entries;
47 CapturingNetLog net_log;
56 CapturingNetLog::CapturedEntryList entries;
  /external/chromium/net/http/
http_auth_handler_unittest.cc 41 CapturingNetLog capturing_net_log(CapturingNetLog::kUnbounded);
52 net::CapturingNetLog::EntryList entries;
  /external/chromium/net/socket/
socks_client_socket_unittest.cc 129 CapturingNetLog log(CapturingNetLog::kUnbounded);
144 net::CapturingNetLog::EntryList entries;
202 CapturingNetLog log(CapturingNetLog::kUnbounded);
213 net::CapturingNetLog::EntryList entries;
239 CapturingNetLog log(CapturingNetLog::kUnbounded);
249 net::CapturingNetLog::EntryList entries;
277 CapturingNetLog log(CapturingNetLog::kUnbounded)
    [all...]
ssl_client_socket_unittest.cc 60 const net::CapturingNetLog::EntryList& log, int i) {
74 net::CapturingNetLog log(net::CapturingNetLog::kUnbounded);
91 net::CapturingNetLog::EntryList entries;
116 net::CapturingNetLog log(net::CapturingNetLog::kUnbounded);
132 net::CapturingNetLog::EntryList entries;
159 net::CapturingNetLog log(net::CapturingNetLog::kUnbounded);
175 net::CapturingNetLog::EntryList entries
    [all...]
socks5_client_socket_unittest.cc 46 CapturingNetLog net_log_;
60 net_log_(CapturingNetLog::kUnbounded),
135 net::CapturingNetLog::EntryList net_log_entries;
257 net::CapturingNetLog::EntryList net_log_entries;
288 net::CapturingNetLog::EntryList net_log_entries;
317 net::CapturingNetLog::EntryList net_log_entries;
348 net::CapturingNetLog::EntryList net_log_entries;
transport_client_socket_unittest.cc 38 net_log_(CapturingNetLog::kUnbounded),
88 CapturingNetLog net_log_;
180 net::CapturingNetLog::EntryList net_log_entries;
  /external/chromium_org/net/http/
http_auth_handler_unittest.cc 39 CapturingNetLog capturing_net_log;
51 CapturingNetLog::CapturedEntryList entries;
  /external/chromium_org/net/socket/
socks_client_socket_unittest.cc 135 CapturingNetLog log;
150 CapturingNetLog::CapturedEntryList entries;
211 CapturingNetLog log;
222 CapturingNetLog::CapturedEntryList entries;
248 CapturingNetLog log;
258 CapturingNetLog::CapturedEntryList entries;
286 CapturingNetLog log;
296 CapturingNetLog::CapturedEntryList entries;
318 CapturingNetLog log;
328 CapturingNetLog::CapturedEntryList entries
    [all...]
socks5_client_socket_unittest.cc 47 CapturingNetLog net_log_;
138 CapturingNetLog::CapturedEntryList net_log_entries;
262 CapturingNetLog::CapturedEntryList net_log_entries;
293 CapturingNetLog::CapturedEntryList net_log_entries;
322 CapturingNetLog::CapturedEntryList net_log_entries;
353 CapturingNetLog::CapturedEntryList net_log_entries;
ssl_client_socket_unittest.cc 539 const net::CapturingNetLog::CapturedEntryList& log, int i) {
555 net::CapturingNetLog log;
571 net::CapturingNetLog::CapturedEntryList entries;
600 net::CapturingNetLog log;
616 net::CapturingNetLog::CapturedEntryList entries;
647 net::CapturingNetLog log;
663 net::CapturingNetLog::CapturedEntryList entries;
694 net::CapturingNetLog log;
710 net::CapturingNetLog::CapturedEntryList entries;
756 net::CapturingNetLog log
    [all...]
  /external/chromium/net/proxy/
init_proxy_resolver_unittest.cc 184 CapturingNetLog log(CapturingNetLog::kUnbounded);
190 CapturingNetLog::EntryList entries;
220 CapturingNetLog log(CapturingNetLog::kUnbounded);
227 CapturingNetLog::EntryList entries;
325 CapturingNetLog log(CapturingNetLog::kUnbounded);
341 CapturingNetLog::EntryList entries;
446 CapturingNetLog log(CapturingNetLog::kUnbounded)
    [all...]
proxy_resolver_js_bindings_unittest.cc 294 CapturingNetLog global_log(CapturingNetLog::kUnbounded);
301 CapturingNetLog log(CapturingNetLog::kUnbounded);
307 net::CapturingNetLog::EntryList entries;
351 net::CapturingNetLog::EntryList global_log_entries;
multi_threaded_proxy_resolver_unittest.cc 258 CapturingBoundNetLog log0(CapturingNetLog::kUnbounded);
273 net::CapturingNetLog::EntryList entries0;
352 CapturingBoundNetLog log0(CapturingNetLog::kUnbounded);
361 CapturingBoundNetLog log1(CapturingNetLog::kUnbounded);
369 CapturingBoundNetLog log2(CapturingNetLog::kUnbounded);
384 net::CapturingNetLog::EntryList entries0;
395 net::CapturingNetLog::EntryList entries1;
410 net::CapturingNetLog::EntryList entries2;
  /external/chromium_org/net/proxy/
proxy_resolver_v8_tracing_unittest.cc 100 CapturingNetLog log;
131 CapturingNetLog log;
156 CapturingNetLog::CapturedEntryList entries_list[2];
161 const CapturingNetLog::CapturedEntryList& entries = entries_list[list_i];
177 CapturingNetLog log;
210 CapturingNetLog::CapturedEntryList entries_list[2];
215 const CapturingNetLog::CapturedEntryList& entries = entries_list[list_i];
228 CapturingNetLog log;
258 CapturingNetLog::CapturedEntryList entries_list[2];
263 const CapturingNetLog::CapturedEntryList& entries = entries_list[list_i]
    [all...]
proxy_script_decider_unittest.cc 130 CapturingNetLog log;
137 CapturingNetLog::CapturedEntryList entries;
166 CapturingNetLog log;
174 CapturingNetLog::CapturedEntryList entries;
285 CapturingNetLog log;
300 CapturingNetLog::CapturedEntryList entries;
390 CapturingNetLog log;
400 CapturingNetLog::CapturedEntryList entries;
432 CapturingNetLog log;
440 CapturingNetLog::CapturedEntryList entries
    [all...]
  /external/chromium_org/net/quic/
quic_client_session_test.cc 48 CapturingNetLog net_log_;
  /external/chromium_org/net/udp/
udp_socket_unittest.cc 135 CapturingNetLog server_log;
145 CapturingNetLog client_log;
175 CapturingNetLog::CapturedEntryList server_entries;
188 CapturingNetLog::CapturedEntryList client_entries;
225 CapturingNetLog server1_log, server2_log;

Completed in 630 milliseconds

1 2