Home
last modified time | relevance | path

Searched refs:from (Results 1 – 19 of 19) sorted by relevance

/sys/kern/
Dlibc.c58 strcpy(char *to, const char *from) in strcpy() argument
62 for (; (*to = *from); ++from, ++to); in strcpy()
68 strncpy(char *to, const char *from, size_t length) in strncpy() argument
72 for (; (*to = *from) != '\0' && length > 0; ++from, ++to, length--); in strncpy()
/lib/libc/
Dstring.c24 strcpy(char *to, const char *from) in strcpy() argument
28 for (; (*to = *from); ++from, ++to); in strcpy()
34 strncpy(char *to, const char *from, size_t length) in strncpy() argument
38 for (; (*to = *from) != '\0' && length > 0; ++from, ++to, length--); in strncpy()
/include/
Dstring.h13 char *strcpy(char *to, const char *from);
16 char *strncpy(char *to, const char *from, size_t len);
/lib/liblwip/doc/
Dsavannah.txt5 1 - Obtaining lwIP from the CVS repository
7 3 - Merging from DEVEL branch to main trunk (stable branch)
12 1 Obtaining lwIP from the CVS repository
66 3 Merging from DEVEL branch to main trunk (stable)
73 Merging from branch A to branch B requires that the A branch
91 cvs commit -R -m "Merged from DEVEL to main."
Dsnmp_agent.txt98 snmp_inc_sysuptime(). You should call this from a timer interrupt
120 Note we don't have a "MIB compiler" that generates C source from a MIB,
164 Object identifiers from incoming requests are checked
177 turn use dynamically allocated index trees from RAM.
Drawapi.txt30 (also known as the "tcpip_thread"). The raw API may only be used from
34 As such, the list of functions that may be called from
36 from these API header files are thread-safe:
45 called from multiple threads (not ISR!) with NO_SYS=0
51 pbuf_free() may also be called from another thread or
53 be called from an ISR: otherwise, the HEAP is only
61 having callback functions being called from within the TCP/IP
81 C function that is called from within the TCP/IP code. Every callback
147 usually be called from the accept callback. This allows lwIP to perform
288 ATTENTION: When calling this from one of the TCP callbacks, make
[all …]
Dsys_arch.txt186 function should support recursive calls from the same task or interrupt. In
/lib/liblwip/
DCHANGELOG73 * tcpip.c/.h: patch #7449 allow tcpip callback from interrupt with static
246 * udp.c: fixed bug #34072: UDP broadcast is received from wrong UDP pcb if
278 merely prevents nagle from not transmitting fast after closing.)
288 at regular intervals from main level.
319 * tcp_impl.h, tcp_in.c, tcp_out.c: Removed 'dataptr' from 'struct tcp_seg' and
323 * dhcp.c/.h: Added a function to deallocate the struct dhcp from a netif
336 * many many files: bug #27352: removed packing from ip_addr_t, the packed
346 instead of the heap (moved struct pppoe_softc from ppp_oe.c to ppp_oe.h)
382 * etharp.c: Speedup TX by moving code from find_entry to etharp_output/
459 * timers.c/.h: Added function sys_restart_timeouts() from patch #7085
[all …]
DUPGRADING21 callback (aside from NULL/closed) after calling tcp_close()
23 * When calling tcp_abort() from a raw API TCP callback function,
50 * Separated timer implementation from sys.h/.c, moved to timers.h/.c;
129 * Merged pppd to v2.3.11 (including some backported bugfixes from 2.4.x)
138 * Removed packing from ip_addr_t, the packed version is now only used in protocol headers
DREADME53 Last night's CVS tar ball can be downloaded from:
70 Self documentation of the source code is regularly extracted from the
71 current CVS sources and is available from this web page:
DCOPYING14 * derived from this software without specific prior written permission.
/sys/amd64/
Dswitch.S22 # Switch stack from old to new thread
Dtrap.c137 extern int copy_unsafe(void *to, void *from, uintptr_t len);
141 extern int copystr_unsafe(void *to, void *from, uintptr_t len);
Dkernel.lds119 /* We don't want to include the .ctor section from
121 The .ctor section from the crtend file contains the
/lib/liblwip/src/netif/
DFILES26 The PPP stack has been ported from ucip (http://ucip.sourceforge.net).
Dethernetif.c138 send data from(q->payload, q->len);
/docs/
DDoxyfile136 # as the leading text of the brief description, will be stripped from the text
180 # If left blank the directory from which doxygen is run is used as the path to
184 # will be relative from the directory where doxygen is started.
253 # documentation from any documented member that it re-implements.
472 # the optimal cache size from a speed point of view.
764 # will remove the Files entry from the Quick Index and from the Folder Tree View
771 # page. This will remove the Namespaces entry from the Quick Index and from the
778 # doxygen should invoke to get the current version for each file (typically from
795 # Note that if you run doxygen from a directory containing a file called
882 # will be replaced by the file and line number from which the warning originated
[all …]
/lib/liblwip/src/include/lwip/
Dsockets.h334 struct sockaddr *from, socklen_t *fromlen);
/lib/liblwip/src/api/
Dsockets.c558 struct sockaddr *from, socklen_t *fromlen) in lwip_recvfrom() argument
668 if (from && fromlen) { in lwip_recvfrom()
689 MEMCPY(from, &sin, *fromlen); in lwip_recvfrom()