Searched refs:is_host (Results 1 - 12 of 12) sorted by relevance

/external/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformMacOSX.cpp68 const bool is_host = false; local
114 return new PlatformMacOSX (is_host);
119 PlatformMacOSX::GetPluginNameStatic (bool is_host) argument
121 if (is_host)
134 PlatformMacOSX::GetDescriptionStatic (bool is_host) argument
136 if (is_host)
145 PlatformMacOSX::PlatformMacOSX (bool is_host) : argument
146 PlatformDarwin (is_host)
H A DPlatformMacOSX.h36 GetPluginNameStatic (bool is_host);
39 GetDescriptionStatic(bool is_host);
44 PlatformMacOSX (bool is_host);
H A DPlatformDarwin.h22 PlatformDarwin (bool is_host);
H A DPlatformDarwin.cpp38 PlatformDarwin::PlatformDarwin (bool is_host) : argument
39 Platform(is_host), // This is the local host platform
/external/lldb/source/Plugins/Platform/Linux/
H A DPlatformLinux.h31 PlatformLinux (bool is_host);
43 GetPluginNameStatic (bool is_host);
46 GetPluginDescriptionStatic (bool is_host);
H A DPlatformLinux.cpp91 PlatformLinux::GetPluginNameStatic (bool is_host) argument
93 if (is_host)
106 PlatformLinux::GetPluginDescriptionStatic (bool is_host) argument
108 if (is_host)
303 PlatformLinux::PlatformLinux (bool is_host) : argument
304 Platform(is_host), // This is the local host platform
/external/chromium_org/chrome/browser/predictors/
H A Dresource_prefetch_predictor_tables.cc189 DCHECK(!url_data.is_host() && host_data.is_host());
256 bool is_host = key_type == PREFETCH_KEY_TYPE_HOST; local
259 const char* resource_table_name = is_host ? kHostResourceTableName :
289 const char* metadata_table_name = is_host ? kHostMetadataTableName :
317 scoped_ptr<Statement> deleter(data.is_host() ?
323 deleter.reset(data.is_host() ? GetHostMetadataDeleteStatement() :
333 scoped_ptr<Statement> resource_inserter(data.is_host() ?
340 scoped_ptr<Statement> metadata_inserter(data.is_host() ?
353 bool is_host local
[all...]
H A Dresource_prefetch_predictor_tables.h82 bool is_host() const { return key_type == PREFETCH_KEY_TYPE_HOST; } function in struct:predictors::ResourcePrefetchPredictorTables::PrefetchData
86 std::string primary_key; // is_host() ? main frame url : host.
H A Dresource_prefetch_predictor.cc988 bool is_host = key_type == PREFETCH_KEY_TYPE_HOST; local
990 !is_host ? PREFETCH_KEY_TYPE_HOST : PREFETCH_KEY_TYPE_URL,
992 const PrefetchData& host_data = is_host ? cache_entry->second : empty_data;
993 const PrefetchData& url_data = is_host ? empty_data : cache_entry->second;
/external/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.h37 GetPluginNameStatic (bool is_host);
40 GetDescriptionStatic (bool is_host);
45 PlatformFreeBSD (bool is_host);
H A DPlatformFreeBSD.cpp36 const bool is_host = false; local
83 return new PlatformFreeBSD (is_host);
89 PlatformFreeBSD::GetPluginNameStatic (bool is_host) argument
91 if (is_host)
104 PlatformFreeBSD::GetDescriptionStatic (bool is_host) argument
106 if (is_host)
141 PlatformFreeBSD::PlatformFreeBSD (bool is_host) : argument
142 Platform(is_host)
/external/lldb/source/Target/
H A DPlatform.cpp233 Platform::Platform (bool is_host) : argument
234 m_is_host (is_host),

Completed in 1514 milliseconds