Home
last modified time | relevance | path

Searched refs:skt (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/intel/os/
H A Dcpuid_subr.c890 uint32_t skt = X86_SOCKET_UNKNOWN; in _cpuid_skt() local
895 synth_amd_info(family, model, step, &skt, NULL, NULL, NULL); in _cpuid_skt()
903 return (skt); in _cpuid_skt()
911 uint32_t skt = X86_SOCKET_UNKNOWN; in _cpuid_sktstr() local
916 synth_amd_info(family, model, step, &skt, NULL, NULL, NULL); in _cpuid_sktstr()
920 if (sktmapp->skt_code == skt) in _cpuid_sktstr()
/illumos-gate/usr/src/contrib/mDNSResponder/mDNSPosix/
H A DmDNSPosix.c285 mDNSlocal void SocketDataReady(mDNS *const m, PosixNetworkInterface *intf, int skt) in SocketDataReady() argument
300 assert(skt >= 0); in SocketDataReady()
304 …packetLen = recvfrom_flags(skt, &packet, sizeof(packet), &flags, (struct sockaddr *) &from, &fromL… in SocketDataReady()
358 &intf->coreIntf.ip, intf->intfName, intf->index, skt); in SocketDataReady()
373 … &senderAddr, &destAddr, &intf->coreIntf.ip, intf->intfName, intf->index, skt); in SocketDataReady()
/illumos-gate/usr/src/uts/intel/io/mc-amd/
H A Dmcamd_drv.c177 uint32_t skt = *((uint32_t *)arg1); in mc_nvl_add_socket_cb() local
180 if (cmi_hdl_getsockettype(whdl) == skt) { in mc_nvl_add_socket_cb()
/illumos-gate/usr/src/contrib/mDNSResponder/mDNSShared/
H A Duds_daemon.c5077 mDNSlocal mDNSBool uds_socket_setup(dnssd_sock_t skt) in uds_socket_setup() argument
5084 if (setsockopt(skt, SOL_SOCKET, SO_NP_EXTENSIONS, &sonpx, optlen) < 0) in uds_socket_setup()
5091 if (ioctlsocket(skt, FIONBIO, &opt) != 0) in uds_socket_setup()
5093 if (fcntl(skt, F_SETFL, fcntl(skt, F_GETFL, 0) | O_NONBLOCK) != 0) in uds_socket_setup()
5100 if (listen(skt, LISTENQ) != 0) in uds_socket_setup()
5106 …if (mStatus_NoError != udsSupportAddFDToEventLoop(skt, connect_callback, (void *) NULL, (void **) … in uds_socket_setup()
5113 LogOperation("%3d: Listening for incoming Unix Domain Socket client requests", skt); in uds_socket_setup()
5114 mDNSStorage.uds_listener_skt = skt; in uds_socket_setup()