Searched refs:host_info (Results 1 - 25 of 48) sorted by last modified time

12

/external/valgrind/main/coregrind/m_syswrap/
H A Dpriv_syswrap-darwin.h497 DECL_TEMPLATE(darwin, host_info);
H A Dsyswrap-darwin.c4163 POST(host_info)
4180 PRE(host_info)
4193 PRINT("host_info(mach_host_self(), flavor %d)", req->flavor);
4195 AFTER = POST_FN(host_info);
6838 CALL_PRE(host_info);
/external/netperf/
H A Dnetcpu_osx.c38 #include <mach/host_info.h>
/external/llvm/lib/Support/
H A DHost.cpp38 #include <mach/host_info.h>
381 host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo,
/external/flac/libFLAC/
H A Dcpu.c48 # include <mach/host_info.h>
365 host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo, &infoCount);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dcpumonitor.cc51 #include <mach/host_info.h>
/external/chromium_org/url/
H A Dgurl.cc424 url_canon::CanonHostInfo host_info; local
426 &ignored_output, &host_info);
427 return host_info.IsIPAddress();
H A Durl_canon.h372 // A successful return is indicated by host_info->family != BROKEN. See the
377 CanonHostInfo* host_info);
381 CanonHostInfo* host_info);
388 // Additional status information is returned via the |*host_info| parameter.
397 CanonHostInfo* host_info);
401 CanonHostInfo* host_info);
H A Durl_canon_host.cc292 CanonHostInfo* host_info) {
295 host_info->family = CanonHostInfo::NEUTRAL;
296 host_info->out_host = url_parse::Component();
318 host_info->family = CanonHostInfo::BROKEN;
326 &canon_ip, host_info);
331 if (host_info->IsIPAddress()) {
337 host_info->out_host = url_parse::MakeRange(output_begin, output->length());
346 CanonHostInfo host_info; local
347 DoHost<char, unsigned char>(spec, host, output, &host_info);
348 *out_host = host_info
289 DoHost(const CHAR* spec, const url_parse::Component& host, CanonOutput* output, CanonHostInfo* host_info) argument
356 CanonHostInfo host_info; local
362 CanonicalizeHostVerbose(const char* spec, const url_parse::Component& host, CanonOutput* output, CanonHostInfo *host_info) argument
369 CanonicalizeHostVerbose(const base::char16* spec, const url_parse::Component& host, CanonOutput* output, CanonHostInfo *host_info) argument
[all...]
H A Durl_canon_ip.cc232 CanonHostInfo* host_info) {
233 host_info->family = IPv4AddressToNumber(
234 spec, host, host_info->address, &host_info->num_ipv4_components);
236 switch (host_info->family) {
239 host_info->out_host.begin = output->length();
240 AppendIPv4Address(host_info->address, output);
241 host_info->out_host.len = output->length() - host_info->out_host.begin;
561 CanonHostInfo* host_info) {
229 DoCanonicalizeIPv4Address(const CHAR* spec, const url_parse::Component& host, CanonOutput* output, CanonHostInfo* host_info) argument
558 DoCanonicalizeIPv6Address(const CHAR* spec, const url_parse::Component& host, CanonOutput* output, CanonHostInfo* host_info) argument
655 CanonicalizeIPAddress(const char* spec, const url_parse::Component& host, CanonOutput* output, CanonHostInfo* host_info) argument
667 CanonicalizeIPAddress(const base::char16* spec, const url_parse::Component& host, CanonOutput* output, CanonHostInfo* host_info) argument
[all...]
H A Durl_canon_unittest.cc618 CanonHostInfo host_info; local
621 &output, &host_info);
624 EXPECT_EQ(host_cases[i].expected_family, host_info.family);
627 host_info.out_host.begin);
628 EXPECT_EQ(host_cases[i].expected_component.len, host_info.out_host.len);
630 BytesToHexString(host_info.address, host_info.AddressLength()));
633 host_info.num_ipv4_components);
645 CanonHostInfo host_info; local
648 &output, &host_info);
747 url_canon::CanonHostInfo host_info; local
902 url_canon::CanonHostInfo host_info; local
941 url_canon::CanonHostInfo host_info; local
[all...]
/external/chromium_org/net/base/
H A Dnet_util.cc1064 url_canon::CanonHostInfo* host_info) {
1071 &canon_host_output, host_info);
1073 if (host_info->out_host.is_nonempty() &&
1074 host_info->family != url_canon::CanonHostInfo::BROKEN) {
1077 DCHECK_EQ(host_info->out_host.len, static_cast<int>(canon_host.length()));
1469 url_canon::CanonHostInfo host_info; local
1470 std::string canonical_name = CanonicalizeHost(host_or_ip, &host_info);
1479 if (host_info.IsIPAddress()) {
1481 if (!ParseIPLiteralToNumber(hostname.substr(host_info.out_host.begin,
1482 host_info
1063 CanonicalizeHost(const std::string& host, url_canon::CanonHostInfo* host_info) argument
[all...]
H A Dnet_util.h206 // Canonicalizes |host| and returns it. Also fills |host_info| with
207 // IP address information. |host_info| must not be NULL.
209 url_canon::CanonHostInfo* host_info);
/external/chromium_org/net/base/registry_controlled_domains/
H A Dregistry_controlled_domain.cc208 url_canon::CanonHostInfo host_info; local
209 const std::string canon_host(CanonicalizeHost(host, &host_info));
210 if (canon_host.empty() || host_info.IsIPAddress())
258 url_canon::CanonHostInfo host_info; local
259 const std::string canon_host(CanonicalizeHost(host, &host_info));
262 if (host_info.IsIPAddress())
/external/chromium_org/net/cert/
H A Dcert_verify_proc.cc428 url_canon::CanonHostInfo host_info; local
429 const std::string dns_name = CanonicalizeHost(*i, &host_info);
430 if (host_info.IsIPAddress())
H A Dx509_certificate.cc519 url_canon::CanonHostInfo host_info; local
520 std::string reference_name = CanonicalizeHost(host_or_ip, &host_info);
535 if (host_info.IsIPAddress()) {
537 host_info.family == url_canon::CanonHostInfo::IPV4) {
543 reinterpret_cast<const char*>(host_info.address),
544 host_info.AddressLength());
/external/chromium_org/net/proxy/
H A Dproxy_bypass_rules.cc136 url_canon::CanonHostInfo host_info; local
139 &ignored_output, &host_info);
140 return host_info.IsIPAddress();
/external/chromium_org/net/quic/crypto/
H A Dcrypto_utils.cc54 url_canon::CanonHostInfo host_info; local
55 string canonicalized_host(CanonicalizeHost(sni.as_string(), &host_info));
56 return !host_info.IsIPAddress() &&
63 url_canon::CanonHostInfo host_info; local
64 string host(CanonicalizeHost(hostname, &host_info));
/external/chromium_org/chrome/browser/ui/webui/quota_internals/
H A Dquota_internals_proxy.cc126 std::vector<PerHostStorageInfo> host_info; local
127 host_info.reserve(entries.size());
133 host_info.push_back(info);
136 ReportPerHostInfo(host_info);
189 std::vector<PerHostStorageInfo> host_info; local
200 host_info.push_back(info);
205 ReportPerHostInfo(host_info);
/external/chromium_org/chrome/common/
H A Dcontent_settings_pattern.cc191 url_canon::CanonHostInfo host_info; local
192 std::string canonicalized_host(net::CanonicalizeHost(host, &host_info));
193 if (host_info.IsIPAddress() && parts->has_domain_wildcard)
/external/chromium_org/chrome/common/extensions/permissions/
H A Dsocket_permission_entry.cc91 url_canon::CanonHostInfo host_info; local
93 &ignored_output, &host_info);
94 if (host_info.IsIPAddress())
/external/chromium_org/chrome/browser/policy/
H A Durl_blacklist_manager.cc203 url_canon::CanonHostInfo host_info; local
205 &output, &host_info);
206 if (host_info.family == url_canon::CanonHostInfo::NEUTRAL) {
/external/chromium_org/chrome/browser/autocomplete/
H A Dautocomplete_input.cc304 url_canon::CanonHostInfo host_info; local
306 &host_info));
307 if ((host_info.family == url_canon::CanonHostInfo::NEUTRAL) &&
350 if (host_info.family == url_canon::CanonHostInfo::IPV6)
362 if ((host_info.family == url_canon::CanonHostInfo::IPV4) &&
363 (host_info.num_ipv4_components == 4))
395 if ((host_info.family != url_canon::CanonHostInfo::IPV4) &&
/external/chromium_org/base/
H A Dsys_info_mac.cc49 int result = host_info(host,
/external/chromium/net/proxy/
H A Dproxy_bypass_rules.cc134 url_canon::CanonHostInfo host_info; local
137 &ignored_output, &host_info);
138 return host_info.IsIPAddress();

Completed in 790 milliseconds

12