Searched defs:domain (Results 1 - 25 of 313) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Dmemset-invalid-1.c9 void mt_query_for_domain(const char *domain) argument
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_common.h16 const u8 *domain; member in struct:erp_tlvs
/external/wpa_supplicant_8/src/eap_common/
H A Deap_common.h16 const u8 *domain; member in struct:erp_tlvs
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_common.h16 const u8 *domain; member in struct:erp_tlvs
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/lib/
H A Dlibrpc-tirpc.c26 int bound_socket(int domain, int type) argument
34 switch (domain) {
59 sock = socket(domain, type, 0);
/external/apache-http/src/org/apache/http/auth/
H A DNTUserPrincipal.java52 private final String domain; field in class:NTUserPrincipal
56 final String domain,
63 if (domain != null) {
64 this.domain = domain.toUpperCase(Locale.ENGLISH);
66 this.domain = null;
68 if (this.domain != null && this.domain.length() > 0) {
70 buffer.append(this.domain);
84 return this.domain;
55 NTUserPrincipal( final String domain, final String username) argument
[all...]
H A DNTCredentials.java66 * @param usernamePassword the domain/username:password formed string
97 * @param userName The user name. This should not include the domain to authenticate with.
102 * @param domain The domain to authenticate within.
108 final String domain) {
113 this.principal = new NTUserPrincipal(domain, userName);
137 * @return String the domain these credentials are intended to authenticate with.
104 NTCredentials( final String userName, final String password, final String workstation, final String domain) argument
/external/apache-http/src/org/apache/http/impl/auth/
H A DNTLMEngine.java50 * Generates a Type1 message given the domain and workstation.
52 * @param domain Optional Windows domain name. Can be <code>null</code>.
59 String domain,
68 * @param domain Windows domain name
77 String domain,
58 generateType1Msg( String domain, String workstation) argument
74 generateType3Msg( String username, String password, String domain, String workstation, String challenge) argument
/external/apache-http/src/org/apache/http/impl/cookie/
H A DNetscapeDomainHandler.java58 String domain = cookie.getDomain();
60 int domainParts = new StringTokenizer(domain, ".").countTokens();
62 if (isSpecialDomain(domain)) {
65 + domain
72 + domain
80 * Checks if the given domain is in one of the seven special
82 * @param domain The domain.
83 * @return True if the specified domain is "special"
85 private static boolean isSpecialDomain(final String domain) { argument
[all...]
H A DRFC2965DomainAttributeHandler.java62 * Parse cookie domain attribute.
64 public void parse(final SetCookie cookie, String domain) argument
69 if (domain == null) {
71 "Missing value for domain attribute");
73 if (domain.trim().length() == 0) {
75 "Blank value for domain attribute");
77 domain = domain.toLowerCase(Locale.ENGLISH);
78 if (!domain.startsWith(".")) {
82 // That effectively implies that the domain attribut
104 domainMatch(String host, String domain) argument
[all...]
/external/guice/extensions/jmx/src/com/google/inject/tools/jmx/
H A DManager.java41 * Consider using the name of your root {@link Module} class as the domain.
44 String domain,
46 manage(ManagementFactory.getPlatformMBeanServer(), domain, injector);
51 * Consider using the name of your root {@link Module} class as the domain.
53 public static void manage(MBeanServer server, String domain, argument
60 name.append(domain).append(":");
43 manage( String domain, Injector injector) argument
/external/ltp/testcases/kernel/syscalls/socket/
H A Dsocket01.c36 int domain; member in struct:test_case_t
43 {0, SOCK_STREAM, 0, -1, EAFNOSUPPORT, "invalid domain"},
45 {PF_UNIX, SOCK_DGRAM, 0, 0, 0, "UNIX domain dgram"},
59 TEST(fd = socket(tc->domain, tc->type, tc->proto));
/external/ltp/testcases/kernel/syscalls/socketpair/
H A Dsocketpair01.c37 int domain; member in struct:test_case_t
45 {0, SOCK_STREAM, 0, fds, -1, EAFNOSUPPORT, "invalid domain"},
47 {PF_UNIX, SOCK_DGRAM, 0, fds, 0, 0, "UNIX domain dgram"},
63 TEST(socketpair(tc->domain, tc->type, tc->proto, tc->sv));
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
H A Dnv50_transfer.h10 unsigned domain; member in struct:nv50_m2mf_rect
/external/skia/src/gpu/effects/
H A DGrBicubicEffect.h29 const GrTextureDomain& domain() const { return fDomain; } function in class:GrBicubicEffect
42 * Create a Mitchell filter effect with a texture matrix and a domain.
46 const SkRect& domain) {
48 domain));
64 GrBicubicEffect(sk_sp<GrTextureProxy>, const SkMatrix &matrix, const SkRect& domain);
44 Make(sk_sp<GrTextureProxy> proxy, const SkMatrix& matrix, const SkRect& domain) argument
/external/skqp/src/gpu/effects/
H A DGrBicubicEffect.h29 const GrTextureDomain& domain() const { return fDomain; } function in class:GrBicubicEffect
42 * Create a Mitchell filter effect with a texture matrix and a domain.
46 const SkRect& domain) {
48 domain));
64 GrBicubicEffect(sk_sp<GrTextureProxy>, const SkMatrix &matrix, const SkRect& domain);
44 Make(sk_sp<GrTextureProxy> proxy, const SkMatrix& matrix, const SkRect& domain) argument
/external/webrtc/webrtc/libjingle/xmpp/
H A Djid.h21 // consists of three parts: the node, the domain and the resource, e.g.:
23 // node@domain/resource
26 // a domain. A bare jid is defined to not have a resource and a full jid
38 const std::string & domain() const { return domain_name_; } function in class:buzz::Jid
66 static std::string PrepDomain(const std::string& domain, bool* valid);
67 static void PrepDomain(const std::string& domain,
H A Dmucroomlookuptask.h22 std::string domain; member in struct:buzz::MucRoomInfo
26 return name + "@" + domain;
/external/apache-http/src/org/apache/http/cookie/
H A DSetCookie.java77 * Sets the domain attribute.
79 * @param domain The value of the domain attribute
83 void setDomain(String domain); argument
/external/curl/lib/
H A Dcurl_sspi.c144 xcharp_u domain, dup_domain; local
148 domain.const_tchar_ptr = TEXT("");
162 domain.tchar_ptr = useranddomain.tchar_ptr;
168 domain.const_tchar_ptr = TEXT("");
182 /* Setup the identity's domain and length */
188 _tcsncpy(dup_domain.tchar_ptr, domain.tchar_ptr, domlen);
/external/libbrillo/brillo/dbus/
H A Dutils.cc31 // Special case for "dbus" error domain.
42 // Format error string as "domain/code:message".
58 // Each part should be in format of "domain/code:message"
65 std::string domain = part.substr(0, slash_pos); local
68 errors.emplace_back(domain, code, message);
/external/libdrm/nouveau/nvif/
H A Dif0002.h20 __u8 domain; member in struct:nvif_perfmon_query_signal_v0
30 __u8 domain; member in struct:nvif_perfmon_query_source_v0
H A Dif0003.h6 __u8 domain; member in struct:nvif_perfdom_v0
/external/libexif/test/nls/
H A Dtest-nls.c67 const char *domain = textdomain(GETTEXT_PACKAGE); local
68 printf("message domain: %s\n", domain);
/external/linux-kselftest/tools/testing/selftests/net/
H A Dsocket.c11 int domain; member in struct:socket_testcase
48 fd = socket(s->domain, s->type, s->protocol);
63 s->domain, s->type, s->protocol,
76 s->domain, s->type, s->protocol,

Completed in 1355 milliseconds

1234567891011>>