Searched refs:status (Results 26 – 43 of 43) sorted by relevance
12
| /lib/libc/ |
| D | syscall.c | 17 OSExit(int status) in OSExit() argument 19 syscall(SYSCALL_EXIT, status); in OSExit() 119 OSThreadExit(uint64_t status) in OSThreadExit() argument 121 return syscall(SYSCALL_THREADEXIT, status); in OSThreadExit()
|
| D | crt1.c | 103 int status; in _start() local 115 status = main(argc, argv); in _start() 119 exit(status); in _start()
|
| D | exit.c | 36 exit(int status) in exit() argument 43 OSExit(status & 0x00ff); in exit()
|
| D | dir.c | 27 int status = OSReadDir(d->fd, (char *)&d->de, sizeof(struct dirent), &d->offset); in readdir() local 28 if (status == 0) { in readdir()
|
| D | malloc.c | 10 uint16_t status; member 87 obj->status = 0; in grow_small() 138 addr->status = 0; in malloc_large()
|
| /sys/kern/ |
| D | loader.c | 189 int status; in Loader_LoadInit() local 198 status = VFS_Open(initvn); in Loader_LoadInit() 199 if (status < 0) in Loader_LoadInit() 201 status = VFS_Read(initvn, pg, 0, 1024); in Loader_LoadInit() 202 if (status < 0) in Loader_LoadInit()
|
| D | thread.c | 282 uint64_t status; in Thread_Wait() local 293 status = t->exitValue; in Thread_Wait() 295 return SYSCALL_PACK(0, status); in Thread_Wait() 302 status = t->exitValue; in Thread_Wait() 304 return SYSCALL_PACK(0, status); in Thread_Wait()
|
| D | process.c | 210 uint64_t status; in Process_Wait() local 224 status = (p->pid << 16) | (p->exitCode & 0xff); in Process_Wait() 243 return SYSCALL_PACK(0, status); in Process_Wait()
|
| /sys/dev/ |
| D | e1000.c | 99 volatile uint8_t status; // Status member 115 volatile uint8_t status; // Status member 234 while (dev->rxDesc[dev->rxTail].status & RDESC_STATUS_DD) { in E1000_RXPoll() 239 if ((dev->rxDesc[dev->rxTail].status & RDESC_STATUS_EOP) && in E1000_RXPoll() 254 dev->rxDesc[dev->rxTail].status = 0; in E1000_RXPoll() 325 if ((dev->rxDesc[dev->rxTail].status & RDESC_STATUS_EOP) && in E1000_Dequeue() 334 dev->rxDesc[dev->rxTail].status = 0; in E1000_Dequeue() 391 dev->rxDesc[i].status = 0; in E1000_RXInit()
|
| /include/ |
| D | syscall.h | 12 void OSExit(int status); 35 int OSThreadExit(uint64_t status);
|
| D | stdlib.h | 12 void exit(int status);
|
| /sys/amd64/ |
| D | mp.c | 32 volatile int status[MAX_CPUS]; member 156 frame->status[CPU()] = (frame->cb)(frame->arg); in MP_CrossCallTrap() 187 frame.status[CPU()] = cb(arg); in MP_CrossCall()
|
| /sys/include/ |
| D | mbuf.h | 20 uint32_t status; member
|
| D | mutex.h | 9 uint64_t status; member
|
| /sbin/newfs_o2fs/ |
| D | newfs_o2fs.c | 300 int status; in main() local 349 status = fstat(diskfd, &diskstat); in main() 350 if (status < 0) { in main()
|
| /lib/liblwip/doc/ |
| D | rawapi.txt | 457 You can peek in the netif->dhcp struct for the actual DHCP status.
|
| /lib/liblwip/ |
| D | CHANGELOG | 512 * ppp.c/.h: Fixed bug #27856: PPP: Set netif link- and status-callback 794 * netif.c/.h: Link status does not depend on LWIP_NETIF_LINK_CALLBACK 800 admin-status of a netif are up 1640 enabled by defining SNMP_SAFE_REQUESTS to 0); added code to check link status
|
| /docs/ |
| D | Doxyfile | 874 # at the end of the doxygen process doxygen will return with a non-zero status.
|
12