/DragonOS/kernel/crates/rbpf/src/ |
H A D | insn_builder.rs | 343 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 D | publish-dragonos-docker-image.yml | 5 push: 32 - name: Build and push docker image 33 uses: docker/build-push-action@v4 38 push: true
|
H A D | docs-multiversion.yml | 4 push:
|
/DragonOS/kernel/src/bpf/map/ |
H A D | queue.rs | 20 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 D | mod.rs | 18 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 D | spinlock.md | 63 g.push(1); 64 g.push(2); 65 g.push(2);
|
H A D | mutex.md | 57 g.push(1); 58 g.push(2); 59 g.push(2);
|
/DragonOS/kernel/src/virt/kvm/ |
H A D | mod.rs | 30 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 D | dir.rs | 95 parts.push(p.name().to_string()); in kernfs_path() 110 path.push('/'); in kernfs_path()
|
/DragonOS/build-scripts/kernel_build/src/kconfig/ |
H A D | mod.rs | 77 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 D | build.rs | 22 args.push("--release") in build_project()
|
H A D | build_ebpf.rs | 52 args.push("--release") in build_ebpf()
|
H A D | run.rs | 42 args.push(bin_path.as_str()); in run()
|
/DragonOS/kernel/src/filesystem/procfs/ |
H A D | kmsg.rs | 54 pub fn push(&mut self, msg: LogMessage) { in push() method 55 self.buffer.push(msg); in push()
|
/DragonOS/kernel/src/libs/ |
H A D | wait_queue.rs | 273 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 D | to_json.rs | 30 json_insns.push(object!( in to_json()
|
/DragonOS/kernel/src/debug/kprobe/ |
H A D | mod.rs | 50 list.push(kprobe); in insert_break_point() 60 list.push(kprobe); in insert_debug_point()
|
H A D | args.rs | 35 symbol_sting.push('\0'); in try_from()
|
/DragonOS/kernel/src/driver/tty/ |
H A D | kthread.rs | 70 KEYBUF.push(*item).ok(); in send_to_tty_refresh_thread()
|
/DragonOS/kernel/src/driver/block/cache/ |
H A D | cached_block_device.rs | 100 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 D | device_node.rs | 62 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 D | pt_driver.rs | 49 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 D | mm.rs | 66 let r = __MM_ALLOCATOR_LOG_CHANNEL.buf.push(log); in log()
|
/DragonOS/kernel/crates/rbpf/tests/ |
H A D | misc.rs | 261 .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 D | manager.rs | 169 disks.push(format!("/dev/{}", dev.dev_name())); in print_gendisks() 171 disks.push(format!("/dev/{}{}", dev.dev_name(), idx)); in print_gendisks()
|