Home
last modified time | relevance | path

Searched refs:full_path (Results 1 – 8 of 8) sorted by relevance

/tools/testing/selftests/filesystems/incfs/
Dutils.c352 char *full_path; in delete_dir_tree() local
357 full_path = concat_file_name(dir_path, dp->d_name); in delete_dir_tree()
359 result = delete_dir_tree(full_path); in delete_dir_tree()
361 result = unlink(full_path); in delete_dir_tree()
362 free(full_path); in delete_dir_tree()
/tools/testing/selftests/filesystems/fuse/
Dbpf_loader.c535 char *full_path; in delete_dir_tree() local
540 full_path = concat_file_name(dir_path, dp->d_name); in delete_dir_tree()
542 result = delete_dir_tree(full_path, true); in delete_dir_tree()
544 result = unlink(full_path); in delete_dir_tree()
545 free(full_path); in delete_dir_tree()
/tools/bpf/bpftool/
Dcommon.c701 char full_path[64]; in read_sysfs_netdev_hex_int() local
703 snprintf(full_path, sizeof(full_path), "/sys/class/net/%s/device/%s", in read_sysfs_netdev_hex_int()
706 return read_sysfs_hex_int(full_path); in read_sysfs_netdev_hex_int()
/tools/perf/util/
Dannotate.h42 full_path, member
Dannotate.c1197 if (opts->full_path) in symbol__annotate_printf()
1622 srcline_full_filename = annotate_opts.full_path; in symbol__tty_annotate2()
1657 srcline_full_filename = annotate_opts.full_path; in symbol__tty_annotate()
/tools/net/ynl/
Dynl-gen-c.py2612 def find_kernel_root(full_path): argument
2615 sub_path = os.path.join(os.path.basename(full_path), sub_path)
2616 full_path = os.path.dirname(full_path)
2617 maintainers = os.path.join(full_path, "MAINTAINERS")
2619 return full_path, sub_path[:-1]
/tools/perf/
Dbuiltin-annotate.c737 OPT_BOOLEAN('P', "full-paths", &annotate_opts.full_path, in cmd_annotate()
/tools/lib/bpf/
Dlibbpf.c11987 char full_path[PATH_MAX]; in bpf_program__attach_uprobe_multi() local
12037 err = resolve_full_path(path, full_path, sizeof(full_path)); in bpf_program__attach_uprobe_multi()
12043 path = full_path; in bpf_program__attach_uprobe_multi()
12103 char full_path[PATH_MAX]; in bpf_program__attach_uprobe_opts() local
12124 full_path[0] = '\0'; in bpf_program__attach_uprobe_opts()
12125 libbpf_strlcpy(full_path, binary_path, in bpf_program__attach_uprobe_opts()
12126 min(sizeof(full_path), (size_t)(archive_sep - binary_path + 1))); in bpf_program__attach_uprobe_opts()
12127 archive_path = full_path; in bpf_program__attach_uprobe_opts()
12130 err = resolve_full_path(binary_path, full_path, sizeof(full_path)); in bpf_program__attach_uprobe_opts()
12136 binary_path = full_path; in bpf_program__attach_uprobe_opts()