Searched refs:hints (Results 1 – 14 of 14) sorted by relevance
/tools/usb/usbip/src/ |
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()
|
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()
|
/tools/testing/vsock/ |
D | control.c | 38 struct addrinfo hints = { in control_init() local 45 ret = getaddrinfo(control_host, control_port, &hints, &result); in control_init()
|
/tools/perf/scripts/python/ |
D | intel-pt-events.py | 52 hints = payload & 0xff 54 print("hints: %#x extensions: %#x" % (hints, extensions), end=' ')
|
D | export-to-sqlite.py | 742 hints = payload & 0xff 745 mwait_query.addBindValue(str(hints))
|
D | export-to-postgresql.py | 1064 hints = payload & 0xff 1066 value = struct.pack("!hiqiiii", 3, 8, id, 4, hints, 4, extensions)
|
/tools/testing/selftests/bpf/ |
D | xdping.c | 90 struct addrinfo *a, hints = { .ai_family = AF_INET }; in main() local 160 if (getaddrinfo(argv[optind], NULL, &hints, &a) || !a) { in main()
|
/tools/objtool/ |
D | check.h | 54 bool ignore_unreachables, c_file, hints, rodata; member
|
D | check.c | 1187 file->hints = true; in read_unwind_hints() 2294 if (!file->hints) in validate_unwind_hints() 2516 file.hints = false; in check()
|
/tools/testing/selftests/networking/timestamping/ |
D | txtimestamp.c | 663 struct addrinfo hints = { .ai_family = do_ipv4 ? AF_INET : AF_INET6 }; in resolve_hostname() local 668 if (getaddrinfo(hostname, NULL, &hints, &addrs)) in resolve_hostname() 688 if (do_ipv6 && hints.ai_family != AF_INET6) { in resolve_hostname() 689 hints.ai_family = AF_INET6; in resolve_hostname()
|
/tools/hv/ |
D | hv_kvp_daemon.c | 1334 struct addrinfo hints, *info ; in kvp_get_domain_name() local 1338 memset(&hints, 0, sizeof(hints)); in kvp_get_domain_name() 1339 hints.ai_family = AF_INET; /*Get only ipv4 addrinfo. */ in kvp_get_domain_name() 1340 hints.ai_socktype = SOCK_STREAM; in kvp_get_domain_name() 1341 hints.ai_flags = AI_CANONNAME; in kvp_get_domain_name() 1343 error = getaddrinfo(buffer, NULL, &hints, &info); in kvp_get_domain_name()
|
/tools/perf/util/ |
D | event.h | 193 u64 hints : 8, member
|
/tools/perf/Documentation/ |
D | intel-pt.txt | 791 mwait: hints: 0x60 extensions: 0x1 797 "mwait" shows mwait hints and extensions
|
/tools/perf/ |
D | builtin-script.c | 1548 data->hints, data->extensions); in perf_sample__fprintf_synth_mwait()
|