| /components/drivers/ipc/ |
| A D | ringblk_buf.c | 280 RT_ASSERT(block); in rt_rbb_blk_put() 318 block = RT_NULL; in rt_rbb_blk_get() 324 return block; in rt_rbb_blk_get() 337 RT_ASSERT(block); in rt_rbb_blk_size() 339 return block->size; in rt_rbb_blk_size() 352 RT_ASSERT(block); in rt_rbb_blk_buf() 354 return block->buf; in rt_rbb_blk_buf() 369 RT_ASSERT(block); in rt_rbb_blk_free() 458 last_block = block; in rt_rbb_blk_queue_get() 575 if (block->status != RT_RBB_BLK_PUT || last_block->buf > block->buf) in rt_rbb_next_blk_queue_len() [all …]
|
| /components/drivers/mtd/ |
| A D | mtd_nand.c | 134 return device->ops->erase_block(device, block); in rt_mtd_nand_erase_block() 141 return device->ops->check_block(device, block); in rt_mtd_nand_check_block() 153 return device->ops->mark_badblock(device, block); in rt_mtd_nand_mark_badblock() 198 int mtd_nand_read(const char *name, int block, int page) in mtd_nand_read() argument 223 page = block * nand->pages_per_block + page; in mtd_nand_read() 235 int mtd_nand_readoob(const char *name, int block, int page) in mtd_nand_readoob() argument 255 page = block * nand->pages_per_block + page; in mtd_nand_readoob() 264 int mtd_nand_write(const char *name, int block, int page) in mtd_nand_write() argument 299 page = block * nand->pages_per_block + page; in mtd_nand_write() 311 int mtd_nand_erase(const char *name, int block) in mtd_nand_erase() argument [all …]
|
| /components/drivers/include/drivers/ |
| A D | mtd_nand.h | 70 rt_err_t (*erase_block)(struct rt_mtd_nand_device *device, rt_uint32_t block); 71 rt_err_t (*check_block)(struct rt_mtd_nand_device *device, rt_uint32_t block); 72 rt_err_t (*mark_badblock)(struct rt_mtd_nand_device *device, rt_uint32_t block); 89 rt_err_t rt_mtd_nand_erase_block(struct rt_mtd_nand_device *device, rt_uint32_t block); 90 rt_err_t rt_mtd_nand_check_block(struct rt_mtd_nand_device *device, rt_uint32_t block); 91 rt_err_t rt_mtd_nand_mark_badblock(struct rt_mtd_nand_device *device, rt_uint32_t block);
|
| /components/drivers/include/ipc/ |
| A D | ringblk_buf.h | 96 void rt_rbb_blk_put(rt_rbb_blk_t block); 98 rt_size_t rt_rbb_blk_size(rt_rbb_blk_t block); 99 rt_uint8_t *rt_rbb_blk_buf(rt_rbb_blk_t block); 100 void rt_rbb_blk_free(rt_rbb_t rbb, rt_rbb_blk_t block);
|
| /components/mm/ |
| A D | Kconfig | 4 hex "Affinity block size in bytes for page management" 7 Page affinity block can be used to resolve the VIPT aliasing problem. 8 It should be set to `1ul << ((index + block) - page_offset)` in this case. 29 int "The max number of memory block regions in init time"
|
| /components/drivers/audio/ |
| A D | Kconfig | 7 int "Replay memory pool block size" 11 int "Replay memory pool block count"
|
| /components/net/lwip/lwip-2.1.2/src/include/lwip/ |
| A D | tcpip.h | 87 #define tcpip_callback_with_block(function, ctx, block) ((block != 0)? tcpip_callback(function, ctx… argument
|
| /components/legacy/usb/usbdevice/class/ |
| A D | mstorage.c | 73 rt_uint32_t block; member 478 data->block = cbw->cb[2]<<24 | cbw->cb[3]<<16 | cbw->cb[4]<<8 | in _read_10() 485 size = rt_device_read(data->disk, data->block, data->ep_in->buffer, 1); in _read_10() 518 data->block = cbw->cb[2]<<24 | cbw->cb[3]<<16 | cbw->cb[4]<<8 | in _write_10() 525 data->count, data->block, data->geometry.sector_count); in _write_10() 636 data->block++; in _ep_in_handler() 639 if(rt_device_read(data->disk, data->block, data->ep_in->buffer, 1) == 0) in _ep_in_handler() 879 size, data->block, data->size); in _ep_out_handler() 884 rt_device_write(data->disk, data->block, data->ep_out->buffer, 1); in _ep_out_handler() 892 data->block ++; in _ep_out_handler()
|
| /components/fal/docs/ |
| A D | fal_api_en.md | 107 ## Create block device 109 This function can create the corresponding block device according to the specified partition name, … 118 | return | If the creation is successful, the corresponding block device will be returned, and if i…
|
| /components/net/lwip/lwip-2.0.3/src/include/lwip/ |
| A D | tcpip.h | 80 err_t tcpip_callback_with_block(tcpip_callback_fn function, void *ctx, u8_t block);
|
| /components/drivers/ |
| A D | Kconfig | 29 rsource "block/Kconfig"
|
| /components/net/lwip/lwip-1.4.1/src/include/lwip/ |
| A D | tcpip.h | 101 err_t tcpip_callback_with_block(tcpip_callback_fn function, void *ctx, u8_t block);
|
| /components/net/lwip/lwip-1.4.1/src/api/ |
| A D | tcpip.c | 211 tcpip_callback_with_block(tcpip_callback_fn function, void *ctx, u8_t block) in tcpip_callback_with_block() argument 224 if (block) { in tcpip_callback_with_block()
|
| /components/net/lwip/lwip-2.0.3/src/api/ |
| A D | tcpip.c | 234 tcpip_callback_with_block(tcpip_callback_fn function, void *ctx, u8_t block) in tcpip_callback_with_block() argument 248 if (block) { in tcpip_callback_with_block()
|
| /components/net/lwip/lwip-2.0.3/doc/ |
| A D | ppp.txt | 59 /* The PPP control block */ 191 * ppp_pcb, PPP control block 371 * Free the PPP control block, can only be called if PPP session is in the 409 * ppp, PPP control block 480 using ppp_pcb* control block, therefore all functions changed from "int ppp"
|
| A D | rawapi.txt | 60 core thread but they are not reentrant at the control block 61 granularity level. That is, a UDP or TCP control block must 98 Raw API applications may never block since all packet processing 123 connection control block, and the "arg" argument is the argument 131 identifier (i.e., a protocol control block - PCB) is created with the 162 new smaller memory block for the listening connection.
|
| A D | contrib.txt | 21 6. one space and no newline before opening curly braces of a block.
|
| A D | sys_arch.txt | 148 Posts the "msg" to the mailbox. This function have to block until 159 not block the thread longer than "timeout" milliseconds (similar to
|
| /components/net/lwip/lwip-2.1.2/doc/ |
| A D | ppp.txt | 59 /* The PPP control block */ 191 * ppp_pcb, PPP control block 371 * Free the PPP control block, can only be called if PPP session is in the 409 * ppp, PPP control block 480 using ppp_pcb* control block, therefore all functions changed from "int ppp"
|
| A D | contrib.txt | 21 6. one space and no newline before opening curly braces of a block.
|
| /components/drivers/spi/sfud/ |
| A D | README.md | 135 > 注意:擦除操作将会按照 Flash 芯片的擦除粒度(详见 Flash 数据手册,一般为 block 大小。初始化完成后,可以通过 `sfud_flash->chip.erase_gran` 查看… 172 > 注意:擦除操作将会按照 Flash 芯片的擦除粒度(详见 Flash 数据手册,一般为 block 大小。初始化完成后,可以通过 `sfud_flash->chip.erase_gran` 查看…
|
| /components/net/lwip/lwip-1.4.1/doc/ |
| A D | contrib.txt | 21 6. one space and no newline before opening curly braces of a block.
|
| A D | sys_arch.txt | 115 Posts the "msg" to the mailbox. This function have to block until 126 not block the thread longer than "timeout" milliseconds (similar to
|
| A D | rawapi.txt | 93 connection control block, and the "arg" argument is the argument 101 identifier (i.e., a protocol control block - PCB) is created with the 132 new smaller memory block for the listening connection.
|
| /components/drivers/usb/cherryusb/ |
| A D | Kconfig.rtt | 252 string "usb device msc block device name"
|