Home
last modified time | relevance | path

Searched refs:from (Results 1 – 14 of 14) sorted by relevance

/DragonOS-0.1.2/kernel/
Dbuild.rs15 let out_path = PathBuf::from(String::from("src/include/bindings/")); in main()
Dcbindgen.toml112 # 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/
Dkfifo.c51 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()
Dprintk.rs63 …$crate::libs::printk::PrintkWriter.__write_string((alloc::string::String::from("[ INFO ] ")+ alloc…
/DragonOS-0.1.2/kernel/src/common/
Dkfifo.h99 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/
Dmake.bat23 echo.If you don't have Sphinx installed, grab it from
/DragonOS-0.1.2/kernel/src/filesystem/procfs/
Dprocfs.c21 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/
DLICENSE74 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
DREADME.md131 - [skiftOS]([GitHub - skiftOS/skift: �� A hobby operating system built from scratch in modern C++. …
DREADME_EN.md64 …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/
Dsignal.rs66 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()
Dsignal_types.rs345 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/
Dindex.md216 [FAT32 File System Specification - from Microsoft](http://download.microsoft.com/download/1/6/1/161…
/DragonOS-0.1.2/docs/kernel/core_api/
Ddata_structures.md74 `uint32_t kfifo_in(struct kfifo_t *fifo, const void *from, uint32_t size)`
86 **from**