Home
last modified time | relevance | path

Searched refs:sessions (Results 1 – 25 of 27) sorted by relevance

12

/f-stack/dpdk/drivers/crypto/zuc/
H A Drte_zuc_pmd.c174 struct zuc_session **sessions, in process_zuc_cipher_op() argument
195 sess = sessions[i]; in process_zuc_cipher_op()
236 struct zuc_session **sessions, in process_zuc_hash_op() argument
256 sess = sessions[i]; in process_zuc_hash_op()
300 struct zuc_session **sessions, in process_ops() argument
310 sessions, num_ops); in process_ops()
394 sessions[0] = curr_sess; in zuc_pmd_enqueue_burst()
406 sessions, qp, burst_size, in zuc_pmd_enqueue_burst()
421 sessions, qp, burst_size, in zuc_pmd_enqueue_burst()
432 sessions[0] = curr_sess; in zuc_pmd_enqueue_burst()
[all …]
/f-stack/dpdk/examples/ipsec-secgw/
H A Dipsec.h109 struct rte_ipsec_session sessions[IPSEC_SESSION_MAX]; member
329 return &sa->sessions[IPSEC_SESSION_PRIMARY]; in ipsec_get_primary_session()
335 return &sa->sessions[IPSEC_SESSION_FALLBACK]; in ipsec_get_fallback_session()
H A Dsa.c868 ips = &sa->sessions[IPSEC_SESSION_PRIMARY]; in print_one_sa_rule()
888 fallback_ips = &sa->sessions[IPSEC_SESSION_FALLBACK]; in print_one_sa_rule()
/f-stack/freebsd/netgraph/
H A Dng_pptpgre.c195 LIST_ENTRY(ng_pptpgre_sess) sessions;
342 LIST_INSERT_HEAD(&priv->sesshash[0], &priv->uppersess, sessions); in ng_pptpgre_constructor()
404 LIST_INSERT_HEAD(&priv->sesshash[hash], hpriv, sessions); in ng_pptpgre_newhook()
440 LIST_REMOVE(hpriv, sessions); in ng_pptpgre_rcvmsg()
443 sessions); in ng_pptpgre_rcvmsg()
545 LIST_REMOVE(hpriv, sessions); in ng_pptpgre_disconnect()
568 LIST_REMOVE(&priv->uppersess, sessions); in ng_pptpgre_shutdown()
1223 LIST_FOREACH(hpriv, &privp->sesshash[hash], sessions) { in ng_pptpgre_find_session()
H A Dng_pppoe.c262 LIST_ENTRY(sess_con) sessions;
445 LIST_FOREACH(sp, &privp->listeners, sessions) { in pppoe_match_svc()
483 LIST_FOREACH(sp, &privp->listeners, sessions) { in pppoe_broadcast_padi()
506 LIST_FOREACH(sp, &privp->listeners, sessions) { in pppoe_find_svc()
539 LIST_FOREACH(tsp, &privp->sesshash[hash].head, sessions) { in pppoe_getnewsession()
545 LIST_INSERT_HEAD(&privp->sesshash[hash].head, sp, sessions); in pppoe_getnewsession()
564 LIST_INSERT_HEAD(&privp->sesshash[hash].head, sp, sessions); in pppoe_addsession()
576 LIST_REMOVE(sp, sessions); in pppoe_delsession()
589 LIST_FOREACH(sp, &privp->sesshash[hash].head, sessions) { in pppoe_findsession()
1011 LIST_INSERT_HEAD(&privp->listeners, sp, sessions); in ng_pppoe_rcvmsg()
[all …]
H A Dng_l2tp.c113 LIST_ENTRY(ng_l2tp_hook_private) sessions;
436 LIST_INSERT_HEAD(&priv->sesshash[hash], hpriv, sessions); in ng_l2tp_newhook()
688 LIST_REMOVE(hpriv, sessions); in ng_l2tp_disconnect()
712 LIST_FOREACH(hpriv, &privp->sesshash[hash], sessions) { in ng_l2tp_find_session()
/f-stack/freebsd/contrib/device-tree/Bindings/misc/
H A Dqcom,fastrpc.txt48 Defination: A value indicating how many sessions can share this
/f-stack/dpdk/doc/guides/cryptodevs/
H A Darmv8.rst74 * Maximum number of sessions is 2048.
H A Dopenssl.rst95 * Maximum number of sessions is 2048.
H A Dnull.rst64 * max_nb_sessions: Specify the maximum number of sessions that can be created (2048 by default).
H A Dmvsam.rst92 - ``max_nb_sessions``: maximum number of sessions that can be created (default: 2048).
H A Dzuc.rst104 * max_nb_sessions: Specify the maximum number of sessions that can be created (2048 by default).
H A Dccp.rst99 * max_nb_sessions: Specify the maximum number of sessions that can be created (2048 by default).
H A Dsnow3g.rst104 * max_nb_sessions: Specify the maximum number of sessions that can be created (2048 by default).
H A Daesni_gcm.rst110 * max_nb_sessions: Specify the maximum number of sessions that can be created (2048 by default).
H A Daesni_mb.rst157 * max_nb_sessions: Specify the maximum number of sessions that can be created (2048 by default).
H A Dkasumi.rst105 * max_nb_sessions: Specify the maximum number of sessions that can be created (2048 by default).
H A Dscheduler.rst53 * max_nb_sessions: Specify the maximum number of sessions that can be
/f-stack/dpdk/doc/guides/prog_guide/
H A Drte_security.rst11 library defines generic APIs to create and free security sessions which can
532 Security sessions cache this immutable data in a optimal way for the underlying PMD
535 The Security framework provides APIs to create and free sessions for crypto/ethernet
536 devices, where sessions are mempool objects. It is the application's responsibility
H A Dcryptodev_lib.rst456 a flow. Crypto sessions cache this immutable data in a optimal way for the
463 and initialize sessions for crypto devices, where sessions are mempool objects.
988 across data sets. Crypto sessions cache this immutable data in a optimal way for the
992 asymmetric sessions for crypto devices, where sessions are mempool objects.
994 Application using both symmetric and asymmetric sessions should allocate and maintain
995 different sessions pools for each type.
/f-stack/dpdk/app/test/
H A Dtest_cryptodev.c10390 sessions = rte_malloc(NULL, in test_multi_session()
10403 TEST_ASSERT_NOT_NULL(sessions[i], in test_multi_session()
10409 sessions[i], in test_multi_session()
10441 TEST_ASSERT_NULL(sessions[i], in test_multi_session()
10446 sessions[i]); in test_multi_session()
10450 rte_free(sessions); in test_multi_session()
10514 sessions = rte_malloc(NULL, in test_multi_session_random_usage()
10532 sessions[i], in test_multi_session_random_usage()
10549 sessions[j], in test_multi_session_random_usage()
10579 sessions[i]); in test_multi_session_random_usage()
[all …]
/f-stack/dpdk/doc/guides/rel_notes/
H A Drelease_17_08.rst169 * Replaced ``private`` marker with array of pointers to private data sessions
178 * Added support for multi-device sessions, so a single session can be
H A Drelease_18_08.rst173 supports an unlimited number of sessions.
H A Drelease_20_02.rst229 For the configured sessions, hardware will do the lookup and perform
H A Drelease_17_05.rst485 to support drivers which may support a limited number of sessions per queue_pair.

12