crypto/openssl/apps/lib/cmp_mock_srv.c
238
int req_type = OSSL_CMP_MSG_get_bodytype(req);
crypto/openssl/apps/lib/cmp_mock_srv.c
249
if (req_type == OSSL_CMP_IR
crypto/openssl/apps/lib/cmp_mock_srv.c
250
|| req_type == OSSL_CMP_CR
crypto/openssl/apps/lib/cmp_mock_srv.c
251
|| req_type == OSSL_CMP_P10CR
crypto/openssl/apps/lib/cmp_mock_srv.c
252
|| req_type == OSSL_CMP_KUR
crypto/openssl/apps/lib/cmp_mock_srv.c
254
|| req_type == OSSL_CMP_ERROR)
crypto/openssl/crypto/cmp/cmp_client.c
668
ossl_unused int req_type,
crypto/openssl/crypto/cmp/cmp_client.c
815
int req_type, const OSSL_CRMF_MSG *crm,
crypto/openssl/crypto/cmp/cmp_client.c
826
if ((req = ossl_cmp_certreq_new(ctx, req_type, crm)) == NULL)
crypto/openssl/crypto/cmp/cmp_client.c
834
int OSSL_CMP_try_certreq(OSSL_CMP_CTX *ctx, int req_type,
crypto/openssl/crypto/cmp/cmp_client.c
838
int is_p10 = req_type == OSSL_CMP_PKIBODY_P10CR;
crypto/openssl/crypto/cmp/cmp_client.c
840
int rep_type = is_p10 ? OSSL_CMP_PKIBODY_CP : req_type + 1;
crypto/openssl/crypto/cmp/cmp_client.c
849
if (!initial_certreq(ctx, req_type, crm, &rep, rep_type))
crypto/openssl/crypto/cmp/cmp_client.c
855
if (req_type < 0)
crypto/openssl/crypto/cmp/cmp_client.c
864
req_type, rep_type);
crypto/openssl/crypto/cmp/cmp_client.c
878
X509 *OSSL_CMP_exec_certreq(OSSL_CMP_CTX *ctx, int req_type,
crypto/openssl/crypto/cmp/cmp_client.c
882
int is_p10 = req_type == OSSL_CMP_PKIBODY_P10CR;
crypto/openssl/crypto/cmp/cmp_client.c
884
int rep_type = is_p10 ? OSSL_CMP_PKIBODY_CP : req_type + 1;
crypto/openssl/crypto/cmp/cmp_client.c
892
if (!initial_certreq(ctx, req_type, crm, &rep, rep_type))
crypto/openssl/crypto/cmp/cmp_client.c
898
if (cert_response(ctx, 1 /* sleep */, rid, &rep, NULL, req_type, rep_type)
crypto/openssl/crypto/cmp/cmp_server.c
589
int req_type, rsp_type;
crypto/openssl/crypto/cmp/cmp_server.c
601
req_type = OSSL_CMP_MSG_get_bodytype(req);
crypto/openssl/crypto/cmp/cmp_server.c
603
"received %s", ossl_cmp_bodytype_to_string(req_type));
crypto/openssl/crypto/cmp/cmp_server.c
616
if (srv_ctx->polling && req_type != OSSL_CMP_PKIBODY_POLLREQ
crypto/openssl/crypto/cmp/cmp_server.c
617
&& req_type != OSSL_CMP_PKIBODY_ERROR) {
crypto/openssl/crypto/cmp/cmp_server.c
622
switch (req_type) {
crypto/openssl/crypto/cmp/cmp_server.c
669
if (req_type == OSSL_CMP_PKIBODY_POLLREQ) {
crypto/openssl/include/openssl/cmp.h
704
X509 *OSSL_CMP_exec_certreq(OSSL_CMP_CTX *ctx, int req_type,
crypto/openssl/include/openssl/cmp.h
720
int OSSL_CMP_try_certreq(OSSL_CMP_CTX *ctx, int req_type,
crypto/openssl/test/cmp_client_test.c
107
fixture->req_type = -1;
crypto/openssl/test/cmp_client_test.c
151
X509 *res = OSSL_CMP_exec_certreq(ctx, fixture->req_type, NULL);
crypto/openssl/test/cmp_client_test.c
209
fixture->req_type = OSSL_CMP_PKIBODY_IR;
crypto/openssl/test/cmp_client_test.c
222
static int test_exec_REQ_ses_poll(int req_type, int check_after,
crypto/openssl/test/cmp_client_test.c
227
fixture->req_type = req_type;
crypto/openssl/test/cmp_client_test.c
234
if (req_type == OSSL_CMP_PKIBODY_IR) {
crypto/openssl/test/cmp_client_test.c
236
} else if (req_type == OSSL_CMP_PKIBODY_GENM) {
crypto/openssl/test/cmp_client_test.c
26
int req_type;
crypto/openssl/test/cmp_client_test.c
267
fixture->req_type = OSSL_CMP_PKIBODY_CR;
crypto/openssl/test/cmp_client_test.c
296
fixture->req_type = OSSL_CMP_PKIBODY_KUR;
crypto/openssl/test/cmp_client_test.c
374
fixture->req_type = OSSL_CMP_PKIBODY_P10CR;
sys/compat/linuxkpi/common/include/linux/ieee80211.h
770
uint16_t req_type;
sys/dev/bnxt/bnxt_en/bnxt_hwrm.c
141
uint16_t req_type)
sys/dev/bnxt/bnxt_en/bnxt_hwrm.c
145
req->req_type = htole16(req_type);
sys/dev/bnxt/bnxt_en/bnxt_hwrm.c
168
(req->req_type != HWRM_FUNC_RESET && req->req_type != HWRM_VER_GET))
sys/dev/bnxt/bnxt_en/bnxt_hwrm.c
189
short_input.req_type = req->req_type;
sys/dev/bnxt/bnxt_en/bnxt_hwrm.c
232
GET_HWRM_REQ_TYPE(req->req_type), softc->hwrm_cmd_timeo,
sys/dev/bnxt/bnxt_en/bnxt_hwrm.c
246
GET_HWRM_REQ_TYPE(req->req_type),
sys/dev/bnxt/bnxt_en/bnxt_hwrm.c
247
softc->hwrm_cmd_timeo, le16toh(req->req_type),
sys/dev/bnxt/bnxt_en/bnxt_hwrm.c
259
GET_HWRM_REQ_TYPE(req->req_type),
sys/dev/bnxt/bnxt_en/bnxt_hwrm.c
849
if (input->req_type == HWRM_NVM_INSTALL_UPDATE)
sys/dev/bnxt/bnxt_en/bnxt_hwrm.c
857
__FUNCTION__, GET_HWRM_REQ_TYPE(input->req_type), rc);
sys/dev/bnxt/bnxt_en/bnxt_mgmt.h
127
enum bnxt_mgmt_req_type req_type;
sys/dev/bnxt/bnxt_en/bnxt_sriov.c
488
u32 req_type = le16_to_cpu(encap_req->req_type);
sys/dev/bnxt/bnxt_en/bnxt_sriov.c
490
switch (req_type) {
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
100052
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
100117
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
100152
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
100232
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
100288
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
100350
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
100385
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
100444
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
100483
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
100535
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
100570
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
100633
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
100697
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
100785
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
100831
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
100896
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
100956
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
100990
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
101026
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
101043
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
101078
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
101163
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
101283
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
101328
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
101363
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
101419
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
101502
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
101551
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
101589
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
101670
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
101708
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
101798
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
101860
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
101906
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
101967
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
102020
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
102081
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
14637
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
14713
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
14738
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
14787
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
14817
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
14865
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
14892
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
14943
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
14968
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
15234
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
15305
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
15349
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
16325
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
16369
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
17158
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
18123
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
18233
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
18297
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
18394
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
18466
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
1853
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
18556
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
18598
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
18623
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
18664
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
18689
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
18952
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
18983
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
19025
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
19050
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
19161
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
19186
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
19233
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
19258
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
1930
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
19312
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
19380
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
19422
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
19535
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
19631
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
19680
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
19715
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
1993
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
20014
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
21065
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
21126
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
21161
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
215
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
22077
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
22113
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
22441
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
22478
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
22503
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
22539
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
22651
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
22816
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
22841
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
23000
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
23049
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
23090
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
23136
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
23255
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
23280
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
23316
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
23377
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
23413
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
23449
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
23487
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
23521
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
23606
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
23650
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
23712
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
23738
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
23974
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
24052
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
24172
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
24503
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
24608
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
24876
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
24943
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
24969
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
25004
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
25156
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
25191
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
25217
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
25252
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
253
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
25311
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
25356
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
25382
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
25461
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
25486
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
25522
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
25599
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
25719
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
25793
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
25915
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
25980
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
26018
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
26083
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
26121
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
26256
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
26401
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
26428
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
26464
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
26568
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
26611
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
26661
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
26760
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
26785
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
26830
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
26861
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
26946
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
26971
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
27018
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
27094
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
27145
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
27193
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
27276
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
27384
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
274
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
27556
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
27581
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
27616
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
27741
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
28508
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
28562
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
28600
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
29732
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
29770
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
29900
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
29944
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
29975
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
30379
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
30436
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
30474
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
30731
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
30769
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
31235
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
31290
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
32135
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
32200
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
32243
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
32291
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
32321
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
32377
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
32436
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
32494
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
32606
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
32667
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
32697
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
32747
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
32772
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
32810
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
32835
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
32929
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
32961
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
32999
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
33386
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
33452
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
33477
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
33541
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
33568
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
33622
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
33647
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
33699
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
33726
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
34095
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
34120
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
34158
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
34416
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
34454
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
34762
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
34887
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
34922
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
34971
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
35125
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
35251
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
35313
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
35417
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
35442
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
35480
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
35557
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
35610
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
35641
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
35684
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
35712
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
35776
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
35801
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
35856
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
35889
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
36009
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
36067
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
36105
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
36195
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
36247
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
36272
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
36310
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
36353
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
36391
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
36428
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
36470
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
36495
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
36533
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
36591
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
36654
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
37149
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
37198
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
37246
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
37325
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
37370
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
37412
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
37470
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
37545
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
37570
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
37631
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
37721
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
37866
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
37919
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
37961
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
38692
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
39481
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
39530
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
39572
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
39602
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
39652
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
39707
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
39777
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
39823
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
39865
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
39908
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
39950
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
40031
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
40154
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
40179
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
40221
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
40251
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
40293
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
40366
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
40489
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
40514
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
40621
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
40662
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
40697
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
40805
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
40840
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
40995
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
41166
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
41234
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
41269
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
41359
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
41463
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
41531
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
41566
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
41794
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
41829
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
41929
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
42069
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
42110
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
42145
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
42221
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
42329
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
42370
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
42405
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
42432
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
42477
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
42520
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
42555
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
42585
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
42630
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
42798
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
42843
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
42977
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
43037
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
43089
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
43176
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
43228
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
43266
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
43291
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
43573
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
43640
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
43686
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
43892
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
43929
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
44168
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
44439
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
44488
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
44526
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
44769
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
45002
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
45084
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
45130
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
45332
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
45491
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
45533
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
45571
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
45678
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
45713
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
45760
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
45798
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
45823
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
46277
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
46365
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
46445
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
46494
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
46553
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
46590
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
46720
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
46768
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
46813
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
46928
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
46963
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
47077
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
47124
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
47213
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
47338
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
47399
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
47455
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
47486
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
47524
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
47549
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
47990
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
48021
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
48151
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
48176
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
48214
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
48402
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
48768
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
48981
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
49021
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
49047
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
49184
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
49230
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
49381
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
49438
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
49490
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
49516
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
49571
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
49599
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
49825
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
50035
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
50072
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
50249
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
50333
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
50359
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
50436
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
50462
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
50539
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
50672
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
50757
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
50785
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
50823
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
50849
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
51201
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
51411
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
51448
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
51625
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
51724
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
51750
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
52067
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
52126
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
52163
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
52189
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
52268
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
52294
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
52329
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
52409
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
52587
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
52621
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
52678
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
52704
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
52885
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
52911
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
52968
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
53002
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
53067
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
53093
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
53150
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
53176
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
53443
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
53471
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
53509
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
53535
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
53786
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
53877
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
53919
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
54168
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
54229
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
54287
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
54397
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
54423
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
54541
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
54616
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
54661
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
54687
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
54820
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
54846
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
54894
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
54951
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
54999
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55042
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55077
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55117
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55159
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55185
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55222
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55248
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55291
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55337
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55472
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55556
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55635
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55692
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55740
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55842
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55887
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55917
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55962
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
55988
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56026
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56090
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56160
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56191
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56232
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56258
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56299
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56360
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56395
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56426
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56461
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56561
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56636
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56662
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56717
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56746
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56797
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56823
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56874
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
56975
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
57
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
57053
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
57079
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
57120
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
57165
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
57238
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
57264
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
57300
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
57462
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
57505
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
57540
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
57603
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
57631
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
57669
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
57695
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
57868
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58078
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58115
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58292
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58353
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58379
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58422
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58457
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58492
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58532
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58569
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58625
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58673
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58706
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58751
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58778
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58817
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58844
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58883
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
58951
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59011
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59065
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59131
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59165
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59223
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59250
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59316
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59374
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59437
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59471
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59542
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59577
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59651
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59678
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59744
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59773
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59831
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59864
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59924
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
59957
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60013
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60042
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60096
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60125
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60201
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60228
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60283
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60325
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60382
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60409
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60466
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60493
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60553
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60580
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60634
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60667
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60722
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60757
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60818
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60845
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60911
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60942
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
60990
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61017
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61065
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61096
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61168
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61195
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61263
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61302
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61337
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61406
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61487
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61522
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61605
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61633
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61672
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61700
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61748
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61778
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61826
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61862
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61908
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61944
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
61995
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
62031
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
62082
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
62118
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
62192
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
62230
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
62295
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
62322
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
62411
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
62443
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
62548
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
62580
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
62675
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
62702
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
62792
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
62821
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
62899
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
62926
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
62999
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63033
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63098
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63125
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63205
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63232
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63297
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63335
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63414
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63446
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63536
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63565
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63630
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63657
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63718
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63745
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63804
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63858
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63897
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63926
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
63987
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
64022
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
64100
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
64127
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
64195
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
64224
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
64312
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
64406
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
64508
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
64618
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
64714
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
64953
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
65062
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
65115
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
65153
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
65200
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
65245
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
65310
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
65355
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
65424
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
65462
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
65528
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
65566
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
65591
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
65643
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
65949
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
66005
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
66160
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
66195
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
66253
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
66302
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
66428
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
66477
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
66659
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
66765
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
66801
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
66860
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
66911
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
66972
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
66997
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
67032
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
67951
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
67999
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
68056
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
68143
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
68189
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
68275
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
68303
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
68350
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
68391
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
68440
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
68465
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
68500
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
68528
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
68563
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
68686
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
68729
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
68769
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
68842
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
68902
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69013
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69090
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69125
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69191
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69242
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69275
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69310
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69339
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69408
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69460
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69529
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69579
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69681
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69707
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69758
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69783
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69834
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69859
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69925
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69950
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
69997
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
70022
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
70057
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
70176
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
70211
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
70252
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
70287
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
70314
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
70357
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
70493
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
70561
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
70615
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
70659
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
70697
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
70819
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
70846
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
70904
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
70929
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71012
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71090
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71136
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71184
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71228
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71259
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71300
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71325
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71437
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71462
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71558
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71583
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71632
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71671
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71718
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71743
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71819
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71844
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71880
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
71989
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72042
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72067
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72109
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72184
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72249
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72331
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72417
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72475
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72527
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72563
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72623
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72670
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72737
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72771
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72851
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72876
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72923
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72950
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
72999
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73065
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73121
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73146
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73193
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73238
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73277
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73320
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73364
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73407
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73484
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73517
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73552
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73603
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73662
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73705
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73785
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73832
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73879
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
73928
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74000
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74033
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74176
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74247
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74282
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74307
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74350
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74375
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74448
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74481
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74516
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74553
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74600
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74694
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74752
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74797
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74845
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74892
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74946
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
74991
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
75031
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
75072
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
75107
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
75136
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
75262
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
75325
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
75392
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
75450
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
75515
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
75572
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
75610
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
75653
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
75699
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
75880
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
75943
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
75986
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
76039
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
76064
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
76147
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
76293
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
76328
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
76369
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
76452
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
76535
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
76623
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
76680
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
76746
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
76801
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
76865
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
76918
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
76963
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
76990
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
77029
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
77072
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
77116
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
77165
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
77216
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
828
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
93
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
98148
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
98183
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
98269
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
98319
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
98394
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
98429
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
98454
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
98595
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
98666
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
98707
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
98732
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
98768
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
98811
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
98897
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
98972
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99039
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99101
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99142
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99190
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99249
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99290
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99338
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99366
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99418
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99446
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99546
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99572
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99611
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99668
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99711
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99747
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99796
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99824
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99860
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99895
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99949
uint16_t req_type;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
99998
uint16_t req_type;
sys/dev/bnxt/bnxt_re/bnxt_re.h
956
hdr->req_type = cpu_to_le16(opcd);
sys/dev/hptiop/hptiop.c
615
u_int32_t req_type = _tag & 0xf;
sys/dev/hptiop/hptiop.c
622
switch (req_type) {
sys/dev/ocs_fc/sli4.c
6600
sli_els_request64_wqe(sli4_t *sli4, void *buf, size_t size, ocs_dma_t *sgl, uint8_t req_type,
sys/dev/ocs_fc/sli4.c
6651
switch (req_type) {
sys/dev/qat_c2xxx/qat_hw15.c
104
msg->req_type = type;
sys/dev/qat_c2xxx/qat_hw15reg.h
123
uint8_t req_type;
sys/dev/qlnx/qlnxe/ecore_sriov.c
2910
void *p_tlvs_list, u16 req_type)
sys/dev/qlnx/qlnxe/ecore_sriov.c
2922
if (p_tlv->type == req_type) {
sys/dev/qlnx/qlnxe/ecore_sriov.h
302
void *p_tlvs_list, u16 req_type);
sys/dev/qlnx/qlnxe/ecore_sriov.h
328
static OSAL_INLINE void *ecore_iov_search_list_tlvs(struct ecore_hwfn OSAL_UNUSED *p_hwfn, void OSAL_UNUSED *p_tlvs_list, u16 OSAL_UNUSED req_type) {return OSAL_NULL;}
sys/dev/qlnx/qlnxe/rdma_common.h
282
u8 req_type /* Type of WQE */;
sys/dev/qlnx/qlnxe/rdma_common.h
315
u8 req_type /* Type of WQE */;
sys/dev/qlnx/qlnxe/rdma_common.h
356
u8 req_type /* Type of WQE */;
sys/dev/qlnx/qlnxe/rdma_common.h
406
u8 req_type /* Type of WQE */;
sys/dev/qlnx/qlnxe/rdma_common.h
462
u8 req_type /* Type of WQE */;
sys/dev/qlnx/qlnxe/rdma_common.h
484
u8 req_type /* Type of WQE */;
sys/dev/qlnx/qlnxe/rdma_common.h
561
u8 req_type /* Type of WQE */;
sys/dev/qlnx/qlnxe/rdma_common.h
647
u8 req_type /* Type of WQE */;
sys/dev/qlnx/qlnxe/rdma_common.h
672
u8 req_type /* Type of WQE */;
sys/dev/qlnx/qlnxe/rdma_common.h
714
u8 req_type /* Type of WQE */;
sys/dev/qlnx/qlnxe/rdma_common.h
780
u8 req_type /* Type of WQE */;
sys/dev/qlnx/qlnxe/rdma_common.h
806
u8 req_type /* Type of WQE */;
sys/dev/qlnx/qlnxr/qlnxr_roce.h
172
u8 req_type;
sys/dev/qlnx/qlnxr/qlnxr_roce.h
201
u8 req_type;
sys/dev/qlnx/qlnxr/qlnxr_roce.h
239
u8 req_type;
sys/dev/qlnx/qlnxr/qlnxr_roce.h
287
u8 req_type;
sys/dev/qlnx/qlnxr/qlnxr_roce.h
340
u8 req_type;
sys/dev/qlnx/qlnxr/qlnxr_roce.h
361
u8 req_type;
sys/dev/qlnx/qlnxr/qlnxr_roce.h
410
u8 req_type;
sys/dev/qlnx/qlnxr/qlnxr_roce.h
462
u8 req_type;
sys/dev/qlnx/qlnxr/qlnxr_roce.h
484
u8 req_type;
sys/dev/qlnx/qlnxr/qlnxr_roce.h
512
u8 req_type;
sys/dev/qlnx/qlnxr/qlnxr_roce.h
562
u8 req_type;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4299
wqe->req_type = RDMA_SQ_REQ_TYPE_SEND_WITH_IMM;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4322
wqe->req_type = RDMA_SQ_REQ_TYPE_SEND;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4343
wqe->req_type = RDMA_SQ_REQ_TYPE_SEND_WITH_INVALIDATE;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4362
wqe->req_type = RDMA_SQ_REQ_TYPE_RDMA_WR_WITH_IMM;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4383
wqe->req_type = RDMA_SQ_REQ_TYPE_RDMA_WR;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4413
wqe->req_type = RDMA_SQ_REQ_TYPE_RDMA_RD;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4455
wqe->req_type = RDMA_SQ_REQ_TYPE_ATOMIC_ADD;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4459
wqe->req_type = RDMA_SQ_REQ_TYPE_ATOMIC_CMP_AND_SWAP;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4481
iwqe->req_type = RDMA_SQ_REQ_TYPE_LOCAL_INVALIDATE;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4492
wqe->req_type = RDMA_SQ_REQ_TYPE_FAST_MR;
sys/dev/smartpqi/smartpqi_init.c
67
admin_req.req_type.general_func.buf_size = pqi_cap_dma_buf.size;
sys/dev/smartpqi/smartpqi_init.c
68
admin_req.req_type.general_func.sg_desc.length = pqi_cap_dma_buf.size;
sys/dev/smartpqi/smartpqi_init.c
69
admin_req.req_type.general_func.sg_desc.addr = pqi_cap_dma_buf.dma_addr;
sys/dev/smartpqi/smartpqi_init.c
70
admin_req.req_type.general_func.sg_desc.type = SGL_DESCRIPTOR_CODE_DATA_BLOCK;
sys/dev/smartpqi/smartpqi_queue.c
493
admin_req.req_type.create_op_iq.qid = q_id;
sys/dev/smartpqi/smartpqi_queue.c
645
admin_req.req_type.change_op_iq_prop.qid = op_ib_q->q_id;
sys/dev/smartpqi/smartpqi_queue.c
646
admin_req.req_type.change_op_iq_prop.vend_specific = prop;
sys/dev/smartpqi/smartpqi_queue.c
671
admin_req.req_type.create_op_oq.qid = op_ob_q->q_id;
sys/dev/smartpqi/smartpqi_queue.c
672
admin_req.req_type.create_op_oq.intr_msg_num = op_ob_q->intr_msg_num;
sys/dev/smartpqi/smartpqi_queue.c
673
admin_req.req_type.create_op_oq.elem_arr_addr = op_ob_q->array_dma_addr;
sys/dev/smartpqi/smartpqi_queue.c
674
admin_req.req_type.create_op_oq.ob_pi_addr = op_ob_q->pi_dma_addr;
sys/dev/smartpqi/smartpqi_queue.c
675
admin_req.req_type.create_op_oq.num_elem = op_ob_q->num_elem;
sys/dev/smartpqi/smartpqi_queue.c
676
admin_req.req_type.create_op_oq.elem_len = op_ob_q->elem_size / 16;
sys/dev/smartpqi/smartpqi_queue.c
678
DBG_INFO("admin_req.req_type.create_op_oq.qid : %x\n",admin_req.req_type.create_op_oq.qid);
sys/dev/smartpqi/smartpqi_queue.c
679
DBG_INFO("admin_req.req_type.create_op_oq.intr_msg_num : %x\n", admin_req.req_type.create_op_oq.intr_msg_num );
sys/dev/smartpqi/smartpqi_queue.c
716
admin_req.req_type.create_op_iq.qid = op_ib_q->q_id;
sys/dev/smartpqi/smartpqi_queue.c
717
admin_req.req_type.create_op_iq.elem_arr_addr = op_ib_q->array_dma_addr;
sys/dev/smartpqi/smartpqi_queue.c
718
admin_req.req_type.create_op_iq.iq_ci_addr = op_ib_q->ci_dma_addr;
sys/dev/smartpqi/smartpqi_queue.c
719
admin_req.req_type.create_op_iq.num_elem = op_ib_q->num_elem;
sys/dev/smartpqi/smartpqi_queue.c
720
admin_req.req_type.create_op_iq.elem_len = op_ib_q->elem_size / 16;
sys/dev/smartpqi/smartpqi_structures.h
331
} OS_ATTRIBUTE_PACKED req_type;
sys/dev/usb/serial/uplcom.c
605
uplcom_pl2303_do(struct usb_device *udev, uint8_t req_type, uint8_t request,
sys/dev/usb/serial/uplcom.c
612
req.bmRequestType = req_type;
sys/dev/xdma/xdma.h
105
enum xdma_request_type req_type;
sys/dev/xdma/xdma_bio.c
85
xr->req_type = XR_TYPE_BIO;
sys/dev/xdma/xdma_mbuf.c
90
xr->req_type = XR_TYPE_MBUF;
sys/dev/xdma/xdma_queue.c
90
xr->req_type = XR_TYPE_VIRT;
sys/dev/xdma/xdma_sg.c
346
if (xr->req_type == XR_TYPE_MBUF &&
sys/dev/xdma/xdma_sg.c
408
switch (xr->req_type) {
sys/dev/xdma/xdma_sg.c
498
switch (xr->req_type) {
sys/dev/xdma/xdma_sg.c
589
switch (xr->req_type) {
usr.sbin/bhyve/amd64/fwctl.c
275
uint32_t req_type;
usr.sbin/bhyve/amd64/fwctl.c
319
if (rinfo.req_type <= OP_MAX && ops[rinfo.req_type] != NULL)
usr.sbin/bhyve/amd64/fwctl.c
320
rinfo.req_op = ops[rinfo.req_type];
usr.sbin/bhyve/amd64/fwctl.c
377
rinfo.req_type = value;
usr.sbin/bhyve/amd64/fwctl.c
407
*retval = rinfo.req_type;
usr.sbin/bsnmpd/modules/snmp_wlan/wlan_sys.c
166
wlan_ioctl(char *wif_name, uint16_t req_type, int *val, void *arg,
usr.sbin/bsnmpd/modules/snmp_wlan/wlan_sys.c
174
ireq.i_type = req_type;
usr.sbin/bsnmpd/modules/snmp_wlan/wlan_sys.c
182
req_type, strerror(errno));
usr.sbin/lpr/common_source/lp.h
131
enum req_type type; /* what sort of request is this? */