/external/ltp/testcases/kernel/syscalls/socketcall/ |
socketcall04.c | 93 int domain; member in struct:test_case_t 140 if ((s = socket(TC.domain, TC.type, TC.pro)) == -1) {
|
/external/mdnsresponder/mDNSWindows/ControlPanel/ |
SecondPage.h | 57 void OnAddRegistrationDomain( CString & domain ); 58 void OnRemoveRegistrationDomain( CString & domain );
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
hlo_domain_map.h | 35 // A domain is composed by a set of instructions which can reach each other via 37 // A domain never crosses computation boundaries. 55 const std::vector<std::unique_ptr<DomainMetadata::Domain>>& GetDomains() 60 // Checks whether two instructions are within the same domain. 68 // Retrieves the domain identifier of the instruction, or -1 in case 69 // instruction is not found within any domain. 72 // Returns the unique id of the domain metadata for the domain the given 74 // instruction since each domain instruction is associated with 2 domains. 85 // kDomain instruction of the same kind, hence defining an empty domain [all...] |
/external/tensorflow/tensorflow/core/platform/default/gpu/ |
cupti_wrapper.h | 61 CUpti_CallbackDomain domain, 65 CUpti_CallbackDomain domain);
|
/external/u-boot/drivers/power/domain/ |
sandbox-power-domain.c | 8 #include <power-domain-uclass.h> 10 #include <asm/power-domain.h> 72 { .compatible = "sandbox,power-domain" },
|
/external/webrtc/webrtc/libjingle/xmpp/ |
mucroomlookuptask.h | 22 std::string domain; member in struct:buzz::MucRoomInfo 26 return name + "@" + domain;
|
/external/curl/lib/ |
curl_sspi.c | 134 * userp [in] - The user name in the format User or Domain\User. 145 xcharp_u domain, dup_domain; local 149 domain.const_tchar_ptr = TEXT(""); 163 domain.tchar_ptr = useranddomain.tchar_ptr; 169 domain.const_tchar_ptr = TEXT(""); 183 /* Setup the identity's domain and length */ 189 _tcsncpy(dup_domain.tchar_ptr, domain.tchar_ptr, domlen); 191 identity->Domain = dup_domain.tbyte_ptr; 232 Curl_safefree(identity->Domain);
|
curl_ntlm_wb.c | 120 char *slash, *domain = NULL; local 161 domain = strdup(username); 162 if(!domain) 164 slash = domain + (slash - username); 166 username = username + (slash - domain) + 1; 220 if(domain) 225 "--domain", domain, 243 free(domain); 248 free(domain); [all...] |
/external/linux-kselftest/tools/testing/selftests/bpf/ |
test_sock_addr.c | 66 int domain; member in struct:sock_addr_test 481 static int mk_sockaddr(int domain, const char *ip, unsigned short port, 487 if (domain != AF_INET && domain != AF_INET6) { 494 if (domain == AF_INET) { 498 addr4->sin_family = domain; 500 if (inet_pton(domain, ip, (void *)&addr4->sin_addr) != 1) { 504 } else if (domain == AF_INET6) { 508 addr6->sin6_family = domain; 510 if (inet_pton(domain, ip, (void *)&addr6->sin6_addr) != 1) 939 int domain; local 1013 int domain; local [all...] |
test_sock.c | 31 int domain; member in struct:sock_test 345 static int bind_sock(int domain, int type, const char *ip, unsigned short port) 354 sockfd = socket(domain, type, 0); 360 if (domain == AF_INET) { 363 addr4->sin_family = domain; 365 if (inet_pton(domain, ip, (void *)&addr4->sin_addr) != 1) 367 } else if (domain == AF_INET6) { 370 addr6->sin6_family = domain; 372 if (inet_pton(domain, ip, (void *)&addr6->sin6_addr) != 1) 410 if (bind_sock(test->domain, test->type, test->ip, test->port) == -1) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
_localemodule.c | 569 "dgettext(domain, msg) -> string\n"
570 "Return translation of msg in domain.");
575 char *domain, *in;
local 576 if (!PyArg_ParseTuple(args, "zs", &domain, &in))
578 return PyString_FromString(dgettext(domain, in));
582 "dcgettext(domain, msg, category) -> string\n"
583 "Return translation of msg in domain and category.");
588 char *domain, *msgid;
local 590 if (!PyArg_ParseTuple(args, "zsi", &domain, &msgid, &category))
592 return PyString_FromString(dcgettext(domain,msgid,category)); 602 char *domain; local 620 char *domain, *dirname; local 643 char *domain,*codeset; local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
_localemodule.c | 569 "dgettext(domain, msg) -> string\n"
570 "Return translation of msg in domain.");
575 char *domain, *in;
local 576 if (!PyArg_ParseTuple(args, "zs", &domain, &in))
578 return PyString_FromString(dgettext(domain, in));
582 "dcgettext(domain, msg, category) -> string\n"
583 "Return translation of msg in domain and category.");
588 char *domain, *msgid;
local 590 if (!PyArg_ParseTuple(args, "zsi", &domain, &msgid, &category))
592 return PyString_FromString(dcgettext(domain,msgid,category)); 602 char *domain; local 620 char *domain, *dirname; local 643 char *domain,*codeset; local [all...] |
/external/ltp/testcases/kernel/syscalls/sendmsg/ |
sendmsg01.c | 86 int domain; /* PF_INET, PF_UNIX, ... */ member in struct:test_case_t 105 {.domain = PF_INET, 122 {.domain = 0, 139 {.domain = PF_INET, 156 {.domain = PF_INET, 173 {.domain = PF_INET, 190 {.domain = PF_INET, 206 {.domain = PF_INET, 222 {.domain = PF_INET, 239 {.domain = PF_INET [all...] |
/external/python/cpython2/Modules/ |
_localemodule.c | 570 "dgettext(domain, msg) -> string\n" 571 "Return translation of msg in domain."); 576 char *domain, *in; local 577 if (!PyArg_ParseTuple(args, "zs", &domain, &in)) 579 return PyString_FromString(dgettext(domain, in)); 583 "dcgettext(domain, msg, category) -> string\n" 584 "Return translation of msg in domain and category."); 589 char *domain, *msgid; local 591 if (!PyArg_ParseTuple(args, "zsi", &domain, &msgid, &category)) 593 return PyString_FromString(dcgettext(domain,msgid,category)) 603 char *domain; local 621 char *domain, *dirname; local 644 char *domain,*codeset; local [all...] |
/external/python/cpython3/Lib/ |
tracemalloc.py | 257 # trace is a tuple: (domain: int, size: int, traceback: tuple). 262 def domain(self): member in class:Trace 283 return ("<Trace domain=%s size=%s, traceback=%r>" 284 % (self.domain, _format_size(self.size, False), self.traceback)) 329 lineno=None, all_frames=False, domain=None): 335 self.domain = domain 365 domain, size, traceback = trace 367 if self.domain is not None: 369 return res and (domain == self.domain 381 def domain(self): member in class:DomainFilter [all...] |
/external/python/cpython3/Modules/ |
_localemodule.c | 578 "dgettext(domain, msg) -> string\n" 579 "Return translation of msg in domain."); 584 char *domain, *in; local 585 if (!PyArg_ParseTuple(args, "zs", &domain, &in)) 587 return PyUnicode_DecodeLocale(dgettext(domain, in), NULL); 591 "dcgettext(domain, msg, category) -> string\n" 592 "Return translation of msg in domain and category."); 597 char *domain, *msgid; local 599 if (!PyArg_ParseTuple(args, "zsi", &domain, &msgid, &category)) 601 return PyUnicode_DecodeLocale(dcgettext(domain,msgid,category), NULL) 611 char *domain; local 629 char *domain, *dirname, *current_dirname; local 664 char *domain,*codeset; local [all...] |
/external/iperf3/src/ |
iperf_sctp.c | 174 if (test->settings->domain == AF_UNSPEC && !test->bind_address) { 177 hints.ai_family = test->settings->domain; 193 if (res->ai_family == AF_INET6 && (test->settings->domain == AF_UNSPEC || 194 test->settings->domain == AF_INET6)) { 195 if (test->settings->domain == AF_UNSPEC) 267 hints.ai_family = test->settings->domain; 276 hints.ai_family = test->settings->domain; 518 int domain; local 521 domain = test->settings->domain; [all...] |
net.c | 116 netdial(int domain, int proto, char *local, int local_port, char *server, int port, int timeout) 123 hints.ai_family = domain; 130 hints.ai_family = domain; 213 netannounce(int domain, int proto, char *local, int port) 233 if (domain == AF_UNSPEC && !local) { 237 hints.ai_family = domain; 268 if (res->ai_family == AF_INET6 && (domain == AF_UNSPEC || domain == AF_INET6)) { 269 if (domain == AF_UNSPEC)
|
/external/libxml2/ |
error.c | 251 int domain; local 268 domain = err->domain; 291 else if ((line != 0) && (domain == XML_FROM_PARSER)) 298 ((domain == XML_FROM_PARSER) || (domain == XML_FROM_SCHEMASV)|| 299 (domain == XML_FROM_SCHEMASP)||(domain == XML_FROM_DTD) || 300 (domain == XML_FROM_RELAXNGP)||(domain == XML_FROM_RELAXNGV)) [all...] |
/external/mdnsresponder/mDNSWindows/DNSServiceBrowser/Windows/Sources/ |
ChooserDialog.cpp | 60 // Domain List 244 CString domain; member in struct:DomainEventInfo 253 std::string domain; member in struct:ServiceEventInfo 386 // Set up the Domain List. 565 // Domain list changes have similar effects to service list changes so reuse that code path by calling it here. 587 // If a domain and service type are selected, start searching for the service type on the domain. 902 CString domain; 912 // Search to see if we already know about this domain. If not, add it to the list. 915 domain = p->domain [all...] |
/external/mdnsresponder/mDNSWindows/ |
Secret.c | 163 char domain[ 1024 ]; local 181 ZeroMemory( domain, sizeof( domain ) ); 184 err = strcpy_s( domain, sizeof( domain ) - 2, inDomain ); 187 if ( domain[ inDomainLength - 1 ] != '.' ) 189 domain[ inDomainLength++ ] = '.'; 190 domain[ inDomainLength ] = '\0'; 225 err = MakeLsaStringFromUTF8String( &lucZoneName, domain );
|
/external/autotest/client/cros/netprotos/ |
zeroconf.py | 59 def __init__(self, host, hostname, domain='local'): 63 hostname and a domain that defaults to 'local'. The ZeroconfDaemon will 72 self._domain = domain 109 """The hostname part within a domain.""" 114 def domain(self): member in class:ZeroconfDaemon 115 """The domain where the given hostname is running.""" 121 """The full hostname designation including host and domain name.""" 235 "service.proto.domain". The target host, this is, the host where the 237 daemon is running, "hostname.domain". 309 ### RFC 1035 - 3.3.12, Domain names - PTR (domain name pointer) [all...] |
/external/guava/guava/src/com/google/thirdparty/publicsuffix/ |
TrieParser.java | 27 * Parser for a map of reversed domain names stored as a serialized radix tree. 84 String domain = PREFIX_JOINER.join(stack); local 85 if (domain.length() > 0) { 86 builder.put(domain, PublicSuffixType.fromCode(c));
|
/external/parameter-framework/upstream/parameter/ |
ConfigurableDomains.cpp | 121 strError = "Already existing configurable domain"; 132 bool CConfigurableDomains::addDomain(CConfigurableDomain &domain, bool bOverwrite, string &strError) 136 string strDomainName(domain.getName()); 141 strError = "Can't add domain \"" + strDomainName + 149 addChild(&domain); 243 // Find domain 257 // Find domain 273 // Find domain 287 // Find domain 303 // Find domain 305 CConfigurableDomain *domain = findConfigurableDomain(domainName, error); local 412 const CConfigurableDomain *domain = findConfigurableDomain(domainName, error); local 542 CConfigurableDomain *domain = findConfigurableDomain(domainName, error); local [all...] |
/external/wayland/src/ |
wayland-os.c | 61 wl_os_socket_cloexec(int domain, int type, int protocol) 65 fd = socket(domain, type | SOCK_CLOEXEC, protocol); 71 fd = socket(domain, type, protocol);
|