Searched refs:tmp_head (Results 1 – 3 of 3) sorted by relevance
/freebsd/sys/compat/linuxkpi/common/src/ |
H A D | linux_rcu.c | 152 STAILQ_HEAD(, callback_head) tmp_head; in linux_rcu_cleaner_func() 157 STAILQ_INIT(&tmp_head); in linux_rcu_cleaner_func() 161 STAILQ_INSERT_HEAD(&tmp_head, rcu, entry); in linux_rcu_cleaner_func() 168 while ((rcu = STAILQ_FIRST(&tmp_head)) != NULL) { in linux_rcu_cleaner_func() 169 STAILQ_REMOVE_HEAD(&tmp_head, entry); in linux_rcu_cleaner_func()
|
/freebsd/crypto/openssl/ssl/quic/ |
H A D | quic_txp.c | 2494 static void txp_enlink_tmp(QUIC_STREAM **tmp_head, QUIC_STREAM *stream) in txp_enlink_tmp() argument 2496 stream->txp_next = *tmp_head; in txp_enlink_tmp() 2497 *tmp_head = stream; in txp_enlink_tmp() 2503 QUIC_STREAM **tmp_head) in txp_generate_stream_related() argument 2537 txp_enlink_tmp(tmp_head, stream); in txp_generate_stream_related() 2566 txp_enlink_tmp(tmp_head, stream); in txp_generate_stream_related() 2611 txp_enlink_tmp(tmp_head, stream); in txp_generate_stream_related() 2649 txp_enlink_tmp(tmp_head, stream); in txp_generate_stream_related() 2655 txp_enlink_tmp(tmp_head, stream); in txp_generate_stream_related() 2660 txp_enlink_tmp(tmp_head, stream); in txp_generate_stream_related()
|
/freebsd/sys/net/route/ |
H A D | fib_algo.c | 1049 struct fib_data_head tmp_head = TAILQ_HEAD_INITIALIZER(tmp_head); in fib_cleanup_algo() local 1062 TAILQ_INSERT_TAIL(&tmp_head, fd, entries); in fib_cleanup_algo() 1069 TAILQ_FOREACH_SAFE(fd, &tmp_head, entries, fd_tmp) { in fib_cleanup_algo()
|