Searched refs:status (Results 1 – 14 of 14) sorted by relevance
/DragonOS-0.1.5/user/libs/libc/src/ |
D | stdlib.c | 57 void exit(int status) in exit() argument 60 syscall_invoke(SYS_EXIT, status, 0, 0, 0, 0, 0, 0, 0); in exit()
|
/DragonOS-0.1.5/user/libs/libc/src/include/export/ |
D | stdlib.h | 46 void exit(int status);
|
/DragonOS-0.1.5/docs/userland/libc/apis/api-list/ |
D | stdlib.md | 20 ``void exit(int status)`` : 普通的 ``exit``
|
/DragonOS-0.1.5/kernel/src/syscall/ |
D | syscall.c | 344 int *status = (int *)regs->r9; in sys_wait4() local 369 if (likely(status != NULL)) in sys_wait4() 370 *status = child_proc->exit_code; in sys_wait4()
|
/DragonOS-0.1.5/kernel/src/driver/usb/xhci/ |
D | xhci.h | 192 #define xhci_get_comp_code(status) (((status) >> 24) & 0x7f) argument 202 uint32_t status; member
|
D | xhci.c | 112 trb->status = __read4b(address + 8); in xhci_get_trb() 125 __write4b(address + 8, trb->status); in xhci_set_trb() 722 origin_trb.status = event_trb.status; in xhci_hc_irq_handler() 725 origin_trb.status = event_trb.status; in xhci_hc_irq_handler() 730 origin_trb.status |= XHCI_IRQ_DONE; in xhci_hc_irq_handler() 750 … (event_trb.status | XHCI_IRQ_DONE)); // return code + bytes *not* transferred in xhci_hc_irq_handler() 1204 uint32_t status = __read4b(status_vaddr); in xhci_wait_for_interrupt() local 1206 switch (xhci_get_comp_code(status)) in xhci_wait_for_interrupt() 1217 …kerror("xhci wait interrupt: status=%#010x, complete_code=%d", status, xhci_get_comp_code(status)); in xhci_wait_for_interrupt() 1976 __write4b(xhci_hc[id].cmd_trb_vaddr + 8, trb->status); // 状态 in xhci_send_command() [all …]
|
/DragonOS-0.1.5/kernel/src/driver/disk/ahci/ |
D | ahci.h | 102 uint8_t status; // Status register member 153 uint8_t status; // Status register member
|
D | hba.rs | 312 pub status: u8, // Status register field 358 pub status: u8, // Status register field
|
/DragonOS-0.1.5/docs/community/ChangeLog/V0.1.x/ |
D | V0.1.2.md | 49 - procfs->status增加显示preempt和虚拟运行时间 (#100) 279 * procfs->status增加显示preempt和虚拟运行时间
|
D | V0.1.1.md | 35 - procfs:查看进程的status
|
/DragonOS-0.1.5/ |
D | bochsrc | 17 ata1-master: type=cdrom, path="DragonOS.iso", status=inserted
|
D | LICENSE | 255 of preserving the free status of all derivatives of our free software and
|
/DragonOS-0.1.5/kernel/src/driver/pci/ |
D | pci.rs | 79 let status: Status = unsafe { in capabilities_offset() localVariable 88 if status.contains(Status::CAPABILITIES_LIST) { in capabilities_offset()
|
/DragonOS-0.1.5/kernel/src/driver/virtio/ |
D | transport_pci.rs | 274 fn set_status(&mut self, status: DeviceStatus) { in set_status() 278 volwrite!(self.common_cfg, device_status, status.bits() as u8); in set_status()
|