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.c700 char full_path[64]; in read_sysfs_netdev_hex_int() local
702 snprintf(full_path, sizeof(full_path), "/sys/class/net/%s/device/%s", in read_sysfs_netdev_hex_int()
705 return read_sysfs_hex_int(full_path); in read_sysfs_netdev_hex_int()
/tools/perf/util/
Dannotate.h85 full_path, member
Dannotate.c2546 if (opts->full_path) in symbol__annotate_printf()
2969 srcline_full_filename = annotate_opts.full_path; in symbol__tty_annotate2()
3005 srcline_full_filename = annotate_opts.full_path; in symbol__tty_annotate()
/tools/net/ynl/
Dynl-gen-c.py2317 def find_kernel_root(full_path): argument
2320 sub_path = os.path.join(os.path.basename(full_path), sub_path)
2321 full_path = os.path.dirname(full_path)
2322 maintainers = os.path.join(full_path, "MAINTAINERS")
2324 return full_path, sub_path[:-1]
/tools/perf/
Dbuiltin-annotate.c561 OPT_BOOLEAN('P', "full-paths", &annotate_opts.full_path, in cmd_annotate()
/tools/lib/bpf/
Dlibbpf.c11265 char full_path[PATH_MAX]; in bpf_program__attach_uprobe_multi() local
11308 err = resolve_full_path(path, full_path, sizeof(full_path)); in bpf_program__attach_uprobe_multi()
11314 path = full_path; in bpf_program__attach_uprobe_multi()
11375 char full_path[PATH_MAX]; in bpf_program__attach_uprobe_opts() local
11396 full_path[0] = '\0'; in bpf_program__attach_uprobe_opts()
11397 libbpf_strlcpy(full_path, binary_path, in bpf_program__attach_uprobe_opts()
11398 min(sizeof(full_path), (size_t)(archive_sep - binary_path + 1))); in bpf_program__attach_uprobe_opts()
11399 archive_path = full_path; in bpf_program__attach_uprobe_opts()
11402 err = resolve_full_path(binary_path, full_path, sizeof(full_path)); in bpf_program__attach_uprobe_opts()
11408 binary_path = full_path; in bpf_program__attach_uprobe_opts()