HomeSort by: relevance | last modified time | path
    Searched refs:new_path (Results 1 - 25 of 31) sorted by relevancy

1 2

  /src/external/gpl2/lvm2/dist/tools/
vgrename.c 77 char old_path[NAME_LEN], new_path[NAME_LEN]; local
159 sprintf(new_path, "%s%s", dev_dir, vg_name_new);
162 log_verbose("Renaming \"%s\" to \"%s\"", old_path, new_path);
170 old_path, new_path);
  /src/external/ibm-public/postfix/dist/src/fsstone/
fsstone.c 69 char new_path[BUFSIZ]; local
72 sprintf(new_path, "%06d", new);
74 if (rename(old_path, new_path))
75 msg_fatal("rename %s to %s: %m", old_path, new_path);
  /src/external/apache2/llvm/dist/libcxx/utils/libcxx/test/
target_info.py 38 def add_path(self, dest_env, new_path):
39 if not new_path:
42 dest_env['PATH'] = new_path
45 dest_env['PATH'] = '%s%s%s' % (new_path, split_char,
  /src/external/ibm-public/postfix/dist/src/global/
mail_stream.c 608 VSTRING *new_path = vstring_alloc(100); local
610 (void) mail_queue_path(new_path, new_queue, info->id);
612 vstream_control(info->stream, CA_VSTREAM_CTL_PATH(STR(new_path)),
615 if (sane_rename(saved_path, STR(new_path)) == 0
616 || (mail_queue_mkdirs(STR(new_path)) == 0
617 && sane_rename(saved_path, STR(new_path)) == 0)) {
627 vstring_free(new_path);
  /src/external/gpl3/gdb/dist/contrib/
mklog.py 178 new_path = file.target_file[2:]
181 if new_path.startswith(changelog):
182 new_path = new_path[len(changelog):].lstrip('/')
183 out += '\t* %s: ...here.\n' % (new_path)
  /src/external/gpl3/gdb.old/dist/contrib/
mklog.py 178 new_path = file.target_file[2:]
181 if new_path.startswith(changelog):
182 new_path = new_path[len(changelog):].lstrip('/')
183 out += '\t* %s: ...here.\n' % (new_path)
  /src/external/apache2/llvm/dist/clang/utils/analyzer/
SATestBenchmark.py 77 def compare(old_path: str, new_path: str, plot_file: str):
83 new = _load(new_path)
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_symbolizer_win.cpp 285 char *new_path = (char *)InternalAlloc(kMaxPathLength); local
286 SubstituteForFlagValue(user_path, new_path, kMaxPathLength);
287 user_path = new_path;
sanitizer_symbolizer_posix_libcdep.cpp 419 char *new_path = (char *)InternalAlloc(kMaxPathLength); local
420 SubstituteForFlagValue(path, new_path, kMaxPathLength);
421 path = new_path;
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_symbolizer_win.cpp 289 char *new_path = (char *)InternalAlloc(kMaxPathLength); local
290 SubstituteForFlagValue(user_path, new_path, kMaxPathLength);
291 user_path = new_path;
sanitizer_symbolizer_posix_libcdep.cpp 405 char *new_path = (char *)InternalAlloc(kMaxPathLength); local
406 SubstituteForFlagValue(path, new_path, kMaxPathLength);
407 path = new_path;
  /src/external/mit/libuv/dist/src/unix/
fs.c 100 req->new_path = NULL; \
123 req->new_path = new_path; \
128 new_path_len = strlen(new_path) + 1; \
132 req->new_path = req->path + path_len; \
134 memcpy((void*) req->new_path, new_path, new_path_len); \
1264 req->new_path,
1420 uv_fs_unlink(NULL, &fs_req, req->new_path, NULL);
1712 X(LINK, link(req->path, req->new_path));
    [all...]
  /src/external/ibm-public/postfix/dist/src/postsuper/
postsuper.c 844 VSTRING *new_path = vstring_alloc(10); local
878 mail_queue_path(new_path, *log_qpp, STR(new_id));
879 vstring_strcat(new_path, SUFFIX);
880 postrename(STR(old_path), STR(new_path));
887 mail_queue_path(new_path, actual_queue, STR(new_id));
888 vstring_strcat(new_path, SUFFIX);
889 ret = postrename(actual_path, STR(new_path));
895 vstring_free(new_path);
  /src/crypto/dist/ipsec-tools/src/racoon/
remoteconf.c 1077 vchar_t *new_path; local
1086 if ((new_path = vmalloc(len)) == NULL) {
1092 new_path->v[0] = '\0';
1093 (void)strlcat(new_path->v, script_dir, len);
1094 (void)strlcat(new_path->v, "/", len);
1095 (void)strlcat(new_path->v, path->v, len);
1098 path = new_path;
  /src/external/mit/libuv/dist/src/win/
fs.c 323 const char* new_path, const int copy_path) {
331 /* new_path can only be set if path is also set. */
332 assert(new_path == NULL || path != NULL);
346 if (new_path != NULL) {
347 new_pathw_len = uv_wtf8_length_as_utf16(new_path);
376 if (new_path != NULL) {
377 uv_wtf8_to_utf16(new_path, pos, new_pathw_len);
2708 const WCHAR* new_path) {
2825 if (!CreateDirectoryW(new_path, NULL)) {
2832 handle = CreateFileW(new_path,
    [all...]
  /src/libexec/ftpd/
cmds.c 849 discover_path(char *last_path, const char *new_path)
859 if (new_path[0] != '/') {
863 (void)strlcat(tp, new_path, MAXPATHLEN);
965 (void)strlcat(last_path, new_path, MAXPATHLEN);
  /src/external/bsd/kyua-cli/dist/engine/
test_case_test.cpp 211 const fs::path new_path = _root / _binary_path; local
213 ::symlink(src_path.c_str(), new_path.c_str()) != -1);
338 const fs::path new_path = _root / _binary_path; local
340 ::symlink(src_path.c_str(), new_path.c_str()) != -1);
  /src/external/gpl3/gdb/dist/gdbserver/
win32-low.cc 505 char *orig_path, *new_path, *path_ptr; local
529 new_path = (char *) alloca (size);
531 cygwin_conv_path_list (CCP_POSIX_TO_WIN_A, path_ptr, new_path, size);
532 setenv ("PATH", new_path, 1);
  /src/external/gpl3/gdb.old/dist/gdbserver/
win32-low.cc 524 char *orig_path, *new_path, *path_ptr; local
548 new_path = (char *) alloca (size);
550 cygwin_conv_path_list (CCP_POSIX_TO_WIN_A, path_ptr, new_path, size);
551 setenv ("PATH", new_path, 1);
  /src/external/mit/libuv/dist/include/uv/
unix.h 365 const char *new_path; \
  /src/external/gpl3/gcc/dist/contrib/
mklog.py 281 new_path = get_rel_path_if_prefixed(file.target_file[2:],
283 out += f'\t* {new_path}: ...here.\n'
  /src/external/gpl3/gcc.old/dist/contrib/
mklog.py 254 new_path = get_rel_path_if_prefixed(file.target_file[2:],
256 out += f'\t* {new_path}: ...here.\n'
  /src/external/mit/libuv/dist/include/
uv.h 1512 const char* new_path,
1562 const char* new_path,
1621 const char* new_path,
1639 const char* new_path,
  /src/external/gpl3/binutils/dist/gprofng/src/
DbeSession.cc 1046 char *new_path, buf[MAXPATHLEN], name[MAXPATHLEN]; local
1053 new_path = dbe_strdup (path);
1054 new_path = canonical_path (new_path);
1055 exp_list->append (new_path);
1064 new_path = dbe_strdup (name);
1065 new_path = canonical_path (new_path);
1066 exp_list->append (new_path);
  /src/external/gpl3/binutils.old/dist/gprofng/src/
DbeSession.cc 1046 char *new_path, buf[MAXPATHLEN], name[MAXPATHLEN]; local
1053 new_path = dbe_strdup (path);
1054 new_path = canonical_path (new_path);
1055 exp_list->append (new_path);
1064 new_path = dbe_strdup (name);
1065 new_path = canonical_path (new_path);
1066 exp_list->append (new_path);

Completed in 66 milliseconds

1 2