/linux-3.4.99/net/9p/ |
D | protocol.c | 102 int errcode = 0; in p9pdu_vreadf() local 109 errcode = -EFAULT; in p9pdu_vreadf() 118 errcode = -EFAULT; in p9pdu_vreadf() 128 errcode = -EFAULT; in p9pdu_vreadf() 138 errcode = -EFAULT; in p9pdu_vreadf() 148 errcode = p9pdu_readf(pdu, proto_version, in p9pdu_vreadf() 150 if (errcode) in p9pdu_vreadf() 155 errcode = -EFAULT; in p9pdu_vreadf() 159 errcode = -EFAULT; in p9pdu_vreadf() 170 errcode = p9pdu_readf(pdu, proto_version, "bdq", in p9pdu_vreadf() [all …]
|
/linux-3.4.99/drivers/isdn/pcbit/ |
D | capi.c | 496 int errcode; in capi_decode_conn_conf() local 501 errcode = *((ushort *) skb->data); /* read errcode */ in capi_decode_conn_conf() 525 return errcode; in capi_decode_conn_conf() 568 ushort errcode; in capi_decode_conn_actv_conf() local 570 errcode = *((ushort *)skb->data); in capi_decode_conn_actv_conf() 576 return errcode; in capi_decode_conn_actv_conf() 582 ushort errcode; in capi_decode_sel_proto_conf() local 587 errcode = *((ushort *)skb->data); in capi_decode_sel_proto_conf() 590 return errcode; in capi_decode_sel_proto_conf() 595 ushort errcode; in capi_decode_actv_trans_conf() local [all …]
|
/linux-3.4.99/drivers/isdn/capi/ |
D | capi.c | 118 u16 errcode; member 412 u16 errcode, datahandle; in handle_recv_skb() local 453 errcode = capi20_put_message(mp->ap, nskb); in handle_recv_skb() 455 if (errcode == CAPI_NOERROR) { in handle_recv_skb() 462 errcode); in handle_recv_skb() 465 if (errcode == CAPI_SENDQUEUEFULL) in handle_recv_skb() 497 u16 errcode; in handle_minor_send() local 545 errcode = capi20_put_message(mp->ap, skb); in handle_minor_send() 546 if (errcode == CAPI_NOERROR) { in handle_minor_send() 553 if (errcode == CAPI_SENDQUEUEFULL) { in handle_minor_send() [all …]
|
D | capidrv.c | 1851 u16 errcode; in if_sendbuf() local 1912 errcode = capi20_put_message(&global.ap, nskb); in if_sendbuf() 1913 if (errcode == CAPI_NOERROR) { in if_sendbuf() 1920 card->contrnr, errcode, capi_info2str(errcode)); in if_sendbuf() 1923 return errcode == CAPI_SENDQUEUEFULL ? 0 : -1; in if_sendbuf() 1926 errcode = capi20_put_message(&global.ap, skb); in if_sendbuf() 1927 if (errcode == CAPI_NOERROR) { in if_sendbuf() 1933 card->contrnr, errcode, capi_info2str(errcode)); in if_sendbuf() 1936 return errcode == CAPI_SENDQUEUEFULL ? 0 : -1; in if_sendbuf() 1967 u16 errcode; in enable_dchannel_trace() local [all …]
|
/linux-3.4.99/drivers/isdn/hisax/ |
D | hfc_usb.c | 457 int i, k, errcode; in start_isoc_chain() local 503 errcode = usb_submit_urb(fifo->iso[i].purb, GFP_KERNEL); in start_isoc_chain() 504 fifo->active = (errcode >= 0) ? 1 : 0; in start_isoc_chain() 505 if (errcode < 0) in start_isoc_chain() 507 i, errcode, symbolic(urb_errlist, errcode)); in start_isoc_chain() 548 errcode; in tx_iso_complete() local 565 errcode = urb->iso_frame_desc[k].status; in tx_iso_complete() 566 if (errcode) in tx_iso_complete() 569 k, errcode); in tx_iso_complete() 664 errcode = usb_submit_urb(urb, GFP_ATOMIC); in tx_iso_complete() [all …]
|
/linux-3.4.99/drivers/isdn/hardware/mISDN/ |
D | hfcsusb.c | 1007 int k, len, errcode, offset, num_isoc_packets, fifon, maxlen, in rx_iso_complete() local 1105 errcode = usb_submit_urb(urb, GFP_ATOMIC); in rx_iso_complete() 1106 if (errcode < 0) { in rx_iso_complete() 1110 hw->name, __func__, errcode); in rx_iso_complete() 1201 errcode, hdlc, i; in tx_iso_complete() local 1269 errcode = urb->iso_frame_desc[k].status; in tx_iso_complete() 1270 if (errcode) { in tx_iso_complete() 1273 hw->name, __func__, k, errcode); in tx_iso_complete() 1376 errcode = usb_submit_urb(urb, GFP_ATOMIC); in tx_iso_complete() 1377 if (errcode < 0) { in tx_iso_complete() [all …]
|
/linux-3.4.99/drivers/lguest/x86/ |
D | core.c | 367 if (cpu->regs->errcode == 0) { in lguest_arch_handle_trap() 384 cpu->regs->errcode)) in lguest_arch_handle_trap() 437 : cpu->regs->errcode); in lguest_arch_handle_trap()
|
/linux-3.4.99/drivers/dma/ |
D | imx-dma.c | 323 int errcode; in imxdma_err_handler() local 340 errcode = 0; in imxdma_err_handler() 344 errcode |= IMX_DMA_ERR_BURST; in imxdma_err_handler() 348 errcode |= IMX_DMA_ERR_REQUEST; in imxdma_err_handler() 352 errcode |= IMX_DMA_ERR_TRANSFER; in imxdma_err_handler() 356 errcode |= IMX_DMA_ERR_BUFFER; in imxdma_err_handler() 363 errcode & IMX_DMA_ERR_BURST ? " burst" : "", in imxdma_err_handler() 364 errcode & IMX_DMA_ERR_REQUEST ? " request" : "", in imxdma_err_handler() 365 errcode & IMX_DMA_ERR_TRANSFER ? " transfer" : "", in imxdma_err_handler() 366 errcode & IMX_DMA_ERR_BUFFER ? " buffer" : ""); in imxdma_err_handler()
|
/linux-3.4.99/arch/x86/kvm/ |
D | paging_tmpl.h | 155 u16 errcode = 0; in FNAME() local 211 errcode |= PFERR_RSVD_MASK | PFERR_PRESENT_MASK; in FNAME() 283 errcode |= PFERR_PRESENT_MASK; in FNAME() 310 errcode |= write_fault | user_fault; in FNAME() 313 errcode |= PFERR_FETCH_MASK; in FNAME() 317 walker->fault.error_code = errcode; in FNAME()
|
/linux-3.4.99/arch/x86/include/asm/ |
D | lguest.h | 47 unsigned long trapnum, errcode; member
|
/linux-3.4.99/include/linux/ |
D | capi.h | 116 __u16 errcode; member
|
D | isdnif.h | 412 ulong errcode; /* Type of error with STAT_L1ERR */ member
|
/linux-3.4.99/drivers/net/wireless/brcm80211/brcmfmac/ |
D | dhd_sdio.c | 1142 int errcode; in brcmf_sdbrcm_rxglom() local 1248 errcode = brcmf_sdcard_recv_chain(bus->sdiodev, in brcmf_sdbrcm_rxglom() 1252 errcode = brcmf_sdcard_recv_buf(bus->sdiodev, in brcmf_sdbrcm_rxglom() 1260 errcode = -1; in brcmf_sdbrcm_rxglom() 1266 errcode = -1; in brcmf_sdbrcm_rxglom() 1271 if (errcode < 0) { in brcmf_sdbrcm_rxglom() 1273 dlen, errcode); in brcmf_sdbrcm_rxglom() 1307 errcode = 0; in brcmf_sdbrcm_rxglom() 1311 errcode = -1; in brcmf_sdbrcm_rxglom() 1316 errcode = -1; in brcmf_sdbrcm_rxglom() [all …]
|
/linux-3.4.99/drivers/staging/comedi/drivers/ |
D | usbduxsigma.c | 687 int errcode = 0; in usbduxsub_start() local 692 errcode = usb_control_msg(usbduxsub->usbdev, in usbduxsub_start() 709 if (errcode < 0) { in usbduxsub_start() 712 return errcode; in usbduxsub_start() 719 int errcode = 0; in usbduxsub_stop() local 725 errcode = usb_control_msg(usbduxsub->usbdev, in usbduxsub_stop() 739 if (errcode < 0) { in usbduxsub_stop() 742 return errcode; in usbduxsub_stop() 751 int errcode; in usbduxsub_upload() local 753 errcode = usb_control_msg(usbduxsub->usbdev, in usbduxsub_upload() [all …]
|
D | usbdux.c | 734 int errcode = 0; in usbduxsub_start() local 739 errcode = usb_control_msg(usbduxsub->usbdev, in usbduxsub_start() 756 if (errcode < 0) { in usbduxsub_start() 759 return errcode; in usbduxsub_start() 766 int errcode = 0; in usbduxsub_stop() local 772 errcode = usb_control_msg(usbduxsub->usbdev, in usbduxsub_stop() 786 if (errcode < 0) { in usbduxsub_stop() 789 return errcode; in usbduxsub_stop() 798 int errcode; in usbduxsub_upload() local 800 errcode = usb_control_msg(usbduxsub->usbdev, in usbduxsub_upload() [all …]
|
/linux-3.4.99/arch/powerpc/kernel/ |
D | traps.c | 1191 int errcode; in SoftwareEmulation() local 1202 errcode = do_mathemu(regs); in SoftwareEmulation() 1203 if (errcode >= 0) in SoftwareEmulation() 1206 switch (errcode) { in SoftwareEmulation() 1225 errcode = Soft_emulate_8xx(regs); in SoftwareEmulation() 1226 if (errcode >= 0) in SoftwareEmulation() 1229 switch (errcode) { in SoftwareEmulation()
|
/linux-3.4.99/drivers/lguest/ |
D | page_tables.c | 312 bool demand_page(struct lg_cpu *cpu, unsigned long vaddr, int errcode) in demand_page() argument 425 if ((errcode & 2) && !(pte_flags(gpte) & _PAGE_RW)) in demand_page() 429 if ((errcode & 4) && !(pte_flags(gpte) & _PAGE_USER)) in demand_page() 440 if (errcode & 2) in demand_page()
|
D | lg.h | 200 bool demand_page(struct lg_cpu *cpu, unsigned long cr2, int errcode);
|
D | interrupts_and_traps.c | 131 push_guest_stack(cpu, &gstack, cpu->regs->errcode); in set_guest_interrupt()
|
/linux-3.4.99/drivers/scsi/ |
D | ips.c | 3338 int errcode; in ips_map_status() local 3362 errcode = DID_ERROR; in ips_map_status() 3367 errcode = DID_TIME_OUT; in ips_map_status() 3381 errcode = DID_NO_CONNECT; in ips_map_status() 3398 errcode = DID_OK; in ips_map_status() 3405 errcode = DID_TIME_OUT; in ips_map_status() 3410 errcode = DID_ERROR; in ips_map_status() 3417 errcode = DID_OK; in ips_map_status() 3423 errcode = DID_RESET; in ips_map_status() 3445 errcode = DID_OK; in ips_map_status() [all …]
|
/linux-3.4.99/arch/x86/kernel/ |
D | asm-offsets_32.c | 81 OFFSET(LGUEST_PAGES_regs_errcode, lguest_pages, regs.errcode); in foo()
|
/linux-3.4.99/drivers/mtd/ |
D | mtdswap.c | 785 int ret, errcode; in mtdswap_gc_eblock() local 787 errcode = 0; in mtdswap_gc_eblock() 799 if (ret < 0 && !errcode) in mtdswap_gc_eblock() 800 errcode = ret; in mtdswap_gc_eblock() 803 return errcode; in mtdswap_gc_eblock()
|
/linux-3.4.99/drivers/staging/rtl8192e/ |
D | rtllib_softmac.c | 2217 u16 errcode; in rtllib_rx_assoc_resp() local 2229 errcode = assoc_parse(ieee, skb, &aid); in rtllib_rx_assoc_resp() 2230 if (0 == errcode) { in rtllib_rx_assoc_resp() 2283 errcode); in rtllib_rx_assoc_resp() 2286 errcode); in rtllib_rx_assoc_resp() 2300 u16 errcode; in rtllib_rx_auth() local 2310 errcode = auth_parse(skb, &challenge, &chlen); in rtllib_rx_auth() 2311 if (0 == errcode) { in rtllib_rx_auth() 2357 " status code 0x%x", errcode); in rtllib_rx_auth() 2360 "status code 0x%x", errcode); in rtllib_rx_auth()
|
/linux-3.4.99/drivers/isdn/act2000/ |
D | capi.h | 164 __u32 errcode; member
|
/linux-3.4.99/drivers/edac/ |
D | sb_edac.c | 1420 u32 errcode = GET_BITFIELD(m->status, 0, 15); in sbridge_mce_output_error() local 1444 if (! ((errcode & 0xef80) == 0x80)) { in sbridge_mce_output_error() 1512 mscod, errcode, in sbridge_mce_output_error()
|