/openbmc/linux/drivers/misc/sgi-gru/ |
H A D | gru_instructions.h | 360 unsigned int tri0, int iaa, unsigned long hints) in gru_vload_phys() argument 368 (unsigned long)tri0, CB_IMA(hints))); in gru_vload_phys() 372 unsigned int tri0, int iaa, unsigned long hints) in gru_vstore_phys() argument 380 (unsigned long)tri0, CB_IMA(hints))); in gru_vstore_phys() 385 unsigned long stride, unsigned long hints) in gru_vload() argument 393 (unsigned long)tri0, CB_IMA(hints))); in gru_vload() 398 unsigned long stride, unsigned long hints) in gru_vstore() argument 406 tri0, CB_IMA(hints))); in gru_vstore() 411 unsigned long nelem, unsigned long hints) in gru_ivload() argument 419 tri0, CB_IMA(hints))); in gru_ivload() [all …]
|
/openbmc/openbmc/poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/ |
H A D | 11_usagi_fix.patch | 19 memset(&hints, 0, sizeof(hints)); 20 hints.ai_family = AF_INET6; 21 hints.ai_socktype = SOCK_STREAM; 40 hints.ai_family = sin->sa_family; 41 hints.ai_socktype = SOCK_STREAM; 42 hints.ai_flags = AI_PASSIVE | AI_CANONNAME | AI_NUMERICHOST; 43 - if ((err = getaddrinfo(host->name, NULL, &hints, &res0) == 0)) { 44 + if ((err = getaddrinfo(host->name, NULL, &hints, &res0)) == 0) {
|
H A D | 10_usagi-ipv6.patch | 119 + struct addrinfo hints, *res; 128 + memset(&hints, 0, sizeof(hints)); 129 + hints.ai_family = AF_INET6; 130 + hints.ai_socktype = SOCK_STREAM; 131 + hints.ai_flags = AI_PASSIVE | AI_NUMERICHOST; 132 + if ((ret = getaddrinfo(tok + 1, NULL, &hints, &res)) == 0) { 137 + if (ret != 0 || getaddrinfo(string, NULL, &hints, &res) != 0) 205 + struct addrinfo hints, *res; 211 + memset(&hints, 0, sizeof(hints)); 212 + hints.ai_family = AF_INET6; [all …]
|
/openbmc/linux/drivers/gpu/drm/vboxvideo/ |
H A D | vbox_irq.c | 113 struct vbva_modehint *hints; in vbox_update_mode_hints() local 133 hints = &vbox->last_mode_hints[vbox_conn->vbox_crtc->crtc_id]; in vbox_update_mode_hints() 134 if (hints->magic != VBVAMODEHINT_MAGIC) in vbox_update_mode_hints() 137 disconnected = !(hints->enabled); in vbox_update_mode_hints() 139 vbox_conn->mode_hint.width = hints->cx; in vbox_update_mode_hints() 140 vbox_conn->mode_hint.height = hints->cy; in vbox_update_mode_hints() 141 vbox_conn->vbox_crtc->x_hint = hints->dx; in vbox_update_mode_hints() 142 vbox_conn->vbox_crtc->y_hint = hints->dy; in vbox_update_mode_hints() 154 hints->cx * 4, hints->cx, in vbox_update_mode_hints() 155 hints->cy, 0, flags); in vbox_update_mode_hints()
|
H A D | modesetting.c | 98 struct vbva_modehint *hints) in hgsmi_get_mode_hints() argument 103 if (WARN_ON(!hints)) in hgsmi_get_mode_hints() 123 memcpy(hints, ((u8 *)p) + sizeof(struct vbva_query_mode_hints), size); in hgsmi_get_mode_hints()
|
/openbmc/phosphor-user-manager/phosphor-ldap-config/ |
H A D | utils.cpp | 52 addrinfo hints{}; in isValidLDAPURI() local 54 hints.ai_family = AF_UNSPEC; in isValidLDAPURI() 55 hints.ai_socktype = SOCK_STREAM; in isValidLDAPURI() 56 hints.ai_flags |= AI_CANONNAME; in isValidLDAPURI() 58 auto result = getaddrinfo(ludppPtr->lud_host, nullptr, &hints, &servinfo); in isValidLDAPURI()
|
/openbmc/phosphor-ipmi-flash/tools/ |
H A D | net.cpp | 71 struct addrinfo hints; in sendContents() local 72 std::memset(&hints, 0, sizeof(hints)); in sendContents() 73 hints.ai_flags = AI_NUMERICHOST; in sendContents() 74 hints.ai_family = AF_UNSPEC; in sendContents() 75 hints.ai_socktype = SOCK_STREAM; in sendContents() 78 int ret = sys->getaddrinfo(host.c_str(), port.c_str(), &hints, &addrs); in sendContents()
|
/openbmc/qemu/net/ |
H A D | l2tpv3.c | 528 struct addrinfo hints; in net_init_l2tpv3() local 614 memset(&hints, 0, sizeof(hints)); in net_init_l2tpv3() 617 hints.ai_family = AF_INET6; in net_init_l2tpv3() 619 hints.ai_family = AF_INET; in net_init_l2tpv3() 622 hints.ai_socktype = SOCK_DGRAM; in net_init_l2tpv3() 623 hints.ai_protocol = 0; in net_init_l2tpv3() 629 hints.ai_socktype = SOCK_RAW; in net_init_l2tpv3() 630 hints.ai_protocol = IPPROTO_L2TP; in net_init_l2tpv3() 633 gairet = getaddrinfo(l2tpv3->src, srcport, &hints, &result); in net_init_l2tpv3() 654 memset(&hints, 0, sizeof(hints)); in net_init_l2tpv3() [all …]
|
/openbmc/ipmitool/src/plugins/ |
H A D | ipmi_intf.c | 338 struct addrinfo hints; in ipmi_intf_socket_connect() local 358 memset(&hints, 0, sizeof(hints)); in ipmi_intf_socket_connect() 359 hints.ai_family = AF_UNSPEC; /* Allow IPv4 or IPv6 */ in ipmi_intf_socket_connect() 360 hints.ai_socktype = SOCK_DGRAM; /* Datagram socket */ in ipmi_intf_socket_connect() 361 hints.ai_flags = 0; /* use AI_NUMERICSERV for no name resolution */ in ipmi_intf_socket_connect() 362 hints.ai_protocol = IPPROTO_UDP; /* */ in ipmi_intf_socket_connect() 364 if (getaddrinfo(params->hostname, service, &hints, &rp0) != 0) { in ipmi_intf_socket_connect() 389 hints.ai_family = rp->ai_family; in ipmi_intf_socket_connect() 406 hints.ai_family = rp->ai_family; in ipmi_intf_socket_connect() 462 hints.ai_family = rp->ai_family; in ipmi_intf_socket_connect() [all …]
|
/openbmc/phosphor-snmp/ |
H A D | snmp_util.cpp | 48 addrinfo hints{}; in resolveAddress() local 51 hints.ai_family = AF_UNSPEC; in resolveAddress() 52 hints.ai_socktype = SOCK_STREAM; in resolveAddress() 53 hints.ai_flags |= AI_CANONNAME; in resolveAddress() 55 auto result = getaddrinfo(address.c_str(), NULL, &hints, &addr); in resolveAddress()
|
/openbmc/linux/tools/usb/usbip/src/ |
H A D | usbip_network.c | 263 struct addrinfo hints, *res, *rp; in usbip_net_tcp_connect() local 267 memset(&hints, 0, sizeof(hints)); in usbip_net_tcp_connect() 268 hints.ai_family = AF_UNSPEC; in usbip_net_tcp_connect() 269 hints.ai_socktype = SOCK_STREAM; in usbip_net_tcp_connect() 272 ret = getaddrinfo(hostname, service, &hints, &res); in usbip_net_tcp_connect()
|
H A D | usbipd.c | 428 struct addrinfo hints, *ai_head; in do_getaddrinfo() local 431 memset(&hints, 0, sizeof(hints)); in do_getaddrinfo() 432 hints.ai_family = ai_family; in do_getaddrinfo() 433 hints.ai_socktype = SOCK_STREAM; in do_getaddrinfo() 434 hints.ai_flags = AI_PASSIVE; in do_getaddrinfo() 436 rc = getaddrinfo(host, usbip_port_string, &hints, &ai_head); in do_getaddrinfo()
|
/openbmc/linux/tools/testing/selftests/net/mptcp/ |
H A D | mptcp_inq.c | 75 const struct addrinfo *hints, in xgetaddrinfo() argument 78 int err = getaddrinfo(node, service, hints, res); in xgetaddrinfo() 93 struct addrinfo hints = { in sock_listen_mptcp() local 99 hints.ai_family = pf; in sock_listen_mptcp() 104 xgetaddrinfo(listenaddr, port, &hints, &addr); in sock_listen_mptcp() 105 hints.ai_family = pf; in sock_listen_mptcp() 138 struct addrinfo hints = { in sock_connect_mptcp() local 145 hints.ai_family = pf; in sock_connect_mptcp() 147 xgetaddrinfo(remoteaddr, port, &hints, &addr); in sock_connect_mptcp()
|
H A D | mptcp_sockopt.c | 162 const struct addrinfo *hints, in xgetaddrinfo() argument 165 int err = getaddrinfo(node, service, hints, res); in xgetaddrinfo() 180 struct addrinfo hints = { in sock_listen_mptcp() local 186 hints.ai_family = pf; in sock_listen_mptcp() 191 xgetaddrinfo(listenaddr, port, &hints, &addr); in sock_listen_mptcp() 192 hints.ai_family = pf; in sock_listen_mptcp() 225 struct addrinfo hints = { in sock_connect_mptcp() local 232 hints.ai_family = pf; in sock_connect_mptcp() 234 xgetaddrinfo(remoteaddr, port, &hints, &addr); in sock_connect_mptcp()
|
/openbmc/phosphor-logging/phosphor-rsyslog-config/ |
H A D | server-conf.cpp | 258 addrinfo hints{}; in addressValid() local 260 hints.ai_family = AF_UNSPEC; in addressValid() 261 hints.ai_socktype = SOCK_STREAM; in addressValid() 262 hints.ai_flags |= AI_CANONNAME; in addressValid() 264 auto result = getaddrinfo(address.c_str(), nullptr, &hints, &res); in addressValid()
|
/openbmc/linux/arch/x86/kernel/cpu/ |
H A D | mshyperv.c | 126 if (ms_hyperv.hints & HV_DEPRECATING_AEOI_RECOMMENDED) in DEFINE_IDTENTRY_SYSVEC() 425 ms_hyperv.hints = cpuid_eax(HYPERV_CPUID_ENLIGHTMENT_INFO); in ms_hyperv_init_platform() 430 ms_hyperv.features, ms_hyperv.priv_high, ms_hyperv.hints, in ms_hyperv_init_platform() 459 if (ms_hyperv.hints & HV_X64_HYPERV_NESTED) { in ms_hyperv_init_platform() 506 ms_hyperv.hints &= ~HV_X64_APIC_ACCESS_RECOMMENDED; in ms_hyperv_init_platform() 516 ms_hyperv.hints &= ~HV_X64_REMOTE_TLB_FLUSH_RECOMMENDED; in ms_hyperv_init_platform()
|
/openbmc/linux/sound/pci/hda/ |
H A D | hda_sysfs.c | 273 snd_array_for_each(&codec->hints, i, hint) { in hints_show() 286 snd_array_for_each(&codec->hints, i, hint) { in get_hint() 342 if (codec->hints.used >= MAX_HINTS) in parse_hints() 345 hint = snd_array_new(&codec->hints); in parse_hints() 405 static DEVICE_ATTR_RW(hints); 776 snd_array_init(&codec->hints, sizeof(struct hda_hint), 32); in snd_hda_sysfs_init() 790 snd_array_for_each(&codec->hints, i, hint) { in snd_hda_sysfs_clear() 793 snd_array_free(&codec->hints); in snd_hda_sysfs_clear()
|
/openbmc/linux/arch/arm64/hyperv/ |
H A D | mshyperv.c | 51 ms_hyperv.hints = result.as32.a; in hyperv_init() 54 ms_hyperv.features, ms_hyperv.priv_high, ms_hyperv.hints, in hyperv_init()
|
/openbmc/qemu/tests/unit/ |
H A D | crypto-tls-x509-helpers.c | 170 struct addrinfo hints; in test_tls_get_ipaddr() local 172 memset(&hints, 0, sizeof(hints)); in test_tls_get_ipaddr() 173 hints.ai_flags = AI_NUMERICHOST; in test_tls_get_ipaddr() 174 g_assert(getaddrinfo(addrstr, NULL, &hints, &res) == 0); in test_tls_get_ipaddr()
|
/openbmc/linux/drivers/net/ethernet/mellanox/mlxsw/ |
H A D | spectrum_acl_erp.c | 1307 struct objagg_hints *hints) in mlxsw_sp_acl_erp_table_create() argument 1317 hints, aregion); in mlxsw_sp_acl_erp_table_create() 1369 struct objagg_hints *hints, bool *p_rehash_needed) in mlxsw_sp_acl_erp_hints_check() argument 1386 hstats = objagg_hints_stats_get(hints); in mlxsw_sp_acl_erp_hints_check() 1410 struct objagg_hints *hints; in mlxsw_sp_acl_erp_rehash_hints_get() local 1415 hints = objagg_hints_get(erp_table->objagg, in mlxsw_sp_acl_erp_rehash_hints_get() 1418 if (IS_ERR(hints)) { in mlxsw_sp_acl_erp_rehash_hints_get() 1420 return ERR_CAST(hints); in mlxsw_sp_acl_erp_rehash_hints_get() 1422 err = mlxsw_sp_acl_erp_hints_check(mlxsw_sp, aregion, hints, in mlxsw_sp_acl_erp_rehash_hints_get() 1431 return hints; in mlxsw_sp_acl_erp_rehash_hints_get() [all …]
|
/openbmc/openbmc/poky/meta/recipes-support/apr/apr-util/ |
H A D | configure_fixes.patch | 13 -sinclude(build/apu-hints.m4) 22 +#sinclude(build/apu-hints.m4)
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/ |
H A D | python3-typer_0.14.0.bb | 1 SUMMARY = "Typer, build great CLIs. Easy to code. Based on Python type hints." 3 …cations that users will love using and developers will love creating. Based on Python type hints. \
|
/openbmc/linux/lib/ |
H A D | objagg.c | 51 struct objagg_hints *hints; member 232 if (!objagg->hints) { in objagg_obj_root_id_alloc() 244 min = objagg->hints->root_count; in objagg_obj_root_id_alloc() 259 if (!objagg->hints) in objagg_obj_root_id_free() 306 hnode = objagg_hints_lookup(objagg->hints, objagg_obj->obj); in objagg_obj_init_with_hints() 533 objagg->hints = objagg_hints; in objagg_create() 570 if (objagg->hints) in objagg_destroy() 571 objagg_hints_put(objagg->hints); in objagg_destroy()
|
/openbmc/linux/arch/x86/hyperv/ |
H A D | hv_apic.c | 115 if (!(ms_hyperv.hints & HV_X64_EX_PROCESSOR_MASKS_RECOMMENDED)) in __send_ipi_mask_ex() 291 if (ms_hyperv.hints & HV_X64_CLUSTER_IPI_RECOMMENDED) { in hv_apic_init() 306 if (ms_hyperv.hints & HV_X64_APIC_ACCESS_RECOMMENDED) { in hv_apic_init()
|
/openbmc/linux/tools/testing/selftests/net/ |
H A D | cmsg_sender.c | 417 struct addrinfo hints, *ai; in main() local 430 memset(&hints, 0, sizeof(hints)); in main() 431 hints.ai_family = opt.sock.family; in main() 434 err = getaddrinfo(opt.host, opt.service, &hints, &ai); in main()
|