Home
last modified time | relevance | path

Searched refs:absolute_path (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/libarchive/tar/test/
H A Dtest_option_C_mtree.c45 char *absolute_path = malloc(strlen(testworkdir) + strlen(mtree_file) + 1); in DEFINE_TEST() local
46 strcpy(absolute_path, testworkdir); in DEFINE_TEST()
47 strcat(absolute_path, mtree_file ); in DEFINE_TEST()
50 assertMakeFile(absolute_path, 0777, content); in DEFINE_TEST()
55 p = absolute_path; in DEFINE_TEST()
62 r = systemf("%s -cf %s -C bar @%s >step1.out 2>step1.err", testprog, filename, absolute_path); in DEFINE_TEST()
63 failure("Error invoking %s -cf %s -C bar @%s", testprog, filename, absolute_path); in DEFINE_TEST()
65 r = systemf("%s -cf %s -C bar \"@%s\" >step1.out 2>step1.err", testprog, filename, absolute_path); in DEFINE_TEST()
66 failure("Error invoking %s -cf %s -C bar \"@%s\"", testprog, filename, absolute_path); in DEFINE_TEST()
86 free(absolute_path); in DEFINE_TEST()
/freebsd-12.1/tools/regression/doat/
H A Ddoat.c72 char *absolute_path = NULL; variable
114 absolute_path = (char *)getcwd(NULL, 0); in setup()
115 if (absolute_path == NULL) { in setup()
120 len = strlen(absolute_path); in setup()
121 absolute_path = realloc(absolute_path, in setup()
123 if (absolute_path == NULL) { in setup()
128 absolute_path[len] = '/'; in setup()
129 strcpy(absolute_path + len + 1, relative_path); in setup()
137 strcpy(absolute_file, absolute_path); in setup()
172 abs_fd = open(absolute_path, O_RDONLY); in setup()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.cpp214 llvm::SmallString<64> absolute_path = working_dir.String; in GetMainSourceFile() local
215 llvm::sys::path::append(absolute_path, file_name.String); in GetMainSourceFile()
216 return absolute_path; in GetMainSourceFile()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DFileSystem.cpp229 SmallString<128> absolute_path(path.begin(), path.end()); in Resolve() local