Home
last modified time | relevance | path

Searched refs:vmlinux (Results 1 – 25 of 31) sorted by relevance

12

/external/autotest/client/profilers/oprofile/
Doprofile.py61 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/
Dcover.go49 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/
Dlinux.go24 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/
Dcontrol.oprofile_power522 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.gitignore47 /vmlinux
48 /vmlinux.32
49 /vmlinux-gdb.py
/external/u-boot/doc/uImage.FIT/
Dx86-fit-boot.txt70 '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
Dupdate3.its14 data = /incbin/("./vmlinux.bin.gz");
Dkernel_fdt.its14 data = /incbin/("./vmlinux.bin.gz");
Dkernel.its14 data = /incbin/("./vmlinux.bin.gz");
Dmulti.its14 data = /incbin/("./vmlinux.bin.gz");
Dhowto.txt74 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/
Dlinux.go72 vmlinux := filepath.Join(kernelDir, "vmlinux")
74 if err := os.Rename(vmlinux, outputVmlinux); err != nil {
/external/linux-kselftest/tools/testing/selftests/rcutorture/bin/
Dkvm-test-1-run.sh91 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/
Dngcc_dso_path.whitelist7 .*/boot/vmlinux\.debug
/external/u-boot/doc/
DREADME.qemu-mips61 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/
Dsetup_ubuntu-host_qemu-vm_x86-64-kernel.md93 Now you should have `vmlinux` (kernel binary) and `bzImage` (packed kernel image):
95 $ ls $KERNEL/vmlinux
96 $KERNEL/vmlinux
Dtroubleshooting.md38 `VMLINUX` is the vmlinux file, as per the `kernel_obj` config value), to confirm
/external/autotest/client/bin/
Dutils.py194 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/
Drunkdump.EXTRA_LKDTM.RHEL12 VMLINUX="/usr/lib/debug/lib/modules/$(uname -r)/vmlinux"
Drunkdump.CRASHER.SLES12 VMLINUX="/usr/lib/debug/lib/modules/$(uname -r)/vmlinux"
Drunkdump.EXTRA_LKDTM.SLES12 VMLINUX="/usr/lib/debug/lib/modules/$(uname -r)/vmlinux"
Drunkdump.BASIC_LKDTM.SLES12 VMLINUX="/usr/lib/debug/lib/modules/$(uname -r)/vmlinux"
Drunkdump.CRASHER.RHEL12 VMLINUX="/usr/lib/debug/lib/modules/$(uname -r)/vmlinux"
Drunkdump.BASIC_LKDTM.RHEL12 VMLINUX="/usr/lib/debug/lib/modules/$(uname -r)/vmlinux"
/external/syzkaller/docs/
Dconfiguration.md18 - `kernel_obj`: Directory with object files (e.g. `vmlinux` for linux)

12