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

  /external/chromium/net/base/
net_log_source_type_list.h 6 // directly within a block where the SOURCE_TYPE macro is defined.
9 SOURCE_TYPE(NONE, 0)
10 SOURCE_TYPE(URL_REQUEST, 1)
11 SOURCE_TYPE(SOCKET_STREAM, 2)
12 SOURCE_TYPE(INIT_PROXY_RESOLVER, 3)
13 SOURCE_TYPE(CONNECT_JOB, 4)
14 SOURCE_TYPE(SOCKET, 5)
15 SOURCE_TYPE(SPDY_SESSION, 6)
16 SOURCE_TYPE(HOST_RESOLVER_IMPL_REQUEST, 7)
17 SOURCE_TYPE(HOST_RESOLVER_IMPL_JOB, 8
    [all...]
net_log.h 56 #define SOURCE_TYPE(label, value) SOURCE_ ## label = value,
58 #undef SOURCE_TYPE
145 // Returns a C-String symbolic name for |source_type|.
146 static const char* SourceTypeToString(SourceType source_type);
213 static BoundNetLog Make(NetLog* net_log, NetLog::SourceType source_type);
net_log.cc 51 #define SOURCE_TYPE(label, id) case id: return #label;
53 #undef SOURCE_TYPE
176 NetLog::SourceType source_type) {
180 NetLog::Source source(source_type, net_log->NextID());
  /external/chromium_org/net/base/
net_log_source_type_list.h 6 // directly within a block where the SOURCE_TYPE macro is defined.
9 SOURCE_TYPE(NONE)
11 SOURCE_TYPE(URL_REQUEST)
12 SOURCE_TYPE(SOCKET_STREAM)
13 SOURCE_TYPE(PROXY_SCRIPT_DECIDER)
14 SOURCE_TYPE(CONNECT_JOB)
15 SOURCE_TYPE(SOCKET)
16 SOURCE_TYPE(SPDY_SESSION)
17 SOURCE_TYPE(QUIC_SESSION)
18 SOURCE_TYPE(HOST_RESOLVER_IMPL_REQUEST
    [all...]
net_log.h 61 #define SOURCE_TYPE(label) SOURCE_ ## label,
63 #undef SOURCE_TYPE
257 // Returns a C-String symbolic name for |source_type|.
258 static const char* SourceTypeToString(SourceType source_type);
388 static BoundNetLog Make(NetLog* net_log, NetLog::SourceType source_type);
net_log.cc 107 int source_type; local
112 !source_dict->GetInteger("type", &source_type)) {
118 DCHECK_LT(source_type, NetLog::SOURCE_COUNT);
119 *source = Source(static_cast<SourceType>(source_type), source_id);
314 #define SOURCE_TYPE(label) case SOURCE_ ## label: return #label;
316 #undef SOURCE_TYPE
485 NetLog::SourceType source_type) {
489 NetLog::Source source(source_type, net_log->NextID());
  /external/chromium/chrome/browser/ui/webui/
net_internals_ui.cc 818 #define SOURCE_TYPE(label, value) dict->SetInteger(# label, value);
820 #undef SOURCE_TYPE
    [all...]

Completed in 146 milliseconds