Home
last modified time | relevance | path

Searched refs:in (Results 1 – 25 of 178) sorted by relevance

12345678

/components/net/lwip/lwip-1.4.1/src/netif/ppp/
A Dmd5.c136 u32_t in[16]; in MD5Update() local
157 mdContext->in[mdi++] = *inBuf++; in MD5Update()
162 in[i] = (((u32_t)mdContext->in[ii+3]) << 24) | in MD5Update()
167 Transform (mdContext->buf, in); in MD5Update()
179 u32_t in[16]; in MD5Final() local
185 in[14] = mdContext->i[0]; in MD5Final()
186 in[15] = mdContext->i[1]; in MD5Final()
197 in[i] = (((u32_t)mdContext->in[ii+3]) << 24) | in MD5Final()
200 ((u32_t)mdContext->in[ii]); in MD5Final()
202 Transform (mdContext->buf, in); in MD5Final()
[all …]
A Dchpms.c246 Expand(u_char *in, u_char *out) in Expand() argument
251 for(i = 0; i < 64; in++){ in Expand()
252 c = *in; in Expand()
263 Collapse(u_char *in, u_char *out) in Collapse() argument
271 for (j = 7; j >= 0; j--, in++) { in Collapse()
272 c |= *in << j; in Collapse()
/components/lwp/
A DSConscript24 if platform in platform_file.keys(): # support platforms
25 if arch in support_arch.keys() and cpu in support_arch[arch]:
31 src += [f for f in Glob(arch_common) if os.path.basename(str(f)) not in vdso_files]
32 src += [f for f in Glob(common) if os.path.basename(str(f)) not in vdso_files]
38 … src += [f for f in Glob('*.c') if os.path.basename(str(f)) not in excluded_files] + Glob(asm_path)
47 for item in termios_path:
/components/net/lwip/lwip-2.0.3/src/netif/ppp/
A DPPPD_FOLLOWUP28 in Debian but not in the latest (at the time when the port were started)
82 in our port.
112 Not in the port.
181 Radius plugin, not in the port.
254 Radius plugin, not in the port.
260 PPPoATM plugin, not in the port.
284 Radius plugin, not in the port.
332 Not in the port.
350 Radius plugin, not in the port.
376 Linux plugin, not in the port.
[all …]
/components/net/lwip/lwip-2.1.2/src/netif/ppp/
A DPPPD_FOLLOWUP28 in Debian but not in the latest (at the time when the port were started)
82 in our port.
112 Not in the port.
181 Radius plugin, not in the port.
254 Radius plugin, not in the port.
260 PPPoATM plugin, not in the port.
284 Radius plugin, not in the port.
332 Not in the port.
350 Radius plugin, not in the port.
376 Linux plugin, not in the port.
[all …]
/components/libc/compilers/common/
A DSConscript10 if rtconfig.PLATFORM in ['armcc', 'armclang']:
12 elif rtconfig.PLATFORM in ['iccarm']:
14 elif rtconfig.PLATFORM in ['gcc'] and rtconfig.CPU in ['posix']:
22 for item in list:
/components/libc/cplusplus/
A DREADME.md3 This is the C++ component in RT-Thread RTOS. In order to support C++ language, this component
6 Because RT-Thread RTOS is used in embedded system mostly, there are some rules for C++ applications:
16 please add following string in your ld link script:
18 // in your .text section
33 /* .ARM.exidx is sorted, so has to go in its own output section. */
39 /* This is used by the startup in order to initialize the .data secion */
46 // in your .data section
/components/libc/
A Dposix-info.txt1 ### The list of function support for POSIX 51 standard in the RT-Thread
188 % getc_unlocked() ; thread safe in the default
195 % putc_unlocked() ; thread safe in the default
197 % putchar_unlocked() ; thread safe in the default
236 % rand_r() ; thread safe in the default
262 % strerror_r() ; thread safe in the default
272 % strtok_r() ; thread safe in the default
309 - tzname ; you should better use 'tz_xxx' in the rt-thread.
310 - tzset() ; you should better use 'tz_xxx' in the rt-thread.
316 % fdatasync() ;smaller ranther than <fsync>, in the rt-thread, it is universal
/components/net/lwip/lwip-1.4.1/
A DREADME.md1 Porting network interface device for RT-Thread in lwIP.
2 …ynchronize some network status and address information in lwIP, so it need to make some changes in
9 - sockets.c: custom 'select' function implementation in RT-Thread by the wait queue mode.
A DCHANGELOG226 in init.c
297 * mem.c: fixed bug #33544 "warning in mem.c in lwip 1.4.0 with NO_SYS=1"
396 in tcp_write.
1229 in netconn_alloc
1237 as in the RFCs.
1353 macros in tcp.h
1416 in tcp_parseopt
2774 * tcp_{in,out}.c, tcp_out.c: Removed 'even sndbuf' fix in TCP, which is
3081 * The address of new connections in the accept() function in the BSD
3200 in 0.4, has now been fixed. Binding to an address that is in use
[all …]
/components/dfs/dfs_v1/
A DSConscript19 if rtconfig.PLATFORM in GetGCCLikePLATFORM():
21 elif rtconfig.PLATFORM in ['armcc']:
26 # search in the file system implementation
29 for item in list:
/components/net/lwip/lwip-2.0.3/
A DCHANGELOG161 in window)
195 in arbitrary code that needs things to be done in TCPIP thread. Used to
1182 in init.c
1352 in tcp_write.
2185 in netconn_alloc
2193 as in the RFCs.
2309 macros in tcp.h
2372 in tcp_parseopt
4037 * The address of new connections in the accept() function in the BSD
4156 in 0.4, has now been fixed. Binding to an address that is in use
[all …]
A DREADME.md1 Porting network interface device for RT-Thread in lwIP.
9 …ynchronize some network status and address information in lwIP, so it need to make some changes in
16 - sockets.c: custom 'select' function implementation in RT-Thread by the wait queue mode.
/components/dfs/dfs_v2/filesystems/elmfat/
A D00history.txt59 Fixed an endian sensitive code in f_mkfs().
84 Fixed btr in f_read() can be mistruncated.
119 Fixed wrong cache control in f_lseek().
142 Changed .fname in the FILINFO structure on Unicode cfg.
161 Ignores duplicated directory separators in given path name.
243 Fixed errors in the case conversion teble of Unicode (cc*.c).
254 Fixed errors in the case conversion table of Unicode (cc*.c).
264 Fixed wrong memory read in create_name(). (appeared at R0.12)
343 Limited number of recursive calls in f_findnext().
353 Improved the compatibility in Unix style path name feature.
[all …]
/components/net/lwip/lwip-2.1.2/
A DCHANGELOG414 in window)
448 in arbitrary code that needs things to be done in TCPIP thread. Used to
1435 in init.c
1605 in tcp_write.
2438 in netconn_alloc
2446 as in the RFCs.
2562 macros in tcp.h
2625 in tcp_parseopt
4290 * The address of new connections in the accept() function in the BSD
4409 in 0.4, has now been fixed. Binding to an address that is in use
[all …]
/components/net/lwip/lwip-1.4.1/doc/
A Dsys_arch.txt13 lwIP functionality, multiple threads support can be implemented in the
17 implemented in a higher layer.
29 be more efficient. A message in a mailbox is just a pointer, nothing
33 in the sys_arch.h file. Mailboxes are equivalently represented by the
70 only be blocked for the specified time (measured in
100 in mailboxes are pointers. You have to define macros "_MBOX_SIZE"
101 in your lwipopts.h, or ignore this parameter in your implementation
109 Deallocates a mailbox. If there are messages still present in the
111 programming error in lwIP and the developer should be notified.
125 Blocks the thread until a message arrives in the mailbox, but does
[all …]
A Dsnmp_agent.txt17 Note the S in SNMP stands for "Simple". Note that "Simple" is
40 network interface in the netif_list.
44 MIBs can only be added in compile-time, not in run-time.
62 and add the source files in lwip/src/core/snmp
63 and some snmp headers in lwip/src/include/lwip to your makefile.
71 The following function calls must be made in your program to
105 This one is undefined by default in mib2.c. SNMP_GET_SYSUPTIME is called inside
134 tree must be kept in sorted ascending (lexicographical) order.
167 or inexisting names in the request.
171 The middle part is usually located in ROM (const)
[all …]
/components/dfs/dfs_v1/filesystems/elmfat/
A D00history.txt59 Fixed an endian sensitive code in f_mkfs().
84 Fixed btr in f_read() can be mistruncated.
119 Fixed wrong cache control in f_lseek().
142 Changed .fname in the FILINFO structure on Unicode cfg.
161 Ignores duplicated directory separators in given path name.
243 Fixed errors in the case conversion teble of Unicode (cc*.c).
251 Changed some members in FINFO structure and behavior of f_readdir().
254 Fixed errors in the case conversion table of Unicode (cc*.c).
264 Fixed wrong memory read in create_name(). (appeared at R0.12)
343 Limited number of recursive calls in f_findnext().
[all …]
/components/drivers/usb/cherryusb/
A DLICENSE35 "Work" shall mean the work of authorship, whether in Source or
37 copyright notice that is included in or attached to the work
38 (an example is provided in the Appendix below).
71 Work and such Derivative Works in Source or Object form.
90 Work or Derivative Works thereof in any medium, with or without
91 modifications, and in Source or Object form, provided that You
100 (c) You must retain, in the Source form of any Derivative Works
128 the conditions stated in this License.
144 agreed to in writing, Licensor provides the Work (and each
183 the brackets!) The text should be enclosed in the appropriate
[all …]
/components/net/lwip/lwip-2.0.3/doc/
A Dsys_arch.txt14 lwIP functionality, multiple threads support can be implemented in the
28 in a mailbox is just a pointer, nothing more.
31 in the sys_arch.h file. Mailboxes are equivalently represented by the
39 stack) or on the heap (allocated internally in the "*_new()" functions).
69 only be blocked for the specified time (measured in
133 in mailboxes are pointers. You have to define macros "_MBOX_SIZE"
134 in your lwipopts.h, or ignore this parameter in your implementation
142 Deallocates a mailbox. If there are messages still present in the
144 programming error in lwIP and the developer should be notified.
158 Blocks the thread until a message arrives in the mailbox, but does
[all …]
/components/drivers/ktime/
A DSConscript10 if rtconfig.ARCH in list:
17 if rtconfig.PLATFORM in ['gcc', 'armclang']:
19 elif rtconfig.PLATFORM in ['armcc']:
/components/net/lwip/lwip-2.1.2/doc/doxygen/
A Dlwip.Doxyfile113 # used to form the text in various listings. Each string in this list, if found
149 # before files name in the file list and in the header files. If set to NO the
317 # be prevented in individual cases by putting a % sign in front of the word or
459 # locally in source files will be included in the documentation. If set to NO,
467 # which are defined in the implementation section but not in the interface are
1171 # style sheet in the list overrules the setting of the previous ones in the
1663 # bitmaps for formulas in the HTML output, but not in the Makefile that is
1679 # trees in general.
1738 # style sheet in the list overrules the setting of the previous ones in the
1832 # trees in general.
[all …]
A Dlwip.Doxyfile.cmake.in113 # used to form the text in various listings. Each string in this list, if found
149 # before files name in the file list and in the header files. If set to NO the
317 # be prevented in individual cases by putting a % sign in front of the word or
459 # locally in source files will be included in the documentation. If set to NO,
467 # which are defined in the implementation section but not in the interface are
1171 # style sheet in the list overrules the setting of the previous ones in the
1663 # bitmaps for formulas in the HTML output, but not in the Makefile that is
1679 # trees in general.
1738 # style sheet in the list overrules the setting of the previous ones in the
1832 # trees in general.
[all …]
/components/net/lwip/lwip-2.0.3/doc/doxygen/
A Dlwip.Doxyfile113 # used to form the text in various listings. Each string in this list, if found
149 # before files name in the file list and in the header files. If set to NO the
308 # be prevented in individual cases by putting a % sign in front of the word or
450 # locally in source files will be included in the documentation. If set to NO,
458 # which are defined in the implementation section but not in the interface are
1160 # style sheet in the list overrules the setting of the previous ones in the
1652 # bitmaps for formulas in the HTML output, but not in the Makefile that is
1668 # trees in general.
1727 # style sheet in the list overrules the setting of the previous ones in the
1821 # trees in general.
[all …]
/components/mm/
A DKconfig4 hex "Affinity block size in bytes for page management"
8 It should be set to `1ul << ((index + block) - page_offset)` in this case.
26 Using memblock to record memory infomation in init time
29 int "The max number of memory block regions in init time"

Completed in 50 milliseconds

12345678