/freebsd/sys/dev/qat/qat_api/common/crypto/sym/include/ |
H A D | lac_sym_partial.h | 16 * <b>Partials In Flight</b>\n 22 * Maintain a SpinLock for partials in flight per session. Try and acquire this 24 * as there is already a partial in flight. There is no blocking in the data 27 * By preventing any other partials from coming in while a partial is in flight 34 * partial. By only allowing one partial packet to be in flight, there is no 41 * flight per session, therefore a partial packet request for ECB mode must 58 * PARTIAL. The SpinLock for partial packets in flight for the session can be 91 * flight and then if the partial state is correct 111 * longer a partial packet in flight for the session
|
/freebsd/crypto/openssl/util/perl/TLSProxy/ |
H A D | Record.pm | 61 my $flight = shift; 88 $flight, 167 my ($flight, 178 flight => $flight, 232 #A TLS1.3 client, when processing the server's initial flight, could 280 if ($self->{sent} || ($self->flight & 1) != $server) { 303 sub flight subroutine 306 return $self->{flight}; 394 if (($self->{flight} & 1) == $server
|
H A D | Proxy.pm | 105 flight => -1, 151 $self->{flight} = -1; 482 $self->{flight} = $self->{flight} + 1; 487 print "Processing flight ".$self->flight."\n"; 491 my @ret = TLSProxy::Record->get_records($server, $self->flight, 543 sub flight subroutine 546 return $self->{flight};
|
/freebsd/crypto/openssl/test/recipes/ |
H A D | 70-test_sslextension.t | 57 if ($proxy->flight == 1) { 67 if ($proxy->flight != 0) { 106 if ($proxy->flight == 0) { 120 if ($proxy->flight == 0) { 122 } elsif ($proxy->flight == 1) { 137 if ($proxy->flight == 0) { 143 if ($proxy->flight != 1) { 183 if ($proxy->flight != 0) {
|
H A D | 70-test_tls13psk.t | 118 my $flight; 122 $flight = 0; 124 $flight = 2; 128 return if $proxy->flight != $flight; 154 return if $proxy->flight != 0;
|
H A D | 70-test_sslsignature.t | 116 my $flight; 122 $flight = 1; 124 $flight = 2; 127 # We're only interested in the initial server flight 128 return if ($proxy->flight != $flight);
|
H A D | 70-test_tls13hrr.t | 108 if ($proxy->flight != 1) { 125 if ($proxy->flight == 4) { 130 if ($proxy->flight != 3) { 136 for ($i = 0; ${$proxy->record_list}[$i]->flight() < 1; $i++) { 155 if ($proxy->flight != 0) {
|
H A D | 70-test_sslrecords.t | 260 if ($proxy->flight != 0) { 288 if ($proxy->flight != 0) { 344 if ($proxy->flight != 0) { 491 if ($proxy->flight == 0) { 494 } elsif ($proxy->flight != 1 || $added_record) { 513 for ($i = 0; ${$proxy->record_list}[$i]->flight() < 1; $i++) { 528 if ($proxy->flight != 1) { 545 if ($proxy->flight != 1) { 567 #Find server's first flight 568 if ($proxy->flight != 1) {
|
H A D | 70-test_tls13cookie.t | 78 return if ($proxy->flight > 2); 88 && ${$message->records}[0]->flight == 1) { 94 if (${$message->records}[0]->flight == 0) {
|
H A D | 70-test_sslskewith0p.t | 53 # We're only interested in the SKE - always in flight 1 54 if ($proxy->flight != 1) {
|
H A D | 70-test_npn.t | 61 # The NextProto message always appears in flight 2 62 return if $proxy->flight != 2;
|
H A D | 70-test_comp.t | 88 my $flight; 93 return if $proxy->flight != 0;
|
H A D | 70-test_sslcbcpadding.t | 70 if ($proxy->flight == 0) { 115 $proxy->flight,
|
H A D | 70-test_sslsigalgs.t | 332 if ($proxy->flight != 0) { 366 return if ($proxy->flight != 0); 423 if ($proxy->flight != 0) { 459 if ($proxy->flight != 1) { 477 if ($proxy->flight != 0) {
|
H A D | 70-test_sslversions.t | 130 if ($proxy->flight == 1) { 142 if ($proxy->flight != 0) {
|
/freebsd/crypto/openssl/test/ |
H A D | dtlstest.c | 502 /* Send flight 1: ClientHello */ in test_swap_records() 506 /* Recv flight 1, send flight 2: ServerHello, Certificate, ServerHelloDone */ in test_swap_records() 510 /* Recv flight 2, send flight 3: ClientKeyExchange, CCS, Finished */ in test_swap_records() 522 /* Recv flight 3, send flight 4: datagram 0(NST, CCS) datagram 1(Finished) */ in test_swap_records() 526 /* Send flight 4 (cont'd): datagram 2(app data) */ in test_swap_records() 549 * Recv flight 4 (datagram 1): NST, CCS, + flight 5: app data in test_swap_records() 550 * + flight 4 (datagram 2): Finished in test_swap_records() 569 * Recv flight 5 (app data) in test_swap_records()
|
/freebsd/sys/dev/qat/qat_api/qat_kernel/src/ |
H A D | qat_transport.c | 296 Cpa64U flight; in icp_adf_getQueueMemory() local 301 flight = atomic_add_return(numberRequests, ring->inflights); in icp_adf_getQueueMemory() 302 if (flight > ADF_MAX_INFLIGHTS(ring->ring_size, ring->msg_size)) { in icp_adf_getQueueMemory() 322 Cpa64U flight; in icp_adf_getSingleQueueAddr() local 328 flight = atomic_add_return(1, ring->inflights); in icp_adf_getSingleQueueAddr() 329 if (flight > ADF_MAX_INFLIGHTS(ring->ring_size, ring->msg_size)) { in icp_adf_getSingleQueueAddr()
|
/freebsd/sys/netinet/ |
H A D | sctp_kdtrace.c | 71 "uint64_t", /* flight */ 79 "uint64_t", /* flight */ 149 /* flight probe - tracks changes in the flight size on a net or assoc */ 162 /* The total flight version */
|
H A D | sctp_kdtrace.h | 78 /* One to track a net's flight size */ 80 /* One to track an associations flight size */
|
/freebsd/sys/dev/qat/qat_api/include/ |
H A D | icp_sal_user.h | 671 * Retrieve number of in flight requests for a nrbg tx ring 693 * @param[out] maxInflightRequests Maximal number of in flight requests. 694 * @param[out] numInflightRequests Current number of in flight requests. 713 * Retrieve number of in flight requests for a symmetric tx ring 735 * @param[out] maxInflightRequests Maximal number of in flight requests. 736 * @param[out] numInflightRequests Current number of in flight requests. 755 * Retrieve number of in flight requests for an asymmetric tx ring 776 * @param[out] maxInflightRequests Maximal number of in flight requests. 777 * @param[out] numInflightRequests Current number of in flight requests. 796 * Retrieve number of in flight requests for a symmetric tx ring [all …]
|
/freebsd/sys/dev/mana/ |
H A D | hw_channel.h | 137 /* hwc_dma_buf represents the array of in-flight WQEs. 139 * in-flight WQEs. 140 * The number of WQEs is determined by the number of in-flight messages.
|
/freebsd/share/man/man4/ |
H A D | dtrace_sctp.4 | 73 probe tracks changes in the flight size on a net or assoc and the 75 probe provides the total flight version. 102 .Dv flight ,
|
/freebsd/contrib/llvm-project/llvm/lib/XRay/ |
H A D | FDRRecords.cpp | 1 //===- FDRRecords.cpp - XRay Flight Data Recorder Mode Records -----------===// 10 // of records we encounter in XRay flight data recorder mode traces.
|
/freebsd/sys/contrib/device-tree/Bindings/iio/light/ |
H A D | renesas,isl29501.txt | 1 * ISL29501 Time-of-flight sensor.
|
/freebsd/sys/dev/sfxge/ |
H A D | sfxge_tx.h | 84 * Buffer mapping information for descriptors in flight. 184 struct sfxge_tx_mapping *stmp; /* Packets in flight. */
|