Home
last modified time | relevance | path

Searched refs:ndtc (Results 1 – 5 of 5) sorted by relevance

/external/strace/
Drtnl_neightbl.c51 struct ndt_config ndtc; in decode_ndt_config() local
53 if (len < sizeof(ndtc)) in decode_ndt_config()
55 else if (!umove_or_printaddr(tcp, addr, &ndtc)) { in decode_ndt_config()
56 PRINT_FIELD_U("{", ndtc, ndtc_key_len); in decode_ndt_config()
57 PRINT_FIELD_U(", ", ndtc, ndtc_entry_size); in decode_ndt_config()
58 PRINT_FIELD_U(", ", ndtc, ndtc_entries); in decode_ndt_config()
59 PRINT_FIELD_U(", ", ndtc, ndtc_last_flush); in decode_ndt_config()
60 PRINT_FIELD_U(", ", ndtc, ndtc_last_rand); in decode_ndt_config()
61 PRINT_FIELD_U(", ", ndtc, ndtc_hash_rnd); in decode_ndt_config()
62 PRINT_FIELD_0X(", ", ndtc, ndtc_hash_mask); in decode_ndt_config()
[all …]
/external/strace/tests-m32/
Dnlattr_ndtmsg.c86 static const struct ndt_config ndtc = { in main() local
99 NDTA_CONFIG, pattern, ndtc, in main()
100 PRINT_FIELD_U("{", ndtc, ndtc_key_len); in main()
101 PRINT_FIELD_U(", ", ndtc, ndtc_entry_size); in main()
102 PRINT_FIELD_U(", ", ndtc, ndtc_entries); in main()
103 PRINT_FIELD_U(", ", ndtc, ndtc_last_flush); in main()
104 PRINT_FIELD_U(", ", ndtc, ndtc_last_rand); in main()
105 PRINT_FIELD_U(", ", ndtc, ndtc_hash_rnd); in main()
106 PRINT_FIELD_0X(", ", ndtc, ndtc_hash_mask); in main()
107 PRINT_FIELD_U(", ", ndtc, ndtc_hash_chain_gc); in main()
[all …]
/external/strace/tests-mx32/
Dnlattr_ndtmsg.c86 static const struct ndt_config ndtc = { in main() local
99 NDTA_CONFIG, pattern, ndtc, in main()
100 PRINT_FIELD_U("{", ndtc, ndtc_key_len); in main()
101 PRINT_FIELD_U(", ", ndtc, ndtc_entry_size); in main()
102 PRINT_FIELD_U(", ", ndtc, ndtc_entries); in main()
103 PRINT_FIELD_U(", ", ndtc, ndtc_last_flush); in main()
104 PRINT_FIELD_U(", ", ndtc, ndtc_last_rand); in main()
105 PRINT_FIELD_U(", ", ndtc, ndtc_hash_rnd); in main()
106 PRINT_FIELD_0X(", ", ndtc, ndtc_hash_mask); in main()
107 PRINT_FIELD_U(", ", ndtc, ndtc_hash_chain_gc); in main()
[all …]
/external/strace/tests/
Dnlattr_ndtmsg.c86 static const struct ndt_config ndtc = { in main() local
99 NDTA_CONFIG, pattern, ndtc, in main()
100 PRINT_FIELD_U("{", ndtc, ndtc_key_len); in main()
101 PRINT_FIELD_U(", ", ndtc, ndtc_entry_size); in main()
102 PRINT_FIELD_U(", ", ndtc, ndtc_entries); in main()
103 PRINT_FIELD_U(", ", ndtc, ndtc_last_flush); in main()
104 PRINT_FIELD_U(", ", ndtc, ndtc_last_rand); in main()
105 PRINT_FIELD_U(", ", ndtc, ndtc_hash_rnd); in main()
106 PRINT_FIELD_0X(", ", ndtc, ndtc_hash_mask); in main()
107 PRINT_FIELD_U(", ", ndtc, ndtc_hash_chain_gc); in main()
[all …]
/external/iproute2/ip/
Dipntable.c435 struct ndt_config *ndtc = RTA_DATA(tb[NDTA_CONFIG]); in print_ntable() local
440 fprintf(fp, "key_len %u ", ndtc->ndtc_key_len); in print_ntable()
441 fprintf(fp, "entry_size %u ", ndtc->ndtc_entry_size); in print_ntable()
442 fprintf(fp, "entries %u ", ndtc->ndtc_entries); in print_ntable()
448 ntable_strtime_delta(ndtc->ndtc_last_flush)); in print_ntable()
450 ntable_strtime_delta(ndtc->ndtc_last_rand)); in print_ntable()
455 fprintf(fp, "hash_rnd %u ", ndtc->ndtc_hash_rnd); in print_ntable()
456 fprintf(fp, "hash_mask %08x ", ndtc->ndtc_hash_mask); in print_ntable()
458 fprintf(fp, "hash_chain_gc %u ", ndtc->ndtc_hash_chain_gc); in print_ntable()
459 fprintf(fp, "proxy_qlen %u ", ndtc->ndtc_proxy_qlen); in print_ntable()