| /linux/tools/perf/tests/ |
| H A D | kallsyms-split.c | 20 static char *root_dir; variable 50 if (root_dir == NULL) in remove_proc_dir() 54 scnprintf(buf, sizeof(buf), "%s/proc/%s", root_dir, proc_files[i].name); in remove_proc_dir() 58 scnprintf(buf, sizeof(buf), "%s/proc", root_dir); in remove_proc_dir() 61 rmdir(root_dir); in remove_proc_dir() 62 root_dir = NULL; in remove_proc_dir() 69 root_dir = mkdtemp(root_template); in create_proc_dir() 70 if (root_dir == NULL) in create_proc_dir() 73 scnprintf(buf, sizeof(buf), "%s/proc", root_dir); in create_proc_dir() 80 scnprintf(buf, sizeof(buf), "%s/proc/%s", root_dir, proc_files[i].name); in create_proc_dir() [all …]
|
| /linux/tools/perf/util/ |
| H A D | build-id.c | 102 int sysfs__snprintf_build_id(const char *root_dir, char *sbuild_id, size_t sbuild_id_size) in sysfs__snprintf_build_id() argument 108 if (!root_dir) in sysfs__snprintf_build_id() 109 root_dir = ""; in sysfs__snprintf_build_id() 111 scnprintf(notes, sizeof(notes), "%s/sys/kernel/notes", root_dir); in sysfs__snprintf_build_id() 581 const char *root_dir) in build_id_cache__find_debug() argument 594 if (root_dir) { in build_id_cache__find_debug() 595 path__join(dirbuf, PATH_MAX, root_dir, dirname); in build_id_cache__find_debug() 635 const char *proper_name, const char *root_dir) in build_id_cache__add() argument 689 debugfile = build_id_cache__find_debug(sbuild_id, nsi, root_dir); in build_id_cache__add() 757 const char *proper_name, const char *root_dir) in __build_id_cache__add_s() argument [all …]
|
| H A D | build-id.h | 26 int sysfs__snprintf_build_id(const char *root_dir, char *sbuild_id, size_t sbuild_id_size); 66 const char *proper_name, const char *root_dir); 70 const char *proper_name, const char *root_dir);
|
| H A D | machine.h | 39 char *root_dir; member 162 const char *root_dir); 175 int machine__init(struct machine *machine, const char *root_dir, pid_t pid);
|
| H A D | machine.c | 75 int machine__init(struct machine *machine, const char *root_dir, pid_t pid) in machine__init() argument 102 machine->root_dir = strdup(root_dir); in machine__init() 103 if (machine->root_dir == NULL) in machine__init() 126 zfree(&machine->root_dir); in machine__init() 216 zfree(&machine->root_dir); in machine__exit() 245 const char *root_dir) in machines__add() argument 255 if (machine__init(machine, root_dir, pid) != 0) { in machines__add() 321 const char *root_dir = ""; in machines__findnew() local 344 root_dir = path; in machines__findnew() 347 machine = machines__add(machines, pid, root_dir); in machines__findnew() [all …]
|
| H A D | dso.c | 114 char *root_dir, char *filename, size_t size) in dso__read_binary_type_filename() argument 236 root_dir, dso__long_name(dso)); in dso__read_binary_type_filename() 570 char *root_dir = (char *)""; in __open_dso() local 579 root_dir = machine->root_dir; in __open_dso() 582 root_dir, name, PATH_MAX)) in __open_dso() 1693 sprintf(path, "%s/sys/kernel/notes", machine->root_dir); in dso__read_running_kernel_build_id() 1699 const char *root_dir) in dso__kernel_module_get_build_id() argument 1711 root_dir, (int)strlen(name) - 1, name); in dso__kernel_module_get_build_id()
|
| H A D | symbol.c | 923 machine->root_dir, module); in maps__split_kallsyms() 1691 char *root_dir = (char *) ""; in dso__load() local 1745 root_dir = machine->root_dir; in dso__load() 1785 root_dir, name, PATH_MAX)) in dso__load() 2051 scnprintf(path, sizeof(path), "%s/proc/kallsyms", machine->root_dir); in dso__find_kallsyms() 2169 sprintf(path, "%s/proc/kallsyms", machine->root_dir); in dso__load_guest_kernel_sym()
|
| H A D | dso.h | 765 int dso__kernel_module_get_build_id(struct dso *dso, const char *root_dir); 769 char *root_dir, char *filename, size_t size);
|
| H A D | synthetic-events.c | 448 machine->root_dir, pid, pid); in perf_event__synthesize_mmap_events() 488 machine->root_dir, pid, pid); in perf_event__synthesize_mmap_events() 810 machine->root_dir, pid); in __event__synthesize_thread() 1046 snprintf(proc_path, sizeof(proc_path), "%s/proc", machine->root_dir); in perf_event__synthesize_threads()
|
| /linux/kernel/trace/rv/ |
| H A D | rv.h | 5 struct dentry *root_dir; member 36 int init_rv_reactors(struct dentry *root_dir); 43 static inline int init_rv_reactors(struct dentry *root_dir) in init_rv_reactors() argument
|
| H A D | rv.c | 822 struct dentry *root_dir __free(rv_remove) = rv_create_dir("rv", NULL); in rv_init_interface() 824 if (!root_dir) in rv_init_interface() 827 rv_root.monitors_dir = rv_create_dir("monitors", root_dir); in rv_init_interface() 831 tmp = rv_create_file("available_monitors", RV_MODE_READ, root_dir, NULL, in rv_init_interface() 836 tmp = rv_create_file("enabled_monitors", RV_MODE_WRITE, root_dir, NULL, in rv_init_interface() 841 tmp = rv_create_file("monitoring_on", RV_MODE_WRITE, root_dir, NULL, in rv_init_interface() 845 retval = init_rv_reactors(root_dir); in rv_init_interface() 851 rv_root.root_dir = no_free_ptr(root_dir); in rv_init_interface()
|
| H A D | rv_reactors.c | 441 int init_rv_reactors(struct dentry *root_dir) in init_rv_reactors() argument 446 rv_create_file("available_reactors", RV_MODE_READ, root_dir, in init_rv_reactors() 450 rv_create_file("reacting_on", RV_MODE_WRITE, root_dir, NULL, &reacting_on_fops); in init_rv_reactors()
|
| /linux/kernel/irq/ |
| H A D | debugfs.c | 240 struct dentry *root_dir; in irq_debugfs_init() local 243 root_dir = debugfs_create_dir("irq", NULL); in irq_debugfs_init() 245 irq_domain_debugfs_init(root_dir); in irq_debugfs_init() 247 irq_dir = debugfs_create_dir("irqs", root_dir); in irq_debugfs_init()
|
| /linux/fs/exfat/ |
| H A D | super.c | 361 exfat_chain_set(&ei->dir, sbi->root_dir, 0, ALLOC_FAT_CHAIN); in exfat_read_root() 363 ei->start_clu = sbi->root_dir; in exfat_read_root() 369 ei->hint_stat.clu = sbi->root_dir; in exfat_read_root() 388 ei->i_pos = ((loff_t)sbi->root_dir << 32) | 0xffffffff; in exfat_read_root() 507 sbi->root_dir = le32_to_cpu(p_boot->root_cluster); in exfat_read_boot_sector() 613 exfat_chain_set(root_clu, sbi->root_dir, 0, ALLOC_FAT_CHAIN); in __exfat_fill_super() 632 if (!exfat_test_bitmap(sb, sbi->root_dir)) { in __exfat_fill_super() 634 sbi->root_dir); in __exfat_fill_super() 640 exfat_set_bitmap(sb, sbi->root_dir, false); in __exfat_fill_super()
|
| H A D | nls.c | 750 clu.dir = sbi->root_dir; in exfat_create_upcase_table()
|
| H A D | balloc.c | 144 exfat_chain_set(&clu, sbi->root_dir, 0, ALLOC_FAT_CHAIN); in exfat_load_bitmap()
|
| /linux/tools/perf/ |
| H A D | builtin-buildid-cache.c | 36 char root_dir[PATH_MAX]; in build_id_cache__kcore_buildid() local 39 strlcpy(root_dir, proc_dir, sizeof(root_dir)); in build_id_cache__kcore_buildid() 41 p = strrchr(root_dir, '/'); in build_id_cache__kcore_buildid() 45 return sysfs__snprintf_build_id(root_dir, sbuildid, sbuildid_size); in build_id_cache__kcore_buildid()
|
| /linux/fs/befs/ |
| H A D | super.c | 50 befs_sb->root_dir = fsrun_to_cpu(sb, disk_sb->root_dir); in befs_load_sb()
|
| H A D | befs.h | 55 befs_inode_addr root_dir; member
|
| H A D | befs_fs_types.h | 138 befs_disk_inode_addr root_dir; member
|
| H A D | debug.c | 193 tmp_run = fsrun_to_cpu(sb, sup->root_dir); in befs_dump_super_block()
|
| /linux/tools/perf/scripts/python/ |
| H A D | export-to-postgresql.py | 983 def machine_table(machine_id, pid, root_dir, *x): argument 984 root_dir = toserverstr(root_dir) 985 n = len(root_dir) 987 value = struct.pack(fmt, 3, 8, machine_id, 4, pid, n, root_dir)
|
| /linux/samples/bpf/ |
| H A D | run_cookie_uid_helper_example.sh | 4 root_dir=$local_dir/../..
|
| /linux/tools/testing/selftests/hid/tests/ |
| H A D | base.py | 255 root_dir = (script_dir / "../../../../..").resolve() 256 bpf_dir = root_dir / "drivers/hid/bpf/progs"
|
| /linux/fs/ocfs2/ |
| H A D | ocfs2_trace.h | 1708 TP_PROTO(char *label, char *uuid_str, unsigned long long root_dir, 1710 TP_ARGS(label, uuid_str, root_dir, system_dir, cluster_bits), 1714 __field(unsigned long long, root_dir) 1721 __entry->root_dir = root_dir; 1726 __entry->root_dir, __entry->system_dir, __entry->cluster_bits)
|