HomeSort by: relevance | last modified time | path
    Searched refs:filepath (Results 1 - 9 of 9) sorted by relevancy

  /src/tests/lib/libc/gen/posix_spawn/
t_spawn.c 205 spawn_chdir(const char *dirpath, const char *filepath, enum chdirop operation,
214 if (filepath)
215 empty_outfile(filepath);
286 char chdirpath[PATH_MAX], filepath[PATH_MAX]; local in function:ATF_TC_BODY
290 if (snprintf(filepath, sizeof(filepath), "%s/%s", chdirpath, FILENAME)
291 >= (int)sizeof(filepath))
294 spawn_chdir(chdirpath, filepath, OP_CHDIR, 0);
297 check_success(chdirpath, filepath);
313 char *chdirwd, *filepath; local in function:ATF_TC_BODY
342 char cwd[PATH_MAX], filepath[PATH_MAX]; local in function:ATF_TC_BODY
389 char chdirpath[PATH_MAX], filepath[PATH_MAX]; local in function:ATF_TC_BODY
415 char *chdirwd, *filepath; local in function:ATF_TC_BODY
445 char cwd[PATH_MAX], filepath[PATH_MAX]; local in function:ATF_TC_BODY
    [all...]
  /src/libexec/ld.elf_so/
load.c 114 _rtld_load_object(const char *filepath, int flags)
119 size_t pathlen = strlen(filepath);
122 if (pathlen == obj->pathlen && !strcmp(obj->path, filepath))
134 if ((fd = open(filepath, O_RDONLY)) == -1) {
135 _rtld_error("Cannot open \"%s\"", filepath);
139 _rtld_error("Cannot fstat \"%s\"", filepath);
153 strcmp(_rtld_objself.path, filepath) == 0) {
160 obj = _rtld_map_object(filepath, fd, &sb);
164 _rtld_digest_dynamic(filepath, obj);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common.cc 61 const char *StripPathPrefix(const char *filepath,
63 if (!filepath) return nullptr;
64 if (!strip_path_prefix) return filepath;
65 const char *res = filepath;
66 if (const char *pos = internal_strstr(filepath, strip_path_prefix))
sanitizer_win.cc 413 const char *filepath; member in struct:__sanitizer::__anon1fd216970210::ModuleInfo
437 module_infos[i].filepath = modules[i].full_name();
448 mi.filepath[0] ? mi.filepath : "[no name]");
449 } else if (mi.filepath[0]) {
450 Printf("\t??\?-??? %s\n", mi.filepath);
sanitizer_common.h 205 const char *StripPathPrefix(const char *filepath,
  /src/usr.sbin/rbootd/
rmpproto.c 290 char *filename, filepath[RMPBOOTDATA+1]; local in function:SendBootRepl
318 * Copy file name to `filepath' string, and into reply packet.
320 dst1 = filepath;
341 if ((filename = strrchr(filepath,'/')) != NULL)
344 filename = filepath;
  /src/usr.sbin/makefs/v7fs/
v7fs_populate.c 134 const char *filepath)
167 if ((fd = open(filepath, O_RDONLY)) == -1) {
  /src/sys/arch/hpc/stand/hpcboot/menu/
menu.cpp 529 TCHAR filepath[MAX_PATH]; local in function:ConsoleTabWindow::_open_log_file
537 wsprintf(filepath, TEXT("\\%s\\%s"), path, filename);
538 _logfile = CreateFile(filepath, GENERIC_WRITE, 0, 0,
543 wsprintf(path, TEXT("log file is %s\n"), filepath);
  /src/usr.sbin/sysinst/
partman.c 103 char filepath[STRSIZE]; member in struct:vnd_desc
937 if (strlen(dev_ptr->filepath) < 1)
941 pm_fmt_disk_line(m->mw, dev, dev_ptr->filepath,
944 pm_fmt_disk_line(m->mw, dev, dev_ptr->filepath,
982 msg_string(MSG_vnd_path_fmt), dev_ptr->filepath);
1051 dev_ptr->filepath, dev_ptr->filepath, STRSIZE);
1052 if (dev_ptr->filepath[0] != '/') {
1053 strlcpy(buf, dev_ptr->filepath, MOUNTLEN);
1054 snprintf(dev_ptr->filepath, MOUNTLEN, "/%s"
    [all...]

Completed in 19 milliseconds