Home
last modified time | relevance | path

Searched refs:size (Results 26 – 44 of 44) sorted by relevance

12

/lib/liblwip/src/core/
Dstats.c56 #define LWIP_MEMPOOL(name,num,size,desc) desc, in stats_init() argument
127 #define LWIP_MEMPOOL(name,num,size,desc) desc, in stats_display_memp() argument
/lib/liblwip/src/include/lwip/
Dsockets.h335 int lwip_send(int s, const void *dataptr, size_t size, int flags);
336 int lwip_sendto(int s, const void *dataptr, size_t size, int flags,
339 int lwip_write(int s, const void *dataptr, size_t size);
Dpbuf.h152 void pbuf_realloc(struct pbuf *p, u16_t size);
Dsys.h174 err_t sys_mbox_new(sys_mbox_t *mbox, int size);
Dtcp.h310 u16_t size,
/sys/include/
Dpci.h51 uint32_t size; member
/sys/amd64/include/
Dpmap.h75 void PMap_SystemLookup(uint64_t va, PageEntry **entry, int size);
/lib/liblwip/src/api/
Dapi_lib.c598 netconn_write_partly(struct netconn *conn, const void *dataptr, size_t size, in netconn_write_partly() argument
607 if (size == 0) { in netconn_write_partly()
622 msg.msg.msg.w.len = size; in netconn_write_partly()
647 *bytes_written = size; in netconn_write_partly()
Dsockets.c754 lwip_send(int s, const void *data, size_t size, int flags) in lwip_send() argument
762 s, data, size, flags)); in lwip_send()
771 return lwip_sendto(s, data, size, flags, NULL, 0); in lwip_send()
782 err = netconn_write_partly(sock->conn, data, size, write_flags, &written); in lwip_send()
790 lwip_sendto(int s, const void *data, size_t size, int flags, argument
809 return lwip_send(s, data, size, flags);
818 LWIP_ASSERT("lwip_sendto: size must fit in u16_t", size <= 0xffff);
819 short_size = (u16_t)size;
841 MEMCPY(p->payload, data, size);
1004 lwip_write(int s, const void *data, size_t size) argument
[all …]
Dapi_msg.c575 int size; local
588 size = DEFAULT_RAW_RECVMBOX_SIZE;
593 size = DEFAULT_RAW_RECVMBOX_SIZE;
598 size = DEFAULT_UDP_RECVMBOX_SIZE;
603 size = DEFAULT_TCP_RECVMBOX_SIZE;
615 if (sys_mbox_new(&conn->recvmbox, size) != ERR_OK) {
/lib/liblwip/doc/
Dsys_arch.txt97 - err_t sys_mbox_new(sys_mbox_t *mbox, int size)
99 Creates an empty mailbox for maximum "size" elements. Elements stored
102 and use a default size.
175 argument to the thread() function. The stack size to used for this thread is
Drawapi.txt72 code size and memory usage.
204 of the data exceeds the current send buffer size or if the length of
/sys/dev/
De1000.c460 if (dev.bars[bar].size == 0) in E1000_Configure()
464 bar, dev.bars[bar].base, dev.bars[bar].size, in E1000_Configure()
Dahci.c431 if (dev.bars[bar].size == 0) in AHCI_Configure()
435 bar, dev.bars[bar].base, dev.bars[bar].size, in AHCI_Configure()
/lib/liblwip/src/arch/
Dsys_arch.c156 sys_mbox_new(struct sys_mbox **mb, int size) in sys_mbox_new() argument
159 LWIP_UNUSED_ARG(size); in sys_mbox_new()
/sys/dev/x86/
Dide.c70 uint64_t size; // Size of Disk member
249 primaryDrives[drive].size = ident.lbaSectors; in IDE_Identify()
/
DSConstruct25 ("BOOTDISK_SIZE", "Boot disk size", "128")
/lib/liblwip/
DCHANGELOG282 always EMSGSIZE on non-blocking sockets if data size > send buffers) -> now
1137 ECHO pbuf for size (just use it): LWIP_ICMP_ECHO_CHECK_INPUT_PBUF_LEN
1176 of the pool allocator (can save code size with MEM_LIBC_MALLOC if libc-malloc
1391 converted size argument of netconn_write to 'size_t'
1398 * dhcp.c: fixed bug #25345 (DHCPDECLINE is sent with "Maximum message size"
1537 modifications in the sys_mbox api: sys_mbox_new take a "size" parameters which
1721 IP_PCB. Add in the netconn's "pcb" union a "struct ip_pcb *ip;" (no size change).
1735 parameters have to be provided: a task name, and a task stack size. For this
1905 size)
1939 each pool element (increasing their size, of course), filling them with a
[all …]
/docs/
DDoxyfile464 # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
469 # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
470 # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
472 # the optimal cache size from a speed point of view.
1712 # Use this tag to change the font size of LaTeX formulas included as images in
1713 # the HTML documentation. When you change the font size after a successful
2193 # the XML output. Note that enabling this will significantly increase the size
2260 # size of the Perl module output will be much smaller and Perl will parse it
2511 # number of items for each type to make the size more manageable. Set this to 0
2692 # the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
[all …]

12