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

  /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
263 // Returns a C-String symbolic name for |source_type|.
264 static const char* SourceTypeToString(SourceType source_type);
393 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);
329 #define SOURCE_TYPE(label) case SOURCE_ ## label: return #label;
331 #undef SOURCE_TYPE
499 NetLog::SourceType source_type) {
503 NetLog::Source source(source_type, net_log->NextID());

Completed in 381 milliseconds