Searched refs:from (Results 1 – 14 of 14) sorted by relevance
/DragonOS-0.1.2/kernel/ |
D | build.rs | 15 let out_path = PathBuf::from(String::from("src/include/bindings/")); in main()
|
D | cbindgen.toml | 112 # Include doc comments from Rust as documentation 202 # Whether applying rules in export.rename prevents export.prefix from applying. 248 # Whether the underscores from the mangled name should be omitted. 621 # required to be non null. Nullability is inferred from the Rust type: `&T`,
|
/DragonOS-0.1.2/kernel/src/libs/ |
D | kfifo.c | 51 uint32_t kfifo_in(struct kfifo_t *fifo, const void *from, uint32_t size) in kfifo_in() argument 56 if (unlikely(from == NULL)) in kfifo_in() 63 memcpy(fifo->buffer + fifo->in_offset, from, tmp); in kfifo_in() 64 memcpy(fifo->buffer, from + tmp, size - tmp); in kfifo_in() 69 memcpy(fifo->buffer + fifo->in_offset, from, size); in kfifo_in()
|
D | printk.rs | 63 …$crate::libs::printk::PrintkWriter.__write_string((alloc::string::String::from("[ INFO ] ")+ alloc…
|
/DragonOS-0.1.2/kernel/src/common/ |
D | kfifo.h | 99 uint32_t kfifo_in(struct kfifo_t *fifo, const void *from, uint32_t size); 130 uint32_t __always_inline kfifo_in_locked(struct kfifo_t *fifo, const void *from, uint32_t size, spi… in kfifo_in_locked() argument 133 uint32_t retval = kfifo_in(fifo, from, size); in kfifo_in_locked()
|
/DragonOS-0.1.2/docs/ |
D | make.bat | 23 echo.If you don't have Sphinx installed, grab it from
|
/DragonOS-0.1.2/kernel/src/filesystem/procfs/ |
D | procfs.c | 21 static long simple_procfs_read(void *to, int64_t count, long *position, void *from, int64_t availab… 197 static long simple_procfs_read(void *to, int64_t count, long *position, void *from, int64_t availab… in simple_procfs_read() argument 212 ret = copy_to_user(to, from + pos, count); in simple_procfs_read()
|
/DragonOS-0.1.2/ |
D | LICENSE | 74 running the Program is not restricted, and the output from the Program 99 whole or in part contains or is derived from the Program or any 115 identifiable sections of that work are not derived from the Program, 167 access to copy from a designated place, then offering equivalent 168 access to copy the source code from the same place counts as 176 However, parties who have received copies, or rights, from you under 190 Program), the recipient automatically receives a license from the 201 excuse you from the conditions of this License. If you cannot 208 refrain entirely from distribution of the Program. 238 of the General Public License from time to time. Such new versions will
|
D | README.md | 131 - [skiftOS]([GitHub - skiftOS/skift: A hobby operating system built from scratch in modern C++. …
|
D | README_EN.md | 64 …en source public welfare project, but its development cannot be separated from the support of fund… 121 - [skiftOS]([GitHub - skiftOS/skift: A hobby operating system built from scratch in modern C++. …
|
/DragonOS-0.1.2/kernel/src/ipc/ |
D | signal.rs | 66 let sig: SignalNumber = SignalNumber::from(regs.r9 as i32); in sys_kill() 540 sig = SignalNumber::from(ffz(!x) + 1); in next_signal() 693 fn copy_siginfo_to_user(to: *mut siginfo, from: &siginfo) -> Result<i32, i32> { in copy_siginfo_to_user() 706 (*to)._sinfo.data._sifields._kill._pid = from._sinfo.data._sifields._kill._pid; in copy_siginfo_to_user() 834 let sig = SignalNumber::from(regs.r8 as i32); in sys_sigaction()
|
D | signal_types.rs | 345 fn from(value: i32) -> Self { in from() method 535 if sig_is_member(mask, SignalNumber::from(unsafe { x._sinfo.data.si_signo })) { in flush_by_mask()
|
/DragonOS-0.1.2/docs/kernel/filesystem/fat32/ |
D | index.md | 216 [FAT32 File System Specification - from Microsoft](http://download.microsoft.com/download/1/6/1/161…
|
/DragonOS-0.1.2/docs/kernel/core_api/ |
D | data_structures.md | 74 `uint32_t kfifo_in(struct kfifo_t *fifo, const void *from, uint32_t size)` 86 **from**
|