/linux-2.6.39/drivers/scsi/ |
D | scsi_trace.c | 32 sector_t lba = 0, txlen = 0; in scsi_trace_rw6() local 37 txlen = cdb[4]; in scsi_trace_rw6() 40 (unsigned long long)lba, (unsigned long long)txlen); in scsi_trace_rw6() 50 sector_t lba = 0, txlen = 0; in scsi_trace_rw10() local 56 txlen |= (cdb[7] << 8); in scsi_trace_rw10() 57 txlen |= cdb[8]; in scsi_trace_rw10() 60 (unsigned long long)lba, (unsigned long long)txlen, in scsi_trace_rw10() 71 sector_t lba = 0, txlen = 0; in scsi_trace_rw12() local 77 txlen |= (cdb[6] << 24); in scsi_trace_rw12() 78 txlen |= (cdb[7] << 16); in scsi_trace_rw12() [all …]
|
/linux-2.6.39/drivers/staging/ath6kl/bmi/src/ |
D | bmi.c | 268 u32 remaining, txlen; in BMIWriteMemory() local 298 txlen = remaining; in BMIWriteMemory() 300 txlen = (BMI_DATASZ_MAX - header); in BMIWriteMemory() 307 memcpy(&(pBMICmdBuf[offset]), &txlen, sizeof(txlen)); in BMIWriteMemory() 308 offset += sizeof(txlen); in BMIWriteMemory() 309 memcpy(&(pBMICmdBuf[offset]), src, txlen); in BMIWriteMemory() 310 offset += txlen; in BMIWriteMemory() 316 remaining -= txlen; address += txlen; in BMIWriteMemory() 656 u32 remaining, txlen; in BMILZData() local 676 txlen = (remaining < (BMI_DATASZ_MAX - header)) ? in BMILZData() [all …]
|
/linux-2.6.39/drivers/media/dvb/dvb-usb/ |
D | dib0700_core.c | 47 static int dib0700_ctrl_wr(struct dvb_usb_device *d, u8 *tx, u8 txlen) in dib0700_ctrl_wr() argument 52 debug_dump(tx, txlen, deb_data); in dib0700_ctrl_wr() 55 tx[0], USB_TYPE_VENDOR | USB_DIR_OUT, 0, 0, tx, txlen, in dib0700_ctrl_wr() 58 if (status != txlen) in dib0700_ctrl_wr() 59 deb_data("ep 0 write error (status = %d, len: %d)\n",status,txlen); in dib0700_ctrl_wr() 65 int dib0700_ctrl_rd(struct dvb_usb_device *d, u8 *tx, u8 txlen, u8 *rx, u8 rxlen) in dib0700_ctrl_rd() argument 70 if (txlen < 2) { in dib0700_ctrl_rd() 74 if (txlen > 4) { in dib0700_ctrl_rd() 80 debug_dump(tx,txlen,deb_data); in dib0700_ctrl_rd() 82 value = ((txlen - 2) << 8) | tx[1]; in dib0700_ctrl_rd() [all …]
|
D | technisat-usb2.c | 88 u8 device_addr, u8 *tx, u8 txlen, u8 *rx, u8 rxlen) in technisat_usb2_i2c_access() argument 94 debug_dump(tx, txlen, deb_i2c); in technisat_usb2_i2c_access() 97 if (txlen > 62) { in technisat_usb2_i2c_access() 100 txlen = 62; in technisat_usb2_i2c_access() 105 txlen = 62; in technisat_usb2_i2c_access() 116 memcpy(&b[2], tx, txlen); in technisat_usb2_i2c_access() 119 b, 2 + txlen, in technisat_usb2_i2c_access()
|
D | dib0700.h | 57 extern int dib0700_ctrl_rd(struct dvb_usb_device *d, u8 *tx, u8 txlen, u8 *rx, u8 rxlen);
|
/linux-2.6.39/drivers/media/dvb/frontends/ |
D | dibx000_common.c | 63 u16 txlen = msg->len, len; in dibx000_master_i2c_write() local 66 while (txlen) { in dibx000_master_i2c_write() 69 len = txlen > 8 ? 8 : txlen; in dibx000_master_i2c_write() 85 if (txlen == msg->len) in dibx000_master_i2c_write() 88 if (txlen-len == 0 && stop) in dibx000_master_i2c_write() 95 txlen -= len; in dibx000_master_i2c_write()
|
D | dib9000.c | 190 …truct dib9000_state *state, u32 address, u16 attribute, const u8 * tx, u32 txlen, u8 * b, u32 len); 965 …struct dib9000_state *state, u32 address, u16 attribute, const u8 * tx, u32 txlen, u8 * b, u32 len) in dib9000_risc_apb_access_read() argument
|
/linux-2.6.39/drivers/bluetooth/ |
D | btmrvl_sdio.c | 303 int txlen = 0, tx_blocks = 0, count = 0; in btmrvl_sdio_download_fw_w_helper() local 384 txlen = len; in btmrvl_sdio_download_fw_w_helper() 395 "len = 0x%04X, txlen = %d", len, txlen); in btmrvl_sdio_download_fw_w_helper() 398 txlen = 0; in btmrvl_sdio_download_fw_w_helper() 403 if (firmwarelen - offset < txlen) in btmrvl_sdio_download_fw_w_helper() 404 txlen = firmwarelen - offset; in btmrvl_sdio_download_fw_w_helper() 407 (txlen + SDIO_BLOCK_SIZE - 1) / SDIO_BLOCK_SIZE; in btmrvl_sdio_download_fw_w_helper() 409 memcpy(fwbuf, &firmware[offset], txlen); in btmrvl_sdio_download_fw_w_helper() 424 offset += txlen; in btmrvl_sdio_download_fw_w_helper()
|
/linux-2.6.39/drivers/isdn/hardware/avm/ |
D | b1dma.c | 374 u32 txlen; in b1dma_dispatch_tx() local 396 txlen = (u8 *)p - (u8 *)dma->sendbuf.dmabuf; in b1dma_dispatch_tx() 398 printk(KERN_DEBUG "tx: put msg len=%d\n", txlen); in b1dma_dispatch_tx() 401 txlen = skb->len-2; in b1dma_dispatch_tx() 408 skb->data[2], txlen); in b1dma_dispatch_tx() 413 txlen = (txlen + 3) & ~3; in b1dma_dispatch_tx() 416 b1dma_writel(card, txlen, AMCC_TXLEN); in b1dma_dispatch_tx() 868 u32 txoff, txlen, rxoff, rxlen, csr; in b1dmactl_proc_show() local 926 txlen = b1dma_readl(card, AMCC_TXLEN); in b1dmactl_proc_show() 938 seq_printf(m, "%-16s %lu\n", "txlen", (unsigned long)txlen); in b1dmactl_proc_show()
|
D | c4.c | 416 u32 txlen; in c4_dispatch_tx() local 449 txlen = (u8 *)p - (u8 *)dma->sendbuf.dmabuf; in c4_dispatch_tx() 451 printk(KERN_DEBUG "%s: tx put msg len=%d\n", card->name, txlen); in c4_dispatch_tx() 454 txlen = skb->len-2; in c4_dispatch_tx() 461 card->name, skb->data[2], txlen); in c4_dispatch_tx() 466 txlen = (txlen + 3) & ~3; in c4_dispatch_tx() 469 c4outmeml(card->mbase+MBOX_DOWN_LEN, txlen); in c4_dispatch_tx()
|
/linux-2.6.39/include/linux/ |
D | mISDNdsp.h | 16 unsigned int txlen);
|
D | sdla.h | 310 short txlen; member
|
/linux-2.6.39/drivers/isdn/mISDN/ |
D | dsp_pipeline.c | 351 unsigned int txlen) in dsp_pipeline_process_rx() argument 360 entry->elem->process_rx(entry->p, data, len, txlen); in dsp_pipeline_process_rx()
|
D | dsp.h | 275 int len, unsigned int txlen);
|
/linux-2.6.39/drivers/s390/net/ |
D | ctcm_main.h | 124 unsigned long txlen; member
|
D | ctcm_sysfs.c | 100 priv->channel[WRITE]->prof.txlen); in ctcm_print_statistics()
|
D | netiucv.c | 204 unsigned long txlen; member 785 conn->prof.txlen += conn->tx_buff->len; in conn_action_txdone() 1218 conn->prof.txlen += skb->len; in netiucv_transmit_skb() 1686 return sprintf(buf, "%ld\n", priv->conn->prof.txlen); in txlen_show() 1695 priv->conn->prof.txlen = 0; in txlen_write()
|
D | ctcm_main.c | 507 ch->prof.txlen += skb->len; in ctcm_transmit_skb() 771 ch->prof.txlen += skb->len - PDU_HEADER_LENGTH; in ctcmpc_transmit_skb()
|
/linux-2.6.39/drivers/net/ |
D | tlan.c | 1021 unsigned int txlen; in tlan_start_tx() local 1032 txlen = max(skb->len, (unsigned int)TLAN_MIN_FRAME_SIZE); in tlan_start_tx() 1050 skb->data, txlen, in tlan_start_tx() 1054 tail_list->frame_size = (u16) txlen; in tlan_start_tx() 1055 tail_list->buffer[0].count = TLAN_LAST_BUFFER | (u32) txlen; in tlan_start_tx()
|