Searched refs:absolute_path (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/libarchive/tar/test/
H A Dtest_option_C_mtree.c45 char *absolute_path = malloc(strlen(testworkdir) + strlen(mtree_file) + 1); local
46 strcpy(absolute_path, testworkdir);
47 strcat(absolute_path, mtree_file );
50 assertMakeFile(absolute_path, 0777, content);
55 p = absolute_path;
62 r = systemf("%s -cf %s -C bar @%s >step1.out 2>step1.err", testprog, filename, absolute_path);
63 failure("Error invoking %s -cf %s -C bar @%s", testprog, filename, absolute_path);
65 r = systemf("%s -cf %s -C bar \"@%s\" >step1.out 2>step1.err", testprog, filename, absolute_path);
66 failure("Error invoking %s -cf %s -C bar \"@%s\"", testprog, filename, absolute_path);
86 free(absolute_path);
[all...]
/freebsd-11-stable/tools/regression/doat/
H A Ddoat.c72 char *absolute_path = NULL; variable
114 absolute_path = (char *)getcwd(NULL, 0);
115 if (absolute_path == NULL) {
120 len = strlen(absolute_path);
121 absolute_path = realloc(absolute_path,
123 if (absolute_path == NULL) {
128 absolute_path[len] = '/';
129 strcpy(absolute_path + len + 1, relative_path);
131 absolute_file = malloc(strlen(absolute_path)
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DFileSpec.cpp310 llvm::Optional<FileSpec::Style> FileSpec::GuessPathStyle(llvm::StringRef absolute_path) { argument
311 if (absolute_path.startswith("/"))
313 if (absolute_path.startswith(R"(\\)"))
315 if (absolute_path.size() > 3 && llvm::isAlpha(absolute_path[0]) &&
316 absolute_path.substr(1, 2) == R"(:\)")
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.cpp222 llvm::SmallString<64> absolute_path = working_dir.String;
223 llvm::sys::path::append(absolute_path, file_name.String);
224 return absolute_path;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFileSpec.h197 static llvm::Optional<Style> GuessPathStyle(llvm::StringRef absolute_path);
H A DReproducer.h369 FileSpec absolute_path = local
371 file = absolute_path.GetPath();

Completed in 209 milliseconds