Searched refs:domains (Results 1 - 25 of 70) sorted by relevance

123

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/route53/domains/
H A D__init__.py31 from boto.route53.domains.layer1 import Route53DomainsConnection
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dr600_hw_context_priv.h42 return ctx->ws->cs_add_reloc(ctx->cs, rbo->cs_buf, usage, rbo->domains) * 4;
H A Dradeonsi_resource.h42 unsigned domains; member in struct:si_resource
H A Dr600_buffer.c122 uint32_t initial_domain, domains; local
129 domains = RADEON_DOMAIN_GTT;
132 domains = RADEON_DOMAIN_GTT | RADEON_DOMAIN_VRAM;
155 res->domains = domains;
/external/c-ares/
H A Dares_destroy.c31 free(options->domains[i]);
32 free(options->domains);
73 if (channel->domains) {
75 free(channel->domains[i]);
76 free(channel->domains);
H A Dares_init.c167 channel->domains = NULL;
241 if (channel->domains)
244 free(channel->domains[i]);
245 free(channel->domains);
378 /* copy domains */
380 options->domains = malloc(channel->ndomains * sizeof(char *));
381 if (!options->domains)
387 options->domains[i] = strdup(channel->domains[i]);
388 if (!options->domains[
[all...]
/external/parameter-framework/upstream/tools/coverage/
H A Daplog2coverage.sh43 -d, --domains The domain xml file
64 --longoptions "help,domains:,ouput:,regexp:,parser_option:,force" \
78 -d|--domains)
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/route53/domains/
H A Dtest_route53domains.py24 from boto.route53.domains.exceptions import InvalidInput
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch/
H A Dlayer2.py73 domains = self.list_domains(domain_names=[domain_name])
74 if len(domains) > 0:
75 return domains[0]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch2/
H A Dlayer2.py92 domains = self.list_domains(domain_names=[domain_name])
93 if len(domains) > 0:
94 return domains[0]
/external/jetty/src/java/org/eclipse/jetty/util/
H A DHostMap.java87 HashSet<String> domains = new HashSet<String>();
89 domains.add(domain);
99 if (domains.contains(entry.getKey()))
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
H A Dsdbadmin116 parser.add_option("-l", "--list", help="List All domains", dest="list", default=False, action="store_true")
119 parser.add_option("-a", "--all-domains", help="Operate on all domains", action="store_true", default=False, dest="all_domains")
123 parser.add_option("-d", "--domain", help="Do functions on domain (may be more then one)", action="append", dest="domains")
129 for domain_name in options.domains:
150 if options.domains:
151 domains = [] variable
152 for domain_name in options.domains:
153 domains.append(sdb.get_domain(domain_name))
155 domains variable
157 domains = [choice_input(options=sdb.get_all_domains(), title="No domain specified, please choose one")] variable
[all...]
/external/autotest/client/cros/
H A Dpower_rapl.py31 def create_rapl(domains=None):
35 domains: list of strings, representing desired RAPL domains to
44 if not domains:
45 domains = VALID_DOMAINS
47 for domain in set(domains):
108 raise error.TestError("domain %s not in valid domains ( %s )" %
/external/parameter-framework/upstream/test/functional-tests/include/
H A DTest.hpp126 WarningPF() : ParameterFramework{{&Config::domains, "<InvalidDomain/>"}} member in class:parameterFramework::WarningPF::Config
H A DConfig.hpp63 std::string domains; member in struct:parameterFramework::Config
/external/v8/tools/
H A Dcallstats.py243 # Disambiguate domains, if needed.
245 domains = {}
260 if domain not in domains:
261 domains[domain] = entry
263 if not isinstance(domains[domain], int):
264 domains[domain][2] = 1
265 domains[domain] = 1
266 domains[domain] += 1
267 entry[2] = domains[domain]
423 domains
[all...]
/external/apache-harmony/security/src/test/api/java/tests/api/java/security/
H A DDomainCombinerTest.java58 // execution domains
70 ProtectionDomain[] domains = new ProtectionDomain[] { new ProtectionDomain(
73 AccessControlContext parent = new AccessControlContext(domains);
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
H A De164.py64 def query(number, domains, resolver=None):
65 """Look for NAPTR RRs for the specified number in the specified domains.
71 for domain in domains:
/external/libdrm/radeon/
H A Dradeon_bo_int.h16 uint32_t domains; member in struct:radeon_bo_int
29 uint32_t domains,
H A Dradeon_bo_gem.c67 uint32_t domains,
82 bo->base.domains = domains;
105 args.initial_domain = bo->base.domains;
115 fprintf(stderr, " domains : %d\n", bo->base.domains);
389 bo->base.domains = RADEON_GEM_DOMAIN_GTT;
63 bo_open(struct radeon_bo_manager *bom, uint32_t handle, uint32_t size, uint32_t alignment, uint32_t domains, uint32_t flags) argument
/external/parameter-framework/upstream/test/xml-generator/
H A Dtest.py44 def __init__(self, initialSettings=None, edds=[], domains=[]):
47 self.domains = domains
62 if testVector.domains:
63 self.command += ["--add-domains"] + testVector.domains
/external/chromium-trace/catapult/third_party/WebOb/webob/
H A Dcookies.py609 support subdomains and parent domains.
628 ``domains``
630 Can be passed an iterable containing multiple domains, this will set
648 domains=None,
656 self.domains = domains
678 self.domains,
705 def set_cookies(self, response, value, domains=_default, max_age=_default,
710 domains=domains,
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_buffer.c202 uint32_t initial_domain, domains; local
209 domains = RADEON_DOMAIN_GTT;
212 domains = RADEON_DOMAIN_GTT | RADEON_DOMAIN_VRAM;
235 res->domains = domains;
/external/parameter-framework/upstream/test/functional-tests/
H A DBasic.cpp115 {"settings", {&Config::domains, invalidXml}}}) {
155 SCENARIO_METHOD(LazyPF, "Invalid domains", "[properties]")
158 create({&Config::domains, "<Domain name='Invalid'/>"});
/external/strace/xlat/
H A Ddomains.h1 /* Generated by ./xlat/gen.sh from ./xlat/domains.in; do not edit. */
5 # error static const struct xlat domains in mpers mode
10 const struct xlat domains[] = { variable in typeref:struct:xlat

Completed in 744 milliseconds

123