Home
last modified time | relevance | path

Searched refs:push (Results 1 – 25 of 101) sorted by relevance

12345

/DragonOS/kernel/crates/rbpf/src/
H A Dinsn_builder.rs343 pub fn push(self) -> &'i mut BpfCode { in push() method
411 pub fn push(self) -> &'i mut BpfCode { in push() method
452 pub fn push(self) -> &'i mut BpfCode { in push() method
485 pub fn push(self) -> &'i mut BpfCode { in push() method
538 pub fn push(self) -> &'i mut BpfCode { in push() method
598 pub fn push(self) -> &'i mut BpfCode { in push() method
627 pub fn push(self) -> &'i mut BpfCode { in push() method
657 program.call().set_imm(0x11_22_33_44).push(); in call_immediate()
668 program.exit().push(); in exit_operation()
690 .push(); in jump_on_dst_equals_src()
[all …]
/DragonOS/.github/workflows/
H A Dpublish-dragonos-docker-image.yml5 push:
32 - name: Build and push docker image
33 uses: docker/build-push-action@v4
38 push: true
H A Ddocs-multiversion.yml4 push:
/DragonOS/kernel/src/bpf/map/
H A Dqueue.rs20 fn push(&mut self, value: BpfQueueValue, flags: BpfMapUpdateElemFlags) -> Result<()>; in push() method
56 fn push(&mut self, value: BpfQueueValue, flags: BpfMapUpdateElemFlags) -> Result<()> { in push() method
65 self.data.push(value); in push()
104 fn push(&mut self, value: BpfQueueValue, flags: BpfMapUpdateElemFlags) -> Result<()> { in push() method
113 self.data.push(value); in push()
132 self.push(value.to_vec(), flag) in update_elem()
/DragonOS/build-scripts/kernel_build/src/utils/
H A Dmod.rs18 queue.push(path.clone()); in list_all_files()
35 result.push(ent.path()); in list_all_files()
40 queue.push(ent.path()); in list_all_files()
/DragonOS/docs/kernel/locking/
H A Dspinlock.md63 g.push(1);
64 g.push(2);
65 g.push(2);
H A Dmutex.md57 g.push(1);
58 g.push(2);
59 g.push(2);
/DragonOS/kernel/src/virt/kvm/
H A Dmod.rs30 vm_list.push(Vm::new(id).unwrap()); in push_vm()
48 vm_list.push(new_vm); in update_vm()
/DragonOS/kernel/src/filesystem/sysfs/
H A Ddir.rs95 parts.push(p.name().to_string()); in kernfs_path()
110 path.push('/'); in kernfs_path()
/DragonOS/build-scripts/kernel_build/src/kconfig/
H A Dmod.rs77 r.push(d_config_path); in dfs()
117 r.push(Feature::new(name, enable)); in parse_d_config()
140 r.push(Module::new(name, path, enable)); in include()
/DragonOS/user/apps/test_ebpf/syscall_ebpf/xtask/src/
H A Dbuild.rs22 args.push("--release") in build_project()
H A Dbuild_ebpf.rs52 args.push("--release") in build_ebpf()
H A Drun.rs42 args.push(bin_path.as_str()); in run()
/DragonOS/kernel/src/filesystem/procfs/
H A Dkmsg.rs54 pub fn push(&mut self, msg: LogMessage) { in push() method
55 self.buffer.push(msg); in push()
/DragonOS/kernel/src/libs/
H A Dwait_queue.rs273 to_push_back.push(to_wakeup); in wakeup_all()
337 guard.push((events, ProcessManager::current_pcb())); in sleep()
348 guard.push((events, ProcessManager::current_pcb())); in sleep_without_schedule()
360 guard.push((events, ProcessManager::current_pcb())); in sleep_unlock_spinlock()
/DragonOS/kernel/crates/rbpf/examples/
H A Dto_json.rs30 json_insns.push(object!( in to_json()
/DragonOS/kernel/src/debug/kprobe/
H A Dmod.rs50 list.push(kprobe); in insert_break_point()
60 list.push(kprobe); in insert_debug_point()
H A Dargs.rs35 symbol_sting.push('\0'); in try_from()
/DragonOS/kernel/src/driver/tty/
H A Dkthread.rs70 KEYBUF.push(*item).ok(); in send_to_tty_refresh_thread()
/DragonOS/kernel/src/driver/block/cache/
H A Dcached_block_device.rs100 success_ans.push(x); in check_able_to_read()
104 None => fail_ans.push(FailData::new(i.lba_id(), index)), in check_able_to_read()
286 self.root.push(data_block); in insert()
/DragonOS/kernel/src/driver/open_firmware/
H A Ddevice_node.rs62 self.inner.lock().properties.push(prop); in add_property()
82 self.inner.lock().children.push(child); in add_child()
/DragonOS/kernel/src/driver/pci/test/
H A Dpt_driver.rs49 self.locked_dynid_list.write().push(id); in add_dynid()
98 guard.devices.push(device); in add_device()
/DragonOS/kernel/src/debug/klog/
H A Dmm.rs66 let r = __MM_ALLOCATOR_LOG_CHANNEL.buf.push(log); in log()
/DragonOS/kernel/crates/rbpf/tests/
H A Dmisc.rs261 .push() in test_vm_mbuff_with_rust_api()
266 .push() in test_vm_mbuff_with_rust_api()
268 .push(); in test_vm_mbuff_with_rust_api()
/DragonOS/kernel/src/driver/base/block/
H A Dmanager.rs169 disks.push(format!("/dev/{}", dev.dev_name())); in print_gendisks()
171 disks.push(format!("/dev/{}{}", dev.dev_name(), idx)); in print_gendisks()

12345