| /lib/liblwip/src/core/ |
| D | timers.c | 269 struct sys_timeo *timeout, *t; in sys_timeout_debug() local 296 for(t = next_timeout; t != NULL; t = t->next) { in sys_timeout_debug() 297 timeout->time -= t->time; in sys_timeout_debug() 298 if (t->next == NULL || t->next->time > timeout->time) { in sys_timeout_debug() 299 if (t->next != NULL) { in sys_timeout_debug() 300 t->next->time -= timeout->time; in sys_timeout_debug() 302 timeout->next = t->next; in sys_timeout_debug() 303 t->next = timeout; in sys_timeout_debug() 323 struct sys_timeo *prev_t, *t; in sys_untimeout() local 329 for (t = next_timeout, prev_t = NULL; t != NULL; prev_t = t, t = t->next) { in sys_untimeout() [all …]
|
| D | memp.c | 185 struct memp *t, *h; in memp_sanity() local 188 t = memp_tab[i]; in memp_sanity() 189 if(t != NULL) { in memp_sanity() 190 for (h = t->next; (t != NULL) && (h != NULL); t = t->next, in memp_sanity() 192 if (t == h) { in memp_sanity()
|
| D | pbuf.c | 745 pbuf_cat(struct pbuf *h, struct pbuf *t) in pbuf_cat() argument 750 ((h != NULL) && (t != NULL)), return;); in pbuf_cat() 755 p->tot_len += t->tot_len; in pbuf_cat() 761 p->tot_len += t->tot_len; in pbuf_cat() 763 p->next = t; in pbuf_cat() 786 pbuf_chain(struct pbuf *h, struct pbuf *t) in pbuf_chain() argument 788 pbuf_cat(h, t); in pbuf_chain() 790 pbuf_ref(t); in pbuf_chain() 791 …LWIP_DEBUGF(PBUF_DEBUG | LWIP_DBG_TRACE, ("pbuf_chain: %p references %p\n", (void *)h, (void *)t)); in pbuf_chain()
|
| /sys/kern/ |
| D | thread.c | 231 Thread *t; in Thread_Lookup() local 235 TAILQ_FOREACH(t, &proc->threadList, threadList) { in Thread_Lookup() 236 if (t->tid == tid) { in Thread_Lookup() 237 Thread_Retain(t); in Thread_Lookup() 238 thr = t; in Thread_Lookup() 281 Thread *t; in Thread_Wait() local 287 t = TAILQ_FIRST(&thr->proc->zombieQueue); in Thread_Wait() 288 if (!t) { in Thread_Wait() 292 TAILQ_REMOVE(&thr->proc->zombieQueue, t, schedQueue); in Thread_Wait() 293 status = t->exitValue; in Thread_Wait() [all …]
|
| /lib/liblwip/src/include/lwip/ |
| D | api.h | 79 #define NETCONNTYPE_GROUP(t) (t&0xF0) argument 80 #define NETCONNTYPE_DATAGRAM(t) (t&0xE0) argument 212 #define netconn_new(t) netconn_new_with_proto_and_callback(t, 0, NULL) argument 213 #define netconn_new_with_callback(t, c) netconn_new_with_proto_and_callback(t, 0, c) argument 215 netconn *netconn_new_with_proto_and_callback(enum netconn_type t, u8_t proto,
|
| D | memp.h | 104 #define memp_malloc(t) memp_malloc_fn((t), __FILE__, __LINE__) argument
|
| D | sys.h | 52 #define sys_arch_sem_wait(s,t) argument 71 #define sys_thread_new(n,t,a,s,p) argument 73 #define sys_msleep(t) argument
|
| D | sockets.h | 246 #define _IOR(x,y,t) (IOC_OUT|(((long)sizeof(t)&IOCPARM_MASK)<<16)|((x)<<8)|(y)) argument 248 #define _IOW(x,y,t) (IOC_IN|(((long)sizeof(t)&IOCPARM_MASK)<<16)|((x)<<8)|(y)) argument
|
| D | api_msg.h | 168 struct netconn* netconn_alloc(enum netconn_type t, netconn_callback callback);
|
| /lib/liblwip/src/include/ipv4/lwip/ |
| D | icmp.h | 95 #define ICMPH_TYPE_SET(hdr, t) ((hdr)->type = (t)) argument 102 void icmp_dest_unreach(struct pbuf *p, enum icmp_dur_type t); 103 void icmp_time_exceeded(struct pbuf *p, enum icmp_te_type t);
|
| /lib/liblwip/src/core/ipv4/ |
| D | inet_chksum.c | 138 u16_t *ps, t = 0; in lwip_standard_chksum() local 144 ((u8_t *)&t)[1] = *pb++; in lwip_standard_chksum() 157 ((u8_t *)&t)[0] = *(u8_t *)ps; in lwip_standard_chksum() 161 sum += t; in lwip_standard_chksum() 194 u16_t *ps, t = 0; in lwip_standard_chksum() local 201 ((u8_t *)&t)[1] = *pb++; in lwip_standard_chksum() 241 ((u8_t *)&t)[0] = *(u8_t *)ps; in lwip_standard_chksum() 244 sum += t; /* add end bytes */ in lwip_standard_chksum()
|
| D | icmp.c | 261 icmp_dest_unreach(struct pbuf *p, enum icmp_dur_type t) in icmp_dest_unreach() argument 263 icmp_send_response(p, ICMP_DUR, t); in icmp_dest_unreach() 275 icmp_time_exceeded(struct pbuf *p, enum icmp_te_type t) in icmp_time_exceeded() argument 277 icmp_send_response(p, ICMP_TE, t); in icmp_time_exceeded()
|
| /bin/date/ |
| D | date.c | 8 time_t t = time(NULL); in main() local 9 fputs(ctime(&t), stdout); in main()
|
| /lib/libc/ |
| D | time.c | 20 time(time_t *t) in time() argument 25 if (t) in time() 26 *t = sec; in time() 173 time_t t = *timep - TZ_OFFSET_SECS; in localtime_r() local 174 return gmtime_r(&t, result); in localtime_r()
|
| /lib/liblwip/src/include/ipv6/lwip/ |
| D | icmp.h | 68 void icmp_dest_unreach(struct pbuf *p, enum icmp_dur_type t); 69 void icmp_time_exceeded(struct pbuf *p, enum icmp_te_type t);
|
| /lib/liblwip/src/core/ipv6/ |
| D | icmp6.c | 106 icmp_dest_unreach(struct pbuf *p, enum icmp_dur_type t) in icmp_dest_unreach() argument 127 idur->icode = (u8_t)t; in icmp_dest_unreach() 142 icmp_time_exceeded(struct pbuf *p, enum icmp_te_type t) in icmp_time_exceeded() argument 165 tehdr->icode = (u8_t)t; in icmp_time_exceeded()
|
| /lib/liblwip/src/netif/ppp/ |
| D | ppp_impl.h | 108 #define TIMEOUT(f, a, t) do { sys_untimeout((f), (a)); sys_timeout((t)*1000, (f), (a)); } while(… argument 225 #define MAKEHEADER(p, t) { \ argument 228 PUTSHORT(t, p); }
|
| /sys/amd64/ |
| D | kernel.lds | 15 *(.text .stub .text.* .gnu.linkonce.t.*) 47 .rela.text : { *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*) } 111 doesn't matter if the user does not 113 linker won't look for a file to match a 115 doesn't matter which directory crtbegin.o 119 /* We don't want to include the .ctor section from 164 FIXME: Why do we need it? When there is no .bss section, we don't
|
| /include/ |
| D | time.h | 19 time_t time(time_t *t);
|
| /lib/liblwip/src/netif/ |
| D | slipif.c | 173 struct pbuf *t; in slipif_rxbyte() local 192 t = priv->q; in slipif_rxbyte() 195 return t; in slipif_rxbyte()
|
| /lib/liblwip/doc/ |
| D | snmp_agent.txt | 34 doen't have a route table and doesn't have a notion of the U,G,H flags. 120 Note we don't have a "MIB compiler" that generates C source from a MIB, 159 Objects located above the .internet hierarchy aren't supported.
|
| D | contrib.txt | 24 9. don't initialize static and/or global variables to zero, the compiler takes care of that. 43 is to NOT touch archs you can't test and let maintainers take care of them.
|
| D | sys_arch.txt | 76 semaphore wasn't signaled within the specified time, the return value is 77 SYS_ARCH_TIMEOUT. If the thread didn't have to wait for the semaphore 204 This optional function returns the current time in milliseconds (don't care 215 can't be performed when sys_arch uses mem_malloc.
|
| /lib/liblwip/ |
| D | UPGRADING | 66 * Don't waste memory when chaining segments, added option TCP_OVERSIZE to 135 * Some improvements for AutoIP (don't route/forward link-local addresses, don't break
|
| D | CHANGELOG | 179 * tcp_impl.h, tcp_out.c: fixed bug #34587: TCP_BUILD_MSS_OPTION doesn't 416 Work on tcp_enqueue: Don't waste memory when chaining segments, 575 "FATAL" classification of error codes: ERR_USE and ERR_ISCONN just aren't fatal. 613 * tcp_in.c: Fixed bug #30577: tcp_input: don't discard ACK-only packets after 655 * udp.c, raw.c: Don't chain empty pbufs when sending them (fixes bug #30625) 707 * dhcp.c: Fixed bug #30038: dhcp_network_changed doesn't reset AUTOIP coop 736 triggered by bug #29345; don't allocate acceptmbox if LWIP_TCP is disabled 757 * netif.c, ipv4/ip.c: task #10241 (AutoIP: don't break existing connections 766 * ipv4/ip.c: Don't try to forward link-local addresses 769 * etharp.c: Fixed bug #29087: etharp: don't send packets for LinkLocal- [all …]
|