Home
last modified time | relevance | path

Searched full:part (Results 1 – 25 of 973) sorted by relevance

12345678910>>...39

/nrf52832-nimble/rt-thread/components/drivers/sdio/
H A Dblock_dev.c35 struct dfs_partition part; member
247 struct dfs_partition *part = &blk_dev->part; in rt_mmcsd_read() local
255 rt_sem_take(part->lock, RT_WAITING_FOREVER); in rt_mmcsd_read()
259 err = rt_mmcsd_req_blk(blk_dev->card, part->offset + pos + offset, rd_ptr, req_size, 0); in rt_mmcsd_read()
266 rt_sem_release(part->lock); in rt_mmcsd_read()
288 struct dfs_partition *part = &blk_dev->part; in rt_mmcsd_write() local
296 rt_sem_take(part->lock, RT_WAITING_FOREVER); in rt_mmcsd_write()
300 err = rt_mmcsd_req_blk(blk_dev->card, part->offset + pos + offset, wr_ptr, req_size, 1); in rt_mmcsd_write()
307 rt_sem_release(part->lock); in rt_mmcsd_write()
401 status = dfs_filesystem_get_partition(&blk_dev->part, sector, i); in rt_mmcsd_blk_probe()
[all …]
/nrf52832-nimble/rt-thread/components/dfs/filesystems/nfs/rpc/
H A Drpc_msg.h13 * media and as a part of the software program in whole or part. Users
15 * to license or distribute it to anyone else except as part of a product or
23 * part of Sun Microsystems, Inc. to assist in its use, correction,
28 * OR ANY PART THEREOF.
87 * Reply part of an rpc exchange
180 * XDR routine to pre-serialize the static part of a rpc message.
196 * Fills in the error part of a reply message.
H A Drpc.h13 * media and as a part of the software program in whole or part. Users
15 * to license or distribute it to anyone else except as part of a product or
23 * part of Sun Microsystems, Inc. to assist in its use, correction,
28 * OR ANY PART THEREOF.
H A Drpc_prot.c13 * media and as a part of the software program in whole or part. Users
15 * to license or distribute it to anyone else except as part of a product or
23 * part of Sun Microsystems, Inc. to assist in its use, correction,
28 * OR ANY PART THEREOF.
51 * Because authentication stuff is easy and is part of rpc, the opaque
83 * XDR the MSG_ACCEPTED part of a reply message union
107 * XDR the MSG_DENIED part of a reply message union
150 * Serializes the "static part" of a call message header.
H A Dtypes.h12 * media and as a part of the software program in whole or part. Users
14 * to license or distribute it to anyone else except as part of a product or
22 * part of Sun Microsystems, Inc. to assist in its use, correction,
27 * OR ANY PART THEREOF.
H A Dclnt_generic.c13 * media and as a part of the software program in whole or part. Users
15 * to license or distribute it to anyone else except as part of a product or
23 * part of Sun Microsystems, Inc. to assist in its use, correction,
28 * OR ANY PART THEREOF.
H A Dauth_none.c13 * media and as a part of the software program in whole or part. Users
15 * to license or distribute it to anyone else except as part of a product or
23 * part of Sun Microsystems, Inc. to assist in its use, correction,
28 * OR ANY PART THEREOF.
H A Dxdr_mem.c13 * media and as a part of the software program in whole or part. Users
15 * to license or distribute it to anyone else except as part of a product or
23 * part of Sun Microsystems, Inc. to assist in its use, correction,
28 * OR ANY PART THEREOF.
H A Dclnt_udp.c13 * media and as a part of the software program in whole or part. Users
15 * to license or distribute it to anyone else except as part of a product or
23 * part of Sun Microsystems, Inc. to assist in its use, correction,
28 * OR ANY PART THEREOF.
H A Dclnt.h13 * media and as a part of the software program in whole or part. Users
15 * to license or distribute it to anyone else except as part of a product or
23 * part of Sun Microsystems, Inc. to assist in its use, correction,
28 * OR ANY PART THEREOF.
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/services/gap/
H A Dsyscfg.yml54 defined by Core specification 5.0, Vol 3, Part C, section 12.3.
59 defined by Core specification 5.0, Vol 3, Part C, section 12.3.
64 specification 5.0, Vol 3, Part C, section 12.3.
69 characteristic as defined by Core specification 5.0, Vol 3, Part C,
76 by Core specification 5.0, Vol 3, Part C, section 12.
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/doc/
H A Dsnmp_agent.txt137 An example for a private MIB is part of the "minimal Unix" project:
153 the middle part
156 and the index part
165 for a matching prefix, middle part and index part
171 The middle part is usually located in ROM (const)
176 The index part is handled by functions which in
/nrf52832-nimble/rt-thread/components/dfs/src/
H A Ddfs_fs.c150 * @param part the returned partition structure.
156 int dfs_filesystem_get_partition(struct dfs_partition *part, in dfs_filesystem_get_partition() argument
166 RT_ASSERT(part != NULL); in dfs_filesystem_get_partition()
182 part->type = type; in dfs_filesystem_get_partition()
183 part->offset = *(dpt+8) | *(dpt+9)<<8 | *(dpt+10)<<16 | *(dpt+11)<<24; in dfs_filesystem_get_partition()
184 part->size = *(dpt+12) | *(dpt+13)<<8 | *(dpt+14)<<16 | *(dpt+15)<<24; in dfs_filesystem_get_partition()
186 rt_kprintf("found part[%d], begin: %d, size: ", in dfs_filesystem_get_partition()
187 pindex, part->offset*512); in dfs_filesystem_get_partition()
188 if ((part->size>>11) == 0) in dfs_filesystem_get_partition()
189 rt_kprintf("%d%s",part->size>>1,"KB\n"); /* KB */ in dfs_filesystem_get_partition()
[all …]
/nrf52832-nimble/rt-thread/components/drivers/usb/usbhost/class/
H A Dudisk.c192 struct dfs_partition part[MAX_PARTITION_COUNT]; in rt_udisk_run() local
310 ret = dfs_filesystem_get_partition(&part[i], sector, i); in rt_udisk_run()
319 data->part.lock = rt_sem_create(sname, 1, RT_IPC_FLAG_FIFO); in rt_udisk_run()
340 RT_DEBUG_LOG(RT_DEBUG_USB, ("udisk part %d mount successfully\n", i)); in rt_udisk_run()
344 RT_DEBUG_LOG(RT_DEBUG_USB, ("udisk part %d mount failed\n", i)); in rt_udisk_run()
356 data->part.offset = 0; in rt_udisk_run()
357 data->part.size = 0; in rt_udisk_run()
359 data->part.lock = rt_sem_create("sem_ud", 1, RT_IPC_FLAG_FIFO); in rt_udisk_run()
430 rt_sem_delete(data->part.lock); in rt_udisk_stop()
/nrf52832-nimble/nordic/nrfx/drivers/include/
H A Dnrfx_i2s.h112 * part of the transfer. A call to @ref nrfx_i2s_next_buffers_set should
123 * with buffers for the next part of the transfer.
134 * part of the transfer).
136 * supply the buffers for the next part of the transfer
147 * received (RX) in the part of transfer that has just
196 * to be used in the initial part of the transfer
215 * @brief Function for supplying the buffers to be used in the next part of
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/
H A Dip6_frag.h33 * This file is part of the lwIP TCP/IP stack.
65 * just in case we do overwrite part of the IPv6 header, and 2) make a copy of
67 * completing reassembly or sending an ICMPv6 reply. The last part is true even
75 * presence of extensions, may not) overwrite part of the IP header. Therefore,
97 /* This buffer (for the part of the original header that we overwrite) will
/nrf52832-nimble/packages/NimBLE-latest/apps/blemesh_models_example_2/
H A DREADME.md40 * LED1 is associated with generic OnOff Server's state which is part of Root element
41 * LED2 is associated with Vendor Model which is part of Root element
44 * Button1 and Button2 are associated with gen. OnOff Client or Vendor Model which is part of Root e…
45 …ed with gen. Level Client / Light Lightness Client / Light CTL Client which is part of Root element
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/api/
H A Dnetbuf.c33 * This file is part of the lwIP TCP/IP stack.
209 * to the next part.
213 * @return -1 if there is no next part
214 * 1 if moved to the next part but now there is no next part
215 * 0 if moved to the next part and there are still more parts
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/api/
H A Dnetbuf.c39 * This file is part of the lwIP TCP/IP stack.
209 * to the next part.
213 * @return -1 if there is no next part
214 * 1 if moved to the next part but now there is no next part
215 * 0 if moved to the next part and there are still more parts
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/api/
H A Dnetbuf.c39 * This file is part of the lwIP TCP/IP stack.
213 * to the next part.
217 * @return -1 if there is no next part
218 * 1 if moved to the next part but now there is no next part
219 * 0 if moved to the next part and there are still more parts
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/core/
H A Dinet_chksum.c42 * This file is part of the lwIP TCP/IP stack.
302 * @param p chain of pbufs over that a checksum should be calculated (ip data part)
306 * @param proto_len length of the ip data part (used for checksum of pseudo header)
335 * @param p chain of pbufs over that a checksum should be calculated (ip data part)
371 * @param p chain of pbufs over that a checksum should be calculated (ip data part)
375 * @param proto_len length of the ip data part (used for checksum of pseudo header)
448 * @param p chain of pbufs over that a checksum should be calculated (ip data part)
452 * @param proto_len length of the ip data part (used for checksum of pseudo header)
482 * @param p chain of pbufs over that a checksum should be calculated (ip data part)
518 * @param p chain of pbufs over that a checksum should be calculated (ip data part)
[all …]
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/core/
H A Dinet_chksum.c42 * This file is part of the lwIP TCP/IP stack.
302 * @param p chain of pbufs over that a checksum should be calculated (ip data part)
306 * @param proto_len length of the ip data part (used for checksum of pseudo header)
335 * @param p chain of pbufs over that a checksum should be calculated (ip data part)
371 * @param p chain of pbufs over that a checksum should be calculated (ip data part)
375 * @param proto_len length of the ip data part (used for checksum of pseudo header)
448 * @param p chain of pbufs over that a checksum should be calculated (ip data part)
452 * @param proto_len length of the ip data part (used for checksum of pseudo header)
482 * @param p chain of pbufs over that a checksum should be calculated (ip data part)
518 * @param p chain of pbufs over that a checksum should be calculated (ip data part)
[all …]
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/cyg/compress/src/
H A Dinftrees.h7 part of the implementation of the compression library and is
20 the number of bits in this code or part of the code to drop off
26 unsigned char bits; /* bits in this part of the code */
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/include/ipv6/lwip/
H A Dip.h27 * This file is part of the lwIP TCP/IP stack.
67 /* This is the common part of all PCB types. It needs to be at the
69 changes to this common part are made in one location instead of
/nrf52832-nimble/rt-thread/components/net/uip/rt-thread/
H A DuIPmain.c32 * This file is part of the uIP TCP/IP stack.
55 // Copy the header portion part in TransmitPacket()
60 // Copy the data portion part in TransmitPacket()

12345678910>>...39