/Linux-v4.19/drivers/uwb/ |
D | uwb-debug.c | 69 static struct dentry *root_dir; variable 298 if (root_dir) { in uwb_dbg_add_rc() 300 root_dir); in uwb_dbg_add_rc() 333 if (root_dir) { in uwb_dbg_del_rc() 347 root_dir = debugfs_create_dir("uwb", NULL); in uwb_dbg_init() 355 debugfs_remove(root_dir); in uwb_dbg_exit() 366 if (root_dir && rc->dbg && rc->dbg->root_d && pal->name) in uwb_dbg_create_pal_dir()
|
/Linux-v4.19/kernel/irq/ |
D | debugfs.c | 255 struct dentry *root_dir; in irq_debugfs_init() local 258 root_dir = debugfs_create_dir("irq", NULL); in irq_debugfs_init() 259 if (!root_dir) in irq_debugfs_init() 262 irq_domain_debugfs_init(root_dir); in irq_debugfs_init() 264 irq_dir = debugfs_create_dir("irqs", root_dir); in irq_debugfs_init()
|
/Linux-v4.19/tools/perf/ |
D | builtin-buildid-cache.c | 32 char root_dir[PATH_MAX]; in build_id_cache__kcore_buildid() local 35 strlcpy(root_dir, proc_dir, sizeof(root_dir)); in build_id_cache__kcore_buildid() 37 p = strrchr(root_dir, '/'); in build_id_cache__kcore_buildid() 41 return sysfs__sprintf_build_id(root_dir, sbuildid); in build_id_cache__kcore_buildid()
|
/Linux-v4.19/fs/befs/ |
D | super.c | 50 befs_sb->root_dir = fsrun_to_cpu(sb, disk_sb->root_dir); in befs_load_sb()
|
D | befs.h | 55 befs_inode_addr root_dir; member
|
D | befs_fs_types.h | 138 befs_disk_inode_addr root_dir; member
|
D | debug.c | 193 tmp_run = fsrun_to_cpu(sb, sup->root_dir); in befs_dump_super_block()
|
D | linuxvfs.c | 901 root = befs_iget(sb, iaddr2blockno(sb, &(befs_sb->root_dir))); in befs_fill_super()
|
/Linux-v4.19/samples/bpf/ |
D | run_cookie_uid_helper_example.sh | 4 root_dir=$local_dir/../..
|
/Linux-v4.19/tools/perf/util/ |
D | machine.c | 65 int machine__init(struct machine *machine, const char *root_dir, pid_t pid) in machine__init() argument 87 machine->root_dir = strdup(root_dir); in machine__init() 88 if (machine->root_dir == NULL) in machine__init() 112 zfree(&machine->root_dir); in machine__init() 204 zfree(&machine->root_dir); in machine__exit() 235 const char *root_dir) in machines__add() argument 244 if (machine__init(machine, root_dir, pid) != 0) { in machines__add() 306 const char *root_dir = ""; in machines__findnew() local 329 root_dir = path; in machines__findnew() 332 machine = machines__add(machines, pid, root_dir); in machines__findnew() [all …]
|
D | machine.h | 45 char *root_dir; member 147 const char *root_dir); 157 int machine__init(struct machine *machine, const char *root_dir, pid_t pid);
|
D | dso.c | 59 char *root_dir, char *filename, size_t size) in dso__read_binary_type_filename() argument 167 root_dir, dso->long_name); in dso__read_binary_type_filename() 461 char *root_dir = (char *)""; in __open_dso() local 469 root_dir = machine->root_dir; in __open_dso() 472 root_dir, name, PATH_MAX)) in __open_dso() 1288 sprintf(path, "%s/sys/kernel/notes", machine->root_dir); in dso__read_running_kernel_build_id() 1295 const char *root_dir) in dso__kernel_module_get_build_id() argument 1306 root_dir, (int)strlen(name) - 1, name); in dso__kernel_module_get_build_id()
|
D | build-id.h | 17 int sysfs__sprintf_build_id(const char *root_dir, char *sbuild_id);
|
D | dso.h | 249 int dso__kernel_module_get_build_id(struct dso *dso, const char *root_dir); 253 char *root_dir, char *filename, size_t size);
|
D | build-id.c | 104 int sysfs__sprintf_build_id(const char *root_dir, char *sbuild_id) in sysfs__sprintf_build_id() argument 110 if (!root_dir) in sysfs__sprintf_build_id() 111 root_dir = ""; in sysfs__sprintf_build_id() 113 scnprintf(notes, sizeof(notes), "%s/sys/kernel/notes", root_dir); in sysfs__sprintf_build_id()
|
D | symbol.c | 780 machine->root_dir, module); in map_groups__split_kallsyms() 1493 char *root_dir = (char *) ""; in dso__load() local 1558 root_dir = machine->root_dir; in dso__load() 1602 root_dir, name, PATH_MAX)) in dso__load() 1957 sprintf(path, "%s/proc/kallsyms", machine->root_dir); in dso__load_guest_kernel_sym()
|
D | event.c | 341 machine->root_dir, pid, pid); in perf_event__synthesize_mmap_events() 561 machine->root_dir, pid); in __event__synthesize_thread() 795 snprintf(proc_path, sizeof(proc_path), "%s/proc", machine->root_dir); in perf_event__synthesize_threads()
|
D | unwind-libunwind-local.c | 331 machine->root_dir, debuglink, PATH_MAX); in read_unwind_spec_debug_frame()
|
/Linux-v4.19/tools/perf/scripts/python/ |
D | export-to-postgresql.py | 678 def machine_table(machine_id, pid, root_dir, *x): argument 679 n = len(root_dir) 681 value = struct.pack(fmt, 3, 8, machine_id, 4, pid, n, root_dir)
|
/Linux-v4.19/fs/ocfs2/ |
D | ocfs2_trace.h | 1709 TP_PROTO(char *label, char *uuid_str, unsigned long long root_dir, 1711 TP_ARGS(label, uuid_str, root_dir, system_dir, cluster_bits), 1715 __field(unsigned long long, root_dir) 1722 __entry->root_dir = root_dir; 1727 __entry->root_dir, __entry->system_dir, __entry->cluster_bits)
|
/Linux-v4.19/tools/perf/util/scripting-engines/ |
D | trace-event-python.c | 976 tuple_set_string(t, 2, machine->root_dir ? machine->root_dir : ""); in python_export_machine()
|