/tests/ |
D | threadtest.c | 25 int result = OSThreadWait(0); in main() local 26 printf("Result %d\n", result); in main() 27 result = OSThreadWait(0); in main() 28 printf("Result %d\n", result); in main() 29 result = OSThreadWait(0); in main() 30 printf("Result %d\n", result); in main()
|
D | pthreadtest.c | 65 void *result; in main() local 73 status = pthread_join(thr, &result); in main() 75 test_assert(result == NULL); in main() 82 status = pthread_join(thr, &result); in main() 84 test_assert(result == (void *)1); in main() 111 status = pthread_join(thr, &result); in main()
|
/lib/liblwip/src/core/ |
D | dhcp.c | 228 err_t result; in dhcp_check() local 235 result = etharp_query(netif, &dhcp->offered_ip_addr, NULL); in dhcp_check() 236 if (result != ERR_OK) { in dhcp_check() 286 err_t result; in dhcp_select() local 293 result = dhcp_create_msg(netif, dhcp, DHCP_REQUEST); in dhcp_select() 294 if (result == ERR_OK) { in dhcp_select() 330 return result; in dhcp_select() 632 err_t result = ERR_OK; in dhcp_start() local 691 result = dhcp_discover(netif); in dhcp_start() 692 if (result != ERR_OK) { in dhcp_start() [all …]
|
/lib/liblwip/src/include/lwip/ |
D | netdb.h | 102 size_t buflen, struct hostent **result, int *h_errnop); 111 #define gethostbyname_r(name, ret, buf, buflen, result, h_errnop) \ argument 112 lwip_gethostbyname_r(name, ret, buf, buflen, result, h_errnop)
|
/include/ |
D | time.h | 25 struct tm *gmtime_r(const time_t *timep, struct tm *result); 27 struct tm *localtime_r(const time_t *timep, struct tm *result);
|
/lib/liblwip/src/api/ |
D | netdb.c | 163 size_t buflen, struct hostent **result, int *h_errnop) in lwip_gethostbyname_r() argument 176 if (result == NULL) { in lwip_gethostbyname_r() 182 *result = NULL; in lwip_gethostbyname_r() 222 *result = ret; in lwip_gethostbyname_r()
|
/lib/liblwip/src/netif/ |
D | etharp.c | 1019 err_t result = ERR_MEM; local 1056 result = etharp_request(netif, ipaddr); 1057 if (result != ERR_OK) { 1064 return result; 1075 result = etharp_send_ip(netif, q, srcaddr, &(arp_table[i].ethaddr)); 1130 result = ERR_OK; 1135 result = ERR_MEM; 1144 result = ERR_OK; 1150 result = ERR_MEM; 1153 return result; [all …]
|
/lib/libc/posix/ |
D | pthread.c | 31 void *result; member 102 thr->result = (thr->entry)(thr->arg); in pthreadCreateHelper() 146 thr->result = value_ptr; in pthread_exit() 160 *value_ptr = (void *)thr->result; in pthread_join()
|
/lib/libc/ |
D | time.c | 171 localtime_r(const time_t *timep, struct tm *result) in localtime_r() argument 174 return gmtime_r(&t, result); in localtime_r()
|
/lib/liblwip/src/core/ipv4/ |
D | autoip.c | 288 err_t result = ERR_OK; in autoip_start() local 329 return result; in autoip_start()
|
/lib/liblwip/doc/ |
D | sys_arch.txt | 128 be blocked until a message arrives. The "msg" argument is a result 256 PERF_STOP(x) - stop measuring something, and record the result.
|
D | savannah.txt | 90 We can now commit the merge result.
|
/sys/amd64/ |
D | disasm.c | 987 #define get_value_inc(result, loc, size, is_signed) \ argument 988 result = Debug_GetValue((loc), (size), (is_signed)); \
|
/docs/ |
D | Doxyfile | 137 # and the result, after processing the whole list, is used as the annotated 277 # documentation, which will result in a user-defined paragraph with heading 1216 # The result: instead of the source browser generated by doxygen, the links to 1422 # representing an infinite number of entries and will result in a full expanded 1504 # file. You can add a path in front of the file if the result should not be 1771 # Content Delivery Network so you can quickly see the result without installing
|
/lib/liblwip/ |
D | CHANGELOG | 925 * pap.c: Fixed bug #13315 (PPP PAP authentication can result in 1109 * netdb.c, dns.c: bug #26657: DNS, if host name is "localhost", result 2526 result and can cause a crash. lwip_send now check netbuf_ref result.
|