Searched refs:local_buf (Results 1 – 6 of 6) sorted by relevance
| /linux/fs/reiserfs/ |
| A D | dir.c | 72 char *local_buf; in reiserfs_readdir_inode() local 180 local_buf = small_buf; in reiserfs_readdir_inode() 182 local_buf = kmalloc(d_reclen, in reiserfs_readdir_inode() 184 if (!local_buf) { in reiserfs_readdir_inode() 190 kfree(local_buf); in reiserfs_readdir_inode() 202 memcpy(local_buf, d_name, d_reclen); in reiserfs_readdir_inode() 210 (ctx, local_buf, d_reclen, d_ino, in reiserfs_readdir_inode() 213 if (local_buf != small_buf) { in reiserfs_readdir_inode() 214 kfree(local_buf); in reiserfs_readdir_inode() 219 if (local_buf != small_buf) { in reiserfs_readdir_inode() [all …]
|
| /linux/drivers/s390/block/ |
| A D | dcssblk.c | 563 char *local_buf; in dcssblk_add_store() local 578 if (local_buf == NULL) { in dcssblk_add_store() 594 local_buf[j-i] = '\0'; in dcssblk_add_store() 630 strlcpy(local_buf, buf, i + 1); in dcssblk_add_store() 745 kfree(local_buf); in dcssblk_add_store() 759 char *local_buf; in dcssblk_remove_store() local 765 if (local_buf == NULL) { in dcssblk_remove_store() 774 local_buf[i] = '\0'; in dcssblk_remove_store() 785 local_buf); in dcssblk_remove_store() 792 local_buf); in dcssblk_remove_store() [all …]
|
| /linux/drivers/media/dvb-frontends/ |
| A D | mxl692.c | 216 __be32 *local_buf = NULL; in mxl692_validate_fw_header() local 227 local_buf = (__be32 *)(buffer + 8); in mxl692_validate_fw_header() 228 temp = be32_to_cpu(*local_buf); in mxl692_validate_fw_header() 265 plocal_buf = local_buf; in mxl692_write_fw_block() 312 plocal_buf = local_buf; in mxl692_memwrite() 324 if (mxl692_i2c_write(dev, local_buf, in mxl692_memwrite() 342 plocal_buf = local_buf; in mxl692_memread() 392 plocal_buf = local_buf; in mxl692_opwrite() 400 if (mxl692_i2c_write(dev, local_buf, in mxl692_opwrite() 419 local_buf[0] = 0xFD; in mxl692_opread() [all …]
|
| /linux/arch/s390/pci/ |
| A D | pci_mmio.c | 120 u8 local_buf[64]; in SYSCALL_DEFINE3() local 154 buf = local_buf; in SYSCALL_DEFINE3() 187 if (buf != local_buf) in SYSCALL_DEFINE3() 262 u8 local_buf[64]; in SYSCALL_DEFINE3() local 296 buf = local_buf; in SYSCALL_DEFINE3() 331 if (buf != local_buf) in SYSCALL_DEFINE3()
|
| /linux/drivers/usb/gadget/udc/ |
| A D | max3420_udc.c | 278 u8 local_buf[MAX3420_EP_MAX_PACKET + 1] = {}; in spi_rd_buf() local 284 local_buf[0] = MAX3420_SPI_CMD_RD(reg); in spi_rd_buf() 285 transfer.tx_buf = &local_buf[0]; in spi_rd_buf() 286 transfer.rx_buf = &local_buf[0]; in spi_rd_buf() 292 memcpy(buf, &local_buf[1], len); in spi_rd_buf() 300 u8 local_buf[MAX3420_EP_MAX_PACKET + 1] = {}; in spi_wr_buf() local 306 local_buf[0] = MAX3420_SPI_CMD_WR(reg); in spi_wr_buf() 307 memcpy(&local_buf[1], buf, len); in spi_wr_buf() 309 transfer.tx_buf = local_buf; in spi_wr_buf()
|
| /linux/drivers/spi/ |
| A D | spi.c | 4058 u8 *local_buf; in spi_write_then_read() local 4066 local_buf = kmalloc(max((unsigned)SPI_BUFSIZ, n_tx + n_rx), in spi_write_then_read() 4068 if (!local_buf) in spi_write_then_read() 4071 local_buf = buf; in spi_write_then_read() 4085 memcpy(local_buf, txbuf, n_tx); in spi_write_then_read() 4086 x[0].tx_buf = local_buf; in spi_write_then_read() 4087 x[1].rx_buf = local_buf + n_tx; in spi_write_then_read() 4097 kfree(local_buf); in spi_write_then_read()
|
Completed in 25 milliseconds