Home
last modified time | relevance | path

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

12

/f-stack/dpdk/drivers/net/octeontx2/
H A Dotx2_lookup.c257 uint16_t idx, errcode, errlev; in nix_create_rx_ol_flags_array() local
265 errcode = (idx & 0xff0) >> 4; in nix_create_rx_ol_flags_array()
276 if (errcode) { in nix_create_rx_ol_flags_array()
285 if (errcode == NPC_EC_OIP4_CSUM || in nix_create_rx_ol_flags_array()
286 errcode == NPC_EC_IP_FRAG_OFFSET_1) { in nix_create_rx_ol_flags_array()
294 if (errcode == NPC_EC_IIP4_CSUM) in nix_create_rx_ol_flags_array()
300 if (errcode == NIX_RX_PERRCODE_OL4_CHK || in nix_create_rx_ol_flags_array()
301 errcode == NIX_RX_PERRCODE_OL4_LEN || in nix_create_rx_ol_flags_array()
302 errcode == NIX_RX_PERRCODE_OL4_PORT) { in nix_create_rx_ol_flags_array()
307 errcode == NIX_RX_PERRCODE_IL4_LEN || in nix_create_rx_ol_flags_array()
[all …]
H A Dotx2_flow_parse.c820 int errcode = 0; in otx2_flow_parse_actions() local
902 errcode = EINVAL; in otx2_flow_parse_actions()
910 if (errcode) in otx2_flow_parse_actions()
950 errcode = ENOTSUP; in otx2_flow_parse_actions()
965 errcode = ENOTSUP; in otx2_flow_parse_actions()
973 errcode = ENOTSUP; in otx2_flow_parse_actions()
992 errcode = EINVAL; in otx2_flow_parse_actions()
1006 errcode = EINVAL; in otx2_flow_parse_actions()
1023 errcode = ENOTSUP; in otx2_flow_parse_actions()
1029 errcode = ENOTSUP; in otx2_flow_parse_actions()
[all …]
H A Dotx2_flow.c768 int errcode = ENOTSUP; in otx2_flow_query() local
783 errcode = EIO; in otx2_flow_query()
793 errcode = EIO; in otx2_flow_query()
801 rte_flow_error_set(error, errcode, in otx2_flow_query()
/f-stack/app/redis-5.0.5/tests/
H A Dinstances.tcl201 set errcode [catch {
210 if {$errcode} {
218 set errcode [catch {
224 if {$errcode} {
368 if {$errcode == 1} {
370 } elseif {$errcode == 4} {
372 } elseif {$errcode == 3} {
374 } elseif {$errcode != 0} {
375 return -code $errcode $result
382 return -code $errcode $result
[all …]
/f-stack/app/redis-5.0.5/tests/support/
H A Dtest.tcl55 set errcode [catch {uplevel 1 [list expr $e]} result]
56 if {$errcode == 0} {
59 return -code $errcode $result
64 set errcode [catch [uplevel 1 $elsescript] result]
65 return -code $errcode $result
/f-stack/dpdk/drivers/event/octeontx/
H A Dssovf_worker.c410 uint16_t idx, errcode, errlev; in octeontx_create_rx_ol_flags_array() local
417 errcode = idx & 0xff; in octeontx_create_rx_ol_flags_array()
426 if (errcode) { in octeontx_create_rx_ol_flags_array()
435 if (errcode == OCCTX_EC_IP4_CSUM) { in octeontx_create_rx_ol_flags_array()
444 if (errcode == OCCTX_EC_IP4_NOT) in octeontx_create_rx_ol_flags_array()
447 if (errcode == OCCTX_EC_L4_CSUM) in octeontx_create_rx_ol_flags_array()
453 if (errcode == OCCTX_EC_IP4_CSUM) in octeontx_create_rx_ol_flags_array()
460 if (errcode == OCCTX_EC_IP4_NOT) in octeontx_create_rx_ol_flags_array()
463 if (errcode == OCCTX_EC_L4_CSUM) in octeontx_create_rx_ol_flags_array()
/f-stack/dpdk/drivers/net/hinic/base/
H A Dhinic_pmd_cmdq.c390 int errcode) in cmdq_update_errcode() argument
392 cmdq->errcode[prod_idx] = errcode; in cmdq_update_errcode()
497 cmdq->errcode = kzalloc(errcode_size, GFP_KERNEL); in init_cmdq()
498 if (!cmdq->errcode) { in init_cmdq()
523 kfree(cmdq->errcode); in init_cmdq()
533 kfree(cmdq->errcode); in free_cmdq()
721 int errcode; in hinic_cmdq_poll_msg() local
756 errcode = WQE_ERRCODE_GET(status_info, VAL); in hinic_cmdq_poll_msg()
757 cmdq_update_errcode(cmdq, ci, errcode); in hinic_cmdq_poll_msg()
835 if (cmdq->errcode[curr_prod_idx] > 1) { in cmdq_sync_cmd_direct_resp()
[all …]
H A Dhinic_pmd_cmdq.h194 int *errcode; member
/f-stack/freebsd/mips/nlm/
H A Dintr_machdep.c186 int errcode; in cpu_establish_hardintr() local
203 errcode = intr_event_create(&ie, src, 0, irq, in cpu_establish_hardintr()
209 errcode = intr_event_create(&ie, src, 0, irq, in cpu_establish_hardintr()
212 if (errcode) { in cpu_establish_hardintr()
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dldo.h51 LUAI_FUNC void luaD_throw (lua_State *L, int errcode);
54 LUAI_FUNC void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop);
H A Dldo.c51 void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop) { in luaD_seterrorobj() argument
52 switch (errcode) { in luaD_seterrorobj()
94 void luaD_throw (lua_State *L, int errcode) { in luaD_throw() argument
96 L->errorJmp->status = errcode; in luaD_throw()
100 L->status = cast_byte(errcode); in luaD_throw()
102 resetstack(L, errcode); in luaD_throw()
/f-stack/freebsd/amd64/include/
H A Dvmm.h397 uint32_t errcode, int restart_instruction);
666 uint32_t errcode; member
745 int errcode);
760 vm_inject_ac(void *vm, int vcpuid, int errcode) in vm_inject_ac() argument
762 vm_inject_fault(vm, vcpuid, IDT_AC, 1, errcode); in vm_inject_ac()
766 vm_inject_ss(void *vm, int vcpuid, int errcode) in vm_inject_ss() argument
768 vm_inject_fault(vm, vcpuid, IDT_SS, 1, errcode); in vm_inject_ss()
/f-stack/dpdk/drivers/common/octeontx2/hw/
H A Dotx2_npc.h293 uint8_t errcode; member
348 uint64_t errcode : 8; member
438 uint64_t errcode : 8; member
460 uint64_t errcode : 8; member
/f-stack/app/nginx-1.16.1/src/mail/
H A Dngx_mail_auth_http_module.c55 ngx_str_t errcode; member
663 ctx->errcode.len = ctx->header_end - ctx->header_start; in ngx_mail_auth_http_process_headers()
665 ctx->errcode.data = ngx_pnalloc(s->connection->pool, in ngx_mail_auth_http_process_headers()
666 ctx->errcode.len); in ngx_mail_auth_http_process_headers()
667 if (ctx->errcode.data == NULL) { in ngx_mail_auth_http_process_headers()
674 ngx_memcpy(ctx->errcode.data, ctx->header_start, in ngx_mail_auth_http_process_headers()
675 ctx->errcode.len); in ngx_mail_auth_http_process_headers()
698 if (ctx->errcode.len == 0) { in ngx_mail_auth_http_process_headers()
699 ctx->errcode = ngx_mail_smtp_errcode; in ngx_mail_auth_http_process_headers()
702 ctx->err.len = ctx->errcode.len + ctx->errmsg.len in ngx_mail_auth_http_process_headers()
[all …]
/f-stack/dpdk/lib/librte_eal/windows/include/
H A Dregex.h63 static inline size_t regerror(__rte_unused int errcode, in regerror() argument
/f-stack/freebsd/security/audit/
H A Daudit.c791 audit_proc_coredump(struct thread *td, char *path, int errcode) in audit_proc_coredump() argument
816 if (errcode != 0) in audit_proc_coredump()
841 if (errcode != 0) in audit_proc_coredump()
843 audit_commit(ar, errcode, ret); in audit_proc_coredump()
H A Daudit.h149 void audit_proc_coredump(struct thread *td, char *path, int errcode);
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dldo.h43 LUAI_FUNC l_noret luaD_throw (lua_State *L, int errcode);
H A Dldo.c153 static void seterrorobj (lua_State *L, int errcode, StkId oldtop) { in seterrorobj() argument
154 switch (errcode) { in seterrorobj()
172 l_noret luaD_throw (lua_State *L, int errcode) { in luaD_throw() argument
174 L->errorJmp->status = errcode; /* set status */ in luaD_throw()
178 L->status = cast_byte(errcode); /* mark it as dead */ in luaD_throw()
181 luaD_throw(G(L)->mainthread, errcode); /* re-throw in main thread */ in luaD_throw()
/f-stack/freebsd/i386/include/
H A Dcserial.h496 void (*receive_error) (chan_t *h, int errcode);
514 void (*transmit_error) (chan_t *h, int errcode);
/f-stack/freebsd/contrib/openzfs/contrib/pam_zfs_key/
H A Dpam_zfs_key.c70 static void destroy_pw(pam_handle_t *pamh, void *data, int errcode);
180 destroy_pw(pam_handle_t *pamh, void *data, int errcode) in destroy_pw() argument
/f-stack/freebsd/amd64/vmm/intel/
H A Dvmx.c2330 int error, errcode, errcode_valid, handled, in; in vmx_exit_process() local
2449 ts->errcode = vmcs_idt_vectoring_err(); in vmx_exit_process()
2458 ((uint64_t)ts->errcode << 32) | ts->errcode_valid); in vmx_exit_process()
2678 errcode_valid = errcode = 0; in vmx_exit_process()
2681 errcode = vmcs_read(VMCS_EXIT_INTR_ERRCODE); in vmx_exit_process()
2684 "the guest", intr_vec, errcode); in vmx_exit_process()
2686 vmx, vcpu, vmexit, intr_vec, errcode); in vmx_exit_process()
2688 errcode_valid, errcode, 0); in vmx_exit_process()
/f-stack/dpdk/drivers/common/sfc_efx/base/
H A Defx_mcdi.c791 __in int errcode) in efx_mcdi_ev_cpl() argument
823 if (errcode != 0) { in efx_mcdi_ev_cpl()
826 int, errcode); in efx_mcdi_ev_cpl()
829 emrp->emr_rc = efx_mcdi_request_errcode(errcode); in efx_mcdi_ev_cpl()
H A Defx_mcdi.h77 __in int errcode);
/f-stack/freebsd/amd64/vmm/
H A Dvmm.c2046 uint32_t errcode, int restart_instruction) in vm_inject_exception() argument
2099 vcpu->exc_errcode = errcode; in vm_inject_exception()
2107 int errcode) in vm_inject_fault()
2116 errcode, restart_instruction); in vm_inject_fault()

12