Searched defs:domain (Results 26 - 50 of 313) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/drivers/nouveau/nv30/
H A Dnv30_transfer.h7 unsigned domain; member in struct:nv30_rect
31 struct nouveau_bo *, unsigned offset, unsigned domain,
/external/apache-http/android/src/android/net/http/
H A DCertificateChainValidator.java106 * @param domain The website domain
110 HttpsConnection connection, SSLSocket sslSocket, String domain)
135 return verifyServerDomainAndCertificates((X509Certificate[]) peerCertificates, domain, "RSA");
142 * @param domain The full website hostname and domain
147 byte[][] certChain, String domain, String authType)
166 return verifyServerDomainAndCertificates(serverCertificates, domain, authType);
203 * Calls DomainNamevalidator to verify the domain, and TrustManager to verify the certs.
205 * @param domain Th
109 doHandshakeAndValidateServerCertificates( HttpsConnection connection, SSLSocket sslSocket, String domain) argument
146 verifyServerCertificates( byte[][] certChain, String domain, String authType) argument
209 verifyServerDomainAndCertificates( X509Certificate[] chain, String domain, String authType) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DContiguousSet.java44 * Returns a {@code ContiguousSet} containing the same values in the given domain
47 * @throws IllegalArgumentException if neither range nor the domain has a lower bound, or if
53 Range<C> range, DiscreteDomain<C> domain) {
55 checkNotNull(domain);
59 effectiveRange = effectiveRange.intersection(Range.atLeast(domain.minValue()));
62 effectiveRange = effectiveRange.intersection(Range.atMost(domain.maxValue()));
71 range.lowerBound.leastValueAbove(domain),
72 range.upperBound.greatestValueBelow(domain)) > 0;
75 ? new EmptyContiguousSet<C>(domain)
76 : new RegularContiguousSet<C>(effectiveRange, domain);
52 create( Range<C> range, DiscreteDomain<C> domain) argument
79 final DiscreteDomain<C> domain; field in class:ContiguousSet
81 ContiguousSet(DiscreteDomain<C> domain) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DContiguousSet.java41 * Returns a {@code ContiguousSet} containing the same values in the given domain
44 * @throws IllegalArgumentException if neither range nor the domain has a lower bound, or if
50 Range<C> range, DiscreteDomain<C> domain) {
52 checkNotNull(domain);
56 effectiveRange = effectiveRange.intersection(Range.atLeast(domain.minValue()));
59 effectiveRange = effectiveRange.intersection(Range.atMost(domain.maxValue()));
68 range.lowerBound.leastValueAbove(domain),
69 range.upperBound.greatestValueBelow(domain)) > 0;
72 ? new EmptyContiguousSet<C>(domain)
73 : new RegularContiguousSet<C>(effectiveRange, domain);
49 create( Range<C> range, DiscreteDomain<C> domain) argument
76 final DiscreteDomain<C> domain; field in class:ContiguousSet
78 ContiguousSet(DiscreteDomain<C> domain) argument
[all...]
/external/javassist/src/main/javassist/util/proxy/
H A DFactoryHelper.java128 * This method uses a default protection domain for the class
142 * @param domain if it is null, a default domain is used.
145 public static Class toClass(ClassFile cf, ClassLoader loader, ProtectionDomain domain) argument
152 if (domain == null) {
160 new Integer(b.length), domain };
/external/libbrillo/brillo/errors/
H A Derror.cc15 const std::string& domain,
25 << "Domain=" << domain << ", Code=" << code << ", Message=" << message;
30 const std::string& domain,
33 return Create(location, domain, code, message, ErrorPtr());
37 const std::string& domain,
41 LogError(location, domain, code, message);
43 new Error(location, domain, code, message, std::move(inner_error)));
48 const std::string& domain,
52 *error = Create(location, domain, code, message, std::move(*error));
56 LogError(location, domain, cod
14 LogError(const tracked_objects::Location& location, const std::string& domain, const std::string& code, const std::string& message) argument
29 Create(const tracked_objects::Location& location, const std::string& domain, const std::string& code, const std::string& message) argument
36 Create(const tracked_objects::Location& location, const std::string& domain, const std::string& code, const std::string& message, ErrorPtr inner_error) argument
46 AddTo(ErrorPtr* error, const tracked_objects::Location& location, const std::string& domain, const std::string& code, const std::string& message) argument
60 AddToPrintf(ErrorPtr* error, const tracked_objects::Location& location, const std::string& domain, const std::string& code, const char* format, ...) argument
83 HasError(const std::string& domain, const std::string& code) const argument
94 Error(const tracked_objects::Location& location, const std::string& domain, const std::string& code, const std::string& message, ErrorPtr inner_error) argument
106 Error(const tracked_objects::LocationSnapshot& location, const std::string& domain, const std::string& code, const std::string& message, ErrorPtr inner_error) argument
118 FindErrorOfDomain(const Error* error_chain_start, const std::string& domain) argument
128 FindError(const Error* error_chain_start, const std::string& domain, const std::string& code) argument
[all...]
/external/libdrm/radeon/
H A Dradeon_cs.c77 radeon_cs_set_limit(struct radeon_cs *cs, uint32_t domain, uint32_t limit) argument
80 if (domain == RADEON_GEM_DOMAIN_VRAM)
/external/libexif/libexif/
H A Dexif-log.c135 exif_log (ExifLog *log, ExifLogCode code, const char *domain, argument
141 exif_logv (log, code, domain, format, args);
146 exif_logv (ExifLog *log, ExifLogCode code, const char *domain, argument
151 log->func (log, code, domain, format, args, log->data);
/external/ltp/testcases/kernel/syscalls/bind/
H A Dbind01.c68 int domain; /* PF_INET, PF_UNIX, ... */ member in struct:test_case_t
98 "UNIX-domain of current directory"}
178 s = SAFE_SOCKET(cleanup, tdat[testno].domain, tdat[testno].type,
/external/ltp/testcases/kernel/syscalls/getsockname/
H A Dgetsockname01.c68 int domain; /* PF_INET, PF_UNIX, ... */ member in struct:test_case_t
171 s = SAFE_SOCKET(cleanup, tdat[testno].domain, tdat[testno].type,
/external/ltp/testcases/kernel/syscalls/listen/
H A Dlisten01.c67 int domain; /* PF_INET, PF_UNIX, ... */ member in struct:test_case_t
144 s = SAFE_SOCKET(cleanup, tdat[testno].domain, tdat[testno].type,
/external/ltp/testcases/kernel/syscalls/socketcall/
H A Dsocketcall03.c93 int domain; member in struct:test_case_t
146 if ((s = socket(TC.domain, TC.type, TC.pro)) == -1) {
H A Dsocketcall04.c93 int domain; member in struct:test_case_t
140 if ((s = socket(TC.domain, TC.type, TC.pro)) == -1) {
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/tirpc_svc_5/
H A Dtirpc_svc_5.c48 int domain; member in struct:server_def_t
81 this->sock = bound_socket(this->domain, this->type);
/external/mdnsresponder/mDNSWindows/DNSServiceBrowser/Windows/Sources/
H A DChooserDialog.h42 std::string domain; member in struct:ServiceInstanceInfo
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_buffer.h37 uint8_t *data; /* resource's contents, if domain == 0, or cached */
42 uint8_t domain; member in struct:nv04_resource
65 struct nv04_resource *, unsigned domain);
87 return nv04_resource(resource)->domain != 0;
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_queryobj.c167 uint32_t domain; local
174 if (radeon_bo_is_busy(query->bo, &domain) == 0) {
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_queryobj.c167 uint32_t domain; local
174 if (radeon_bo_is_busy(query->bo, &domain) == 0) {
/external/parameter-framework/upstream/test/functional-tests/include/
H A DParameterFramework.hpp143 void setConfigurationParameter(const std::string domain, const std::string &configuration, argument
146 mayFailCall(&PF::accessConfigurationValue, domain, configuration, path, value, true);
152 void getConfigurationParameter(const std::string &domain, const std::string &configuration, argument
155 mayFailCall(&PF::accessConfigurationValue, domain, configuration, path, value, false);
/external/ppp/pppd/plugins/rp-pppoe/
H A Dif.c101 int domain, stype; local
112 domain = PF_PACKET;
115 domain = PF_INET;
119 if ((fd = socket(domain, stype, htons(type))) < 0) {
/external/skia/src/gpu/
H A DGrTextureMaker.cpp108 // We instead we compute the domain as though were bilerping which is only correct if we
130 SkRect domain; local
133 proxy.get(), fmForDetermineDomain, &domain);
137 domainMode, domain, filterOrNullForBicubic);
/external/skia/src/gpu/effects/
H A DGrMatrixConvolutionEffect.h51 const GrTextureDomain& domain() const { return fDomain; } function in class:GrMatrixConvolutionEffect
/external/skqp/src/gpu/
H A DGrTextureMaker.cpp108 // We instead we compute the domain as though were bilerping which is only correct if we
130 SkRect domain; local
133 proxy.get(), fmForDetermineDomain, &domain);
137 domainMode, domain, filterOrNullForBicubic);
/external/skqp/src/gpu/effects/
H A DGrMatrixConvolutionEffect.h51 const GrTextureDomain& domain() const { return fDomain; } function in class:GrMatrixConvolutionEffect
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
H A DLogTransformer.java165 public byte[] transform(ClassLoader loader, String className, Class<?> clazz, ProtectionDomain domain, byte[] bytes) { argument
168 return transform0(className, clazz, domain, bytes);
183 * @param domain
188 private byte[] transform0(String className, Class<?> clazz, ProtectionDomain domain, byte[] bytes) { argument
198 if (domain != null && domain.getClassLoader() != null) {
199 domain.getClassLoader().loadClass(slf4jName);
202 System.err.println("Skipping " + className + " as it doesn't have a domain or a class loader.");

Completed in 643 milliseconds

1234567891011>>