Searched refs:is (Results 1 – 15 of 15) sorted by relevance
| /docs/ |
| D | Doxyfile | 6 # All text after a double hash (##) is considered a comment and is placed in 7 # front of the TAG it is preceding. 9 # All text after a single hash (#) is considered a comment and will be ignored. 10 # The format is: 31 # file that follow. The default is UTF-8 which is also the encoding used for all 35 # The default value is: UTF-8. 39 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by 41 # project for which the documentation is generated. This name is used in the 43 # The default value is: My Project. 49 # control system is used. [all …]
|
| /lib/liblwip/doc/ |
| D | sys_arch.txt | 7 general idea is that porting lwIP to new architectures requires only 9 implementation. It is also possible to do a sys_arch implementation 14 sys_arch, but this is not required for the basic lwIP 16 implement timer scheduling as well but as of lwIP 0.5 this is 29 be more efficient. A message in a mailbox is just a pointer, nothing 32 Semaphores are represented by the type "sys_sem_t" which is typedef'd 50 Creates a new semaphore. The semaphore is allocated to the memory that 'sem' 52 The "count" argument specifies the initial state of the semaphore (which is 56 no real error handling is implemented. 69 signaled. If the "timeout" argument is non-zero, the thread should [all …]
|
| D | rawapi.txt | 12 to use the lwIP stack. It is quite similar to the BSD socket API. The 13 model of execution is based on the blocking open-read-write-close 14 paradigm. Since the TCP/IP stack is event based by nature, the TCP/IP 18 The socket API is a compatibility API for existing applications, 19 currently it is built on top of the sequential API. It is meant to 29 approach was chosen: there is one main thread running the lwIP core 35 other threads or an ISR is very limited! Only functions 49 Only since 1.3.0, if SYS_LIGHTWEIGHT_PROT is set to 1 50 and LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT is set to 1, 53 be called from an ISR: otherwise, the HEAP is only [all …]
|
| D | snmp_agent.txt | 5 This is a brief introduction how to use and configure the SNMP agent. 13 This is an old(er) standard but is still widely supported. 17 Note the S in SNMP stands for "Simple". Note that "Simple" is 18 relative. SNMP is simple compared to the complex ISO network 24 This is a required MIB, so this is always enabled. 25 When builing lwIP without TCP, the mib-2.tcp group is omitted. 31 tables is not possible. 45 There is no MIB compiler thus additional MIBs must be hand coded. 101 An alternative way to update the SNMP uptime timestamp is to do a call like 102 snmp_add_sysuptime(100) each 1000ms (which is bigger "step", but call to [all …]
|
| D | contrib.txt | 8 Here is a short list of suggestions to anybody working with lwIP and 10 First of all as you may already know lwIP is a volunteer project so feedback 17 2. indentation is two spaces per level (i.e. per tab). 40 3. If you have a fix put the patch on Savannah. If it is a patch that affects 43 is to NOT touch archs you can't test and let maintainers take care of them. 44 This is a good way to see if they are used at all - the same goes for unix 50 …can go to the lwip-users list. This is still the fastest way of interaction and the list is not so… 51 …as to allow for loss of fixes. Putting bugs on Savannah and subsequently closing them is too much … 54 …trivial fixes unless the bugfix is trivial too.Do not reorganize code and rename identifiers in th… 55 …change behaviour if not necessary.A patch is easier to read and understand if it's to the point an…
|
| D | savannah.txt | 15 To perform an anonymous CVS checkout of the main trunk (this is where 37 Under Windows, a recommended SSH client is "PuTTY", freely available with good 52 then you could login; Savannah refuses to give you a shell - which is OK, as we 69 Merging is a delicate process in CVS and requires the 74 has a tag indicating the previous merger. This tag is called 75 'merged_from_A_to_B'. After merging, the tag is moved in the 105 tagged tree. Export is similar to a checkout, except that the CVS metadata 106 is not created locally. 131 A new 0.6.3 release is now available here:
|
| /lib/liblwip/ |
| D | README | 3 lwIP is a small independent implementation of the TCP/IP protocol 8 The focus of the lwIP TCP/IP implementation is to reduce the RAM usage 33 lwIP is freely available under a BSD license. 41 Development of lwIP is hosted on Savannah, a central point for 47 The lwIP TCP/IP stack is maintained in the 'lwip' CVS module and 70 Self documentation of the source code is regularly extracted from the 71 current CVS sources and is available from this web page: 74 There is now a constantly growin wiki about lwIP at 84 documentation and browsing the mailing list archives is a good way to
|
| D | CHANGELOG | 117 * ppp.c: fixed pbuf leak when PPP session is aborted through pppSigHUP() 125 * msg_in.c, msg_out.c: fixed bug #35536 SNMP: error too big response is malformed 161 netif is brought down 186 * sockets.h: fixed bug #34580 fcntl() is missing in LWIP_COMPAT_SOCKETS 192 * tcp_in.c, tcp_out.c: fixed bug #34517 (persist timer is started although no 193 zero window is received) by starting the persist timer when a zero window is 198 * def.h, timers.c: fixed bug #34541: LWIP_U32_DIFF is unnecessarily complex 201 * sockets.c, api_lib.c: fixed bug #34540: compiler error when CORE_LOCKING is 224 * mem.h: fixed bug #34377 MEM_SIZE_F is not defined if MEM_LIBC_MALLOC==1 246 * udp.c: fixed bug #34072: UDP broadcast is received from wrong UDP pcb if [all …]
|
| D | UPGRADING | 13 * Replaced struct ip_addr by typedef ip_addr_t (struct ip_addr is kept for 69 space is used for later calls to tcp_write. 85 * Netdb uses a memp pool for allocating memory when getaddrinfo() is called, 120 off any more, if this is set to 0, only one packet (the most recent one) is 138 * Removed packing from ip_addr_t, the packed version is now only used in protocol headers
|
| D | COPYING | 27 * This file is part of the lwIP TCP/IP stack.
|
| /sys/dev/ |
| D | ahci.c | 36 uint32_t is; // Interrupt Status member 52 uint32_t is; // Interrupt Status member 228 kprintf("IS: 0x%08x\n", hc->is); in AHCI_Dump() 241 kprintf("IS: 0x%08x\n", p->is); in AHCI_DumpPort() 354 p->is = 0xFFFFFFFF; in AHCI_ResetPort() 355 p->is = 0x00000000; in AHCI_ResetPort()
|
| /lib/liblwip/src/core/ipv6/ |
| D | README | 1 IPv6 support in lwIP is very experimental.
|
| /sys/amd64/ |
| D | kernel.lds | 109 the constructors, so we make sure it is 110 first. Because this is a wildcard, it 116 is in. */ 164 FIXME: Why do we need it? When there is no .bss section, we don't
|
| / |
| D | LICENSE | 4 purpose with or without fee is hereby granted, provided that the above
|
| D | SConstruct | 145 print('Your C compiler and/or environment is incorrectly configured.') 149 print('Only Clang 15 is supported')
|