Home
last modified time | relevance | path

Searched refs:e (Results 1 – 14 of 14) sorted by relevance

/sys/kern/
Dbufcache.c67 BufCacheEntry *e = BufCacheEntry_Alloc(); in BufCache_Init() local
68 if (!e) { in BufCache_Init()
72 memset(e, 0, sizeof(*e)); in BufCache_Init()
73 e->disk = NULL; in BufCache_Init()
74 e->buffer = (void *)(bufBase + BLOCKSIZE * i); in BufCache_Init()
75 TAILQ_INSERT_TAIL(&lruList, e, lruEntry); in BufCache_Init()
100 BufCacheEntry *e; in BufCacheLookup() local
104 TAILQ_FOREACH(e, table, htEntry) { in BufCacheLookup()
105 if (e->disk == disk && e->diskOffset == diskOffset) { in BufCacheLookup()
106 e->refCount++; in BufCacheLookup()
[all …]
/lib/liblwip/src/include/lwip/
Dsockets.h353 #define setsockopt(a,b,c,d,e) lwip_setsockopt(a,b,c,d,e) argument
354 #define getsockopt(a,b,c,d,e) lwip_getsockopt(a,b,c,d,e) argument
357 #define recvfrom(a,b,c,d,e,f) lwip_recvfrom(a,b,c,d,e,f) argument
359 #define sendto(a,b,c,d,e,f) lwip_sendto(a,b,c,d,e,f) argument
361 #define select(a,b,c,d,e) lwip_select(a,b,c,d,e) argument
Derr.h63 #define ERR_IS_FATAL(e) ((e) < ERR_ISCONN) argument
Dapi.h197 #define API_EVENT(c,e,l) if (c->callback) { \ argument
198 (*c->callback)(c, e, l); \
/lib/liblwip/src/include/ipv6/lwip/
Dip_addr.h71 #define IP6_ADDR(ipaddr, a,b,c,d,e,f,g,h) do { (ipaddr)->addr[0] = htonl((u32_t)((a & 0xffff) << 16… argument
73 … (ipaddr)->addr[2] = htonl(((e & 0xffff) << 16) | (f & 0xffff)); \
/sys/fs/o2fs/
Do2fs.c431 int e; in O2FS_Lookup() local
441 for (e = 0; e < entryPerBlock; e++) { in O2FS_Lookup()
442 if (strcmp((char *)dir[e].magic, BDIR_MAGIC) == 0) { in O2FS_Lookup()
443 O2FSDumpDirEntry(&dir[e]); in O2FS_Lookup()
445 if (strcmp((char *)dir[e].name, name) == 0) { in O2FS_Lookup()
446 *fn = O2FSLoadVNode(vfs, &dir[e].objId); in O2FS_Lookup()
/lib/liblwip/doc/
Dsys_arch.txt78 (i.e., it was already signaled), the function may return zero.
129 parameter that is set by the function (i.e., by doing "*msg =
206 Not implementing this function means you cannot use some modules (e.g. TCP
Drawapi.txt21 on other platforms (e.g. unix / windows etc.). However, due to limitations
101 identifier (i.e., a protocol control block - PCB) is created with the
219 successfully been received (i.e., acknowledged) by the remote
251 When a connection is idle (i.e., no data is either transmitted or
368 and additional initializations for your runtime environment (e.g. timers).
Dcontrib.txt17 2. indentation is two spaces per level (i.e. per tab).
Dsnmp_agent.txt178 These trees are updated by e.g. the etharp code
/docs/
DDoxyfile233 # multi-line C++ special comment block (i.e. a block of //! or /// comments) as
374 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
377 # definitions whose arguments contain STL classes (e.g. func(std::string);
425 # type (e.g. under the Public Functions section). Set it to NO to prevent
433 # are shown inside the group in which they are included (e.g. using \ingroup)
445 # the documentation of the scope in which they are defined (i.e. file,
600 # filesystem is case sensitive (i.e. it supports files in the same directory
1116 # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
1214 # tools must be available from the command line (i.e. in the search path).
1280 # that doxygen needs, which is dependent on the configuration options used (e.g.
[all …]
/lib/liblwip/
DUPGRADING101 in cc.h, e.g. used by igmp)
DCHANGELOG715 "symbol already defined" i.e. when linking to winsock
1969 * mem.h: If MEM_LIBC_MALLOC==1, allow the defines (e.g. mem_malloc() -> malloc())
2307 assumption is made that this pbuf is in one piece (i.e. not chained). These
2479 (multithreading environments, e.g. netif->input() = tcpip_input()) or
2481 (single-thread / NO_SYS / polling environment where e.g.
2678 initialized before tcpip_thread is running (e.g. before OS is started)
/lib/liblwip/src/api/
Dsockets.c169 #define sock_set_errno(sk, e) do { \ argument
170 sk->err = (e); \