/external/autotest/client/profilers/oprofile/ |
D | oprofile.py | 61 if not self.vmlinux: 64 setup += ' --vmlinux=%s' % self.vmlinux 98 def initialize(self, vmlinux=None, events=[], others=None, local=None): argument 101 if not vmlinux: 102 self.vmlinux = utils.get_vmlinux() 104 self.vmlinux = vmlinux 138 if self.vmlinux: 139 report = self.opreport + ' -l ' + self.vmlinux
|
/external/syzkaller/syz-manager/ |
D | cover.go | 49 vmlinux := filepath.Join(kernelObj, "vmlinux") 50 symbols, err := symbolizer.ReadSymbols(vmlinux) 52 return fmt.Errorf("failed to run nm on %v: %v", vmlinux, err) 62 initCoverPCs, err = coveredPCs(arch, vmlinux) 64 return fmt.Errorf("failed to run objdump on %v: %v", vmlinux, err) 69 initCoverVMOffset, err = getVMOffset(vmlinux) 88 vmlinux := filepath.Join(kernelObj, "vmlinux") 89 uncovered, err := uncoveredPcsInFuncs(vmlinux, pcs) 94 coveredFrames, _, err := symbolize(vmlinux, pcs) 99 return fmt.Errorf("'%s' does not have debug info (set CONFIG_DEBUG_INFO=y)", vmlinux) [all …]
|
/external/syzkaller/pkg/report/ |
D | linux.go | 24 vmlinux string member 36 vmlinux := "" 39 vmlinux = filepath.Join(kernelObj, "vmlinux") 41 symbols, err = symbolizer.ReadSymbols(vmlinux) 49 vmlinux: vmlinux, 276 if ctx.vmlinux == "" { 303 line = symbolizeLine(symb.Symbolize, ctx.symbols, ctx.vmlinux, strip, line) 322 frames, _ := symb.Symbolize(ctx.vmlinux, covSymb.Addr) 332 strip, _ := filepath.Abs(ctx.vmlinux) 337 symbols map[string][]symbolizer.Symbol, vmlinux, strip string, line []byte) []byte { argument [all …]
|
/external/autotest/client/samples/ |
D | control.oprofile_power5 | 22 logging.info("Testing specified vmlinux") 23 job.profilers.add('oprofile', '/boot/vmlinux-autotest') 24 job.run_test('sleeptest', seconds=5, tag='vmlinux')
|
/external/linux-kselftest/ |
D | .gitignore | 47 /vmlinux 48 /vmlinux.32 49 /vmlinux-gdb.py
|
/external/u-boot/doc/uImage.FIT/ |
D | x86-fit-boot.txt | 70 'vmlinux'. This is a standard ELF file and you can look at it if you like: 72 $ objdump -h vmlinux 74 vmlinux: file format elf32-i386 163 All we need to boot is the vmlinux file and the setup.bin file. 184 objcopy -O binary vmlinux vmlinux.bin 187 lzop vmlinux.bin
|
D | update3.its | 14 data = /incbin/("./vmlinux.bin.gz");
|
D | kernel_fdt.its | 14 data = /incbin/("./vmlinux.bin.gz");
|
D | kernel.its | 14 data = /incbin/("./vmlinux.bin.gz");
|
D | multi.its | 14 data = /incbin/("./vmlinux.bin.gz");
|
D | howto.txt | 74 target. Assume that the outcome of the build is vmlinux.bin.gz, a file which 77 doc/uImage.FIT/kernel.its (note that kernel.its assumes that vmlinux.bin.gz is 186 files: vmlinux.bin.gz (Linux kernel) and target.dtb (FDT blob). The uImage can
|
/external/syzkaller/pkg/build/ |
D | linux.go | 72 vmlinux := filepath.Join(kernelDir, "vmlinux") 74 if err := os.Rename(vmlinux, outputVmlinux); err != nil {
|
/external/linux-kselftest/tools/testing/selftests/rcutorture/bin/ |
D | kvm-test-1-run.sh | 91 if test "$base_resdir" != "$resdir" -a -f $base_resdir/bzImage -a -f $base_resdir/vmlinux 106 cp $builddir/vmlinux $resdir
|
/external/toolchain-utils/debug_info_test/ |
D | ngcc_dso_path.whitelist | 7 .*/boot/vmlinux\.debug
|
/external/u-boot/doc/ |
D | README.qemu-mips | 61 vmlinux 62 vmlinux.bin 67 …-O linux -T kernel -C gzip -a 0x80010000 -e 0x80245650 -n "Linux 2.6.24.y" -d vmlinux.bin.gz uImage
|
/external/syzkaller/docs/linux/ |
D | setup_ubuntu-host_qemu-vm_x86-64-kernel.md | 93 Now you should have `vmlinux` (kernel binary) and `bzImage` (packed kernel image): 95 $ ls $KERNEL/vmlinux 96 $KERNEL/vmlinux
|
D | troubleshooting.md | 38 `VMLINUX` is the vmlinux file, as per the `kernel_obj` config value), to confirm
|
/external/autotest/client/bin/ |
D | utils.py | 194 vmlinux = '/boot/vmlinux-%s' % utils.system_output('uname -r') 195 if os.path.isfile(vmlinux): 196 return vmlinux 197 vmlinux = '/lib/modules/%s/build/vmlinux' % utils.system_output('uname -r') 198 if os.path.isfile(vmlinux): 199 return vmlinux
|
/external/ltp/testcases/kdump/sample/ |
D | runkdump.EXTRA_LKDTM.RHEL | 12 VMLINUX="/usr/lib/debug/lib/modules/$(uname -r)/vmlinux"
|
D | runkdump.CRASHER.SLES | 12 VMLINUX="/usr/lib/debug/lib/modules/$(uname -r)/vmlinux"
|
D | runkdump.EXTRA_LKDTM.SLES | 12 VMLINUX="/usr/lib/debug/lib/modules/$(uname -r)/vmlinux"
|
D | runkdump.BASIC_LKDTM.SLES | 12 VMLINUX="/usr/lib/debug/lib/modules/$(uname -r)/vmlinux"
|
D | runkdump.CRASHER.RHEL | 12 VMLINUX="/usr/lib/debug/lib/modules/$(uname -r)/vmlinux"
|
D | runkdump.BASIC_LKDTM.RHEL | 12 VMLINUX="/usr/lib/debug/lib/modules/$(uname -r)/vmlinux"
|
/external/syzkaller/docs/ |
D | configuration.md | 18 - `kernel_obj`: Directory with object files (e.g. `vmlinux` for linux)
|