HomeSort by relevance Sort by last modified time
    Searched refs:kallsyms (Results 1 - 7 of 7) sorted by null

  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/
net_dropmonitor.py 14 kallsyms = [] variable
17 global kallsyms
20 f = open("/proc/kallsyms", "r")
27 kallsyms.append((loc, name))
28 kallsyms.sort()
33 # Invariant: kallsyms[i][0] <= loc for all 0 <= i <= start
34 # kallsyms[i][0] > loc for all end <= i < len(kallsyms)
35 start, end = -1, len(kallsyms)
38 if loc < kallsyms[pivot][0]
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
vmlinux-kallsyms.c 27 struct machine kallsyms, vmlinux; local
36 * both vmlinux + .ko files and from /proc/kallsyms split by modules.
38 machine__init(&kallsyms, "", HOST_KERNEL_ID);
44 * Create the kernel maps for kallsyms and the DSO where we will then
45 * load /proc/kallsyms. Also create the modules maps from /proc/modules
48 if (machine__create_kernel_maps(&kallsyms) < 0) {
56 * Load and split /proc/kallsyms into multiple maps, one per module.
58 if (machine__load_kallsyms(&kallsyms, "/proc/kallsyms", type, NULL) <= 0) {
66 * kallsyms will be internally on demand sorted by name so that we ca
    [all...]
  /external/chromium_org/tools/android/adb_profile_chrome/
perf_controller.py 133 required_libs, kallsyms):
134 cmd = '%s report -n -i %s --symfs %s --kallsyms %s' % (
135 os.path.relpath(perfhost_path, '.'), perf_profile, symfs_dir, kallsyms)
164 kallsyms = android_profiling_helper.CreateSymFs(self._device,
173 perf_profile, symfs_dir, required_libs, kallsyms))
183 perf_profile, '--symfs', symfs_dir, '--kallsyms', kallsyms]
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
android_profiling_helper_unittest.py 108 kallsyms = android_profiling_helper.CreateSymFs(self._device, symfs_dir,
117 assert os.path.exists(kallsyms)
perf_profiler.py 132 kallsyms = android_profiling_helper.CreateSymFs(device,
136 cmd += ' --symfs %s --kallsyms %s' % (symfs_root, kallsyms)
  /external/chromium_org/v8/tools/
ll_prof.py 700 KERNEL_ALLSYMS_FILE = "/proc/kallsyms"
702 r".*kallsyms.*")
802 kallsyms = open(KERNEL_ALLSYMS_FILE, "r")
804 for line in kallsyms:
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
Makefile 377 LIB_OBJS += $(OUTPUT)tests/vmlinux-kallsyms.o

Completed in 663 milliseconds