| /OK3568_Linux_fs/kernel/crypto/ |
| H A D | seqiv.c | 53 crypto_completion_t compl; in seqiv_aead_encrypt() local 64 compl = req->base.complete; in seqiv_aead_encrypt() 91 compl = seqiv_aead_encrypt_complete; in seqiv_aead_encrypt() 95 aead_request_set_callback(subreq, req->base.flags, compl, data); in seqiv_aead_encrypt() 114 crypto_completion_t compl; in seqiv_aead_decrypt() local 123 compl = req->base.complete; in seqiv_aead_decrypt() 126 aead_request_set_callback(subreq, req->base.flags, compl, data); in seqiv_aead_decrypt()
|
| H A D | echainiv.c | 90 crypto_completion_t compl; in echainiv_decrypt() local 99 compl = req->base.complete; in echainiv_decrypt() 102 aead_request_set_callback(subreq, req->base.flags, compl, data); in echainiv_decrypt()
|
| H A D | cryptd.c | 311 crypto_completion_t compl) in cryptd_skcipher_enqueue() argument 319 req->base.complete = compl; in cryptd_skcipher_enqueue() 463 crypto_completion_t compl) in cryptd_hash_enqueue() argument 471 req->base.complete = compl; in cryptd_hash_enqueue() 719 crypto_completion_t compl; in cryptd_aead_crypt() local 724 compl = rctx->complete; in cryptd_aead_crypt() 738 compl(&req->base, err); in cryptd_aead_crypt() 766 crypto_completion_t compl) in cryptd_aead_enqueue() argument 773 req->base.complete = compl; in cryptd_aead_enqueue()
|
| H A D | xts.c | 240 crypto_completion_t compl) in xts_init_crypt() argument 251 skcipher_request_set_callback(subreq, req->base.flags, compl, req); in xts_init_crypt()
|
| H A D | gcm.c | 203 crypto_completion_t compl, in gcm_hash_update() argument 210 ahash_request_set_callback(ahreq, flags, compl, req); in gcm_hash_update() 218 crypto_completion_t compl, u32 flags) in gcm_hash_remain() argument 220 return gcm_hash_update(req, compl, &gcm_zeroes->sg, remain, flags); in gcm_hash_remain()
|
| /OK3568_Linux_fs/kernel/drivers/soc/qcom/ |
| H A D | rpmh.c | 83 struct completion *compl = rpm_msg->completion; in rpmh_tx_done() local 92 if (!compl) in rpmh_tx_done() 96 complete(compl); in rpmh_tx_done() 267 DECLARE_COMPLETION_ONSTACK(compl); in rpmh_write() 268 DEFINE_RPMH_MSG_ONSTACK(dev, state, &compl, rpm_msg); in rpmh_write() 281 ret = wait_for_completion_timeout(&compl, RPMH_TIMEOUT_MS); in rpmh_write() 378 struct completion *compl = &compls[i]; in rpmh_write_batch() local 380 init_completion(compl); in rpmh_write_batch() 381 rpm_msgs[i].completion = compl; in rpmh_write_batch()
|
| /OK3568_Linux_fs/kernel/security/keys/ |
| H A D | dh.c | 73 struct dh_completion *compl = req->data; in dh_crypto_done() local 78 compl->err = err; in dh_crypto_done() 79 complete(&compl->completion); in dh_crypto_done() 238 struct dh_completion compl; in __keyctl_dh_compute() local 358 init_completion(&compl.completion); in __keyctl_dh_compute() 361 dh_crypto_done, &compl); in __keyctl_dh_compute() 369 wait_for_completion(&compl.completion); in __keyctl_dh_compute() 370 ret = compl.err; in __keyctl_dh_compute()
|
| /OK3568_Linux_fs/kernel/drivers/scsi/be2iscsi/ |
| H A D | be_cmds.c | 320 struct be_mcc_compl *compl) in beiscsi_process_mbox_compl() argument 332 if (!compl->flags) { in beiscsi_process_mbox_compl() 338 compl->flags = le32_to_cpu(compl->flags); in beiscsi_process_mbox_compl() 339 WARN_ON((compl->flags & CQE_FLAGS_VALID_MASK) == 0); in beiscsi_process_mbox_compl() 345 be_dws_le_to_cpu(compl, 4); in beiscsi_process_mbox_compl() 346 compl_status = (compl->status >> CQE_STATUS_COMPL_SHIFT) & in beiscsi_process_mbox_compl() 348 extd_status = (compl->status >> CQE_STATUS_EXTD_SHIFT) & in beiscsi_process_mbox_compl() 351 compl->flags = 0; in beiscsi_process_mbox_compl() 363 struct be_mcc_compl *compl) in beiscsi_process_async_link() argument 367 evt = (struct be_async_event_link_state *)compl; in beiscsi_process_async_link() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/emulex/benet/ |
| H A D | be_cmds.c | 139 static inline bool be_mcc_compl_is_new(struct be_mcc_compl *compl) in be_mcc_compl_is_new() argument 143 if (compl->flags != 0) { in be_mcc_compl_is_new() 144 flags = le32_to_cpu(compl->flags); in be_mcc_compl_is_new() 146 compl->flags = flags; in be_mcc_compl_is_new() 154 static inline void be_mcc_compl_use(struct be_mcc_compl *compl) in be_mcc_compl_use() argument 156 compl->flags = 0; in be_mcc_compl_use() 186 struct be_mcc_compl *compl, in be_async_cmd_process() argument 189 enum mcc_base_status base_status = base_status(compl->status); in be_async_cmd_process() 212 adapter->flash_status = compl->status; in be_async_cmd_process() 243 struct be_mcc_compl *compl) in be_mcc_compl_process() argument [all …]
|
| H A D | be_main.c | 2485 static void be_parse_rx_compl_v1(struct be_eth_rx_compl *compl, in be_parse_rx_compl_v1() argument 2488 rxcp->pkt_size = GET_RX_COMPL_V1_BITS(pktsize, compl); in be_parse_rx_compl_v1() 2489 rxcp->vlanf = GET_RX_COMPL_V1_BITS(vtp, compl); in be_parse_rx_compl_v1() 2490 rxcp->err = GET_RX_COMPL_V1_BITS(err, compl); in be_parse_rx_compl_v1() 2491 rxcp->tcpf = GET_RX_COMPL_V1_BITS(tcpf, compl); in be_parse_rx_compl_v1() 2492 rxcp->udpf = GET_RX_COMPL_V1_BITS(udpf, compl); in be_parse_rx_compl_v1() 2493 rxcp->ip_csum = GET_RX_COMPL_V1_BITS(ipcksm, compl); in be_parse_rx_compl_v1() 2494 rxcp->l4_csum = GET_RX_COMPL_V1_BITS(l4_cksm, compl); in be_parse_rx_compl_v1() 2495 rxcp->ipv6 = GET_RX_COMPL_V1_BITS(ip_version, compl); in be_parse_rx_compl_v1() 2496 rxcp->num_rcvd = GET_RX_COMPL_V1_BITS(numfrags, compl); in be_parse_rx_compl_v1() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/crypto/qat/qat_common/ |
| H A D | adf_aer.c | 37 struct completion compl; member 107 complete(&reset_data->compl); in adf_device_reset_worker() 126 init_completion(&reset_data->compl); in adf_dev_aer_schedule_reset() 137 &reset_data->compl, wait_jiffies); in adf_dev_aer_schedule_reset()
|
| /OK3568_Linux_fs/kernel/net/rxrpc/ |
| H A D | peer_event.c | 219 enum rxrpc_call_completion compl = RXRPC_CALL_NETWORK_ERROR; in rxrpc_store_error() local 270 compl = RXRPC_CALL_LOCAL_ERROR; in rxrpc_store_error() 282 rxrpc_distribute_error(peer, err, compl); in rxrpc_store_error() 289 enum rxrpc_call_completion compl) in rxrpc_distribute_error() argument 295 rxrpc_set_call_completion(call, compl, 0, -error); in rxrpc_distribute_error()
|
| H A D | recvmsg.c | 65 enum rxrpc_call_completion compl, in __rxrpc_set_call_completion() argument 72 call->completion = compl, in __rxrpc_set_call_completion() 83 enum rxrpc_call_completion compl, in rxrpc_set_call_completion() argument 91 ret = __rxrpc_set_call_completion(call, compl, abort_code, error); in rxrpc_set_call_completion()
|
| H A D | conn_event.c | 152 enum rxrpc_call_completion compl, in rxrpc_abort_calls() argument 167 if (compl == RXRPC_CALL_LOCALLY_ABORTED) in rxrpc_abort_calls() 176 rxrpc_set_call_completion(call, compl, in rxrpc_abort_calls()
|
| /OK3568_Linux_fs/kernel/drivers/scsi/snic/ |
| H A D | snic_stats.h | 30 atomic64_t compl; /* IO Completions */ member 127 atomic64_inc(&s_stats->io.compl); in snic_stats_update_io_cmpl()
|
| /OK3568_Linux_fs/kernel/drivers/video/fbdev/omap2/omapfb/dss/ |
| H A D | dispc-compat.c | 453 struct completion *compl = data; in dispc_mgr_disable_isr() local 454 complete(compl); in dispc_mgr_disable_isr() 503 struct completion *compl = data; in dispc_digit_out_enable_isr() local 507 complete(compl); in dispc_digit_out_enable_isr()
|
| /OK3568_Linux_fs/kernel/include/crypto/ |
| H A D | aead.h | 460 crypto_completion_t compl, in aead_request_set_callback() argument 463 req->base.complete = compl; in aead_request_set_callback()
|
| H A D | skcipher.h | 550 crypto_completion_t compl, in skcipher_request_set_callback() argument 553 req->base.complete = compl; in skcipher_request_set_callback()
|
| H A D | hash.h | 661 crypto_completion_t compl, in ahash_request_set_callback() argument 664 req->base.complete = compl; in ahash_request_set_callback()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/include/ |
| H A D | iso646.h | 36 #define compl ~ macro
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/include/ |
| H A D | iso646.h | 36 #define compl ~ macro
|
| /OK3568_Linux_fs/kernel/drivers/usb/misc/ |
| H A D | uss720.c | 60 struct completion compl; member 119 complete(&rq->compl); in async_complete() 142 init_completion(&rq->compl); in submit_async_request() 215 if (wait_for_completion_timeout(&rq->compl, HZ)) { in get_1284_register()
|
| /OK3568_Linux_fs/kernel/drivers/dma/idxd/ |
| H A D | dma.c | 65 u64 compl, u32 flags) in idxd_prep_desc_common() argument 75 hw->completion_addr = compl; in idxd_prep_desc_common()
|
| /OK3568_Linux_fs/kernel/drivers/scsi/bfa/ |
| H A D | bfa_core.c | 243 static void bfa_iocfc_stop_cb(void *bfa_arg, bfa_boolean_t compl); 244 static void bfa_iocfc_enable_cb(void *bfa_arg, bfa_boolean_t compl); 245 static void bfa_iocfc_disable_cb(void *bfa_arg, bfa_boolean_t compl); 1211 bfa_iocfc_stop_cb(void *bfa_arg, bfa_boolean_t compl) in bfa_iocfc_stop_cb() argument 1216 if (compl) in bfa_iocfc_stop_cb() 1221 bfa_iocfc_enable_cb(void *bfa_arg, bfa_boolean_t compl) in bfa_iocfc_enable_cb() argument 1226 if (compl) in bfa_iocfc_enable_cb() 1231 bfa_iocfc_disable_cb(void *bfa_arg, bfa_boolean_t compl) in bfa_iocfc_disable_cb() argument 1236 if (compl) in bfa_iocfc_disable_cb()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/omapdrm/ |
| H A D | omap_dmm_priv.h | 151 struct completion compl; member
|