HomeSort by relevance Sort by last modified time
    Searched refs:new_path (Results 1 - 25 of 51) sorted by null

1 2 3

  /bionic/libc/bionic/
link.cpp 32 int link(const char* old_path, const char* new_path) {
33 return linkat(AT_FDCWD, old_path, AT_FDCWD, new_path, 0);
rename.cpp 32 int rename(const char* old_path, const char* new_path) {
33 return renameat(AT_FDCWD, old_path, AT_FDCWD, new_path);
symlink.cpp 32 int symlink(const char* old_path, const char* new_path) {
33 return symlinkat(old_path, AT_FDCWD, new_path);
  /external/ltp/testcases/kernel/fs/mongo/
mongo_slinks.c 23 char *new_path; local
41 new_path = strtok(NULL, "\t\n ");
43 if (!old_path || !new_path) /* empty lines at the end of file */
47 if (symlink(old_path, new_path) != 0) {
52 if (lstat(new_path, &statbuf) == -1) {
59 new_path);
69 num = readlink(new_path, buffer, size);
  /external/webrtc/webrtc/base/
fileutils.h 150 // This moves a file from old_path to new_path, where "old_path" is a
156 const Pathname &new_path) = 0;
158 // This moves a directory from old_path to new_path, where "old_path" is a
163 virtual bool MoveFile(const Pathname &old_path, const Pathname &new_path) = 0;
165 // This attempts to move whatever is located at old_path to new_path,
167 bool MoveFileOrFolder(const Pathname &old_path, const Pathname &new_path) {
169 return MoveFile(old_path, new_path);
171 return MoveFolder(old_path, new_path);
175 // This copies a file from old_path to new_path. This method ASSERTs and
178 virtual bool CopyFile(const Pathname &old_path, const Pathname &new_path) = 0
    [all...]
win32filesystem.h 42 // This moves a file from old_path to new_path. If the new path is on a
46 virtual bool MoveFile(const Pathname &old_path, const Pathname &new_path);
48 // Moves a folder from old_path to new_path. If the new path is on a different
51 virtual bool MoveFolder(const Pathname &old_path, const Pathname &new_path);
55 virtual bool CopyFile(const Pathname &old_path, const Pathname &new_path);
unixfilesystem.h 64 // This moves a file from old_path to new_path, where "file" can be a plain
67 bool MoveFile(const Pathname& old_path, const Pathname& new_path) override;
68 bool MoveFolder(const Pathname& old_path, const Pathname& new_path) override;
73 bool CopyFile(const Pathname& old_path, const Pathname& new_path) override;
unixfilesystem.cc 223 const Pathname &new_path) {
229 << " to " << new_path.pathname();
230 if (rename(old_path.pathname().c_str(), new_path.pathname().c_str()) != 0) {
233 if (!CopyFile(old_path, new_path))
242 const Pathname &new_path) {
248 << " to " << new_path.pathname();
249 if (rename(old_path.pathname().c_str(), new_path.pathname().c_str()) != 0) {
252 if (!CopyFolder(old_path, new_path))
268 const Pathname &new_path) {
270 << " to " << new_path.pathname()
    [all...]
win32filesystem.cc 232 const Pathname &new_path) {
238 << " to " << new_path.pathname();
240 ToUtf16(new_path.pathname()).c_str()) != 0;
244 const Pathname &new_path) {
250 << " to " << new_path.pathname();
252 ToUtf16(new_path.pathname()).c_str()) == 0) {
257 if (!CopyFolder(old_path, new_path))
292 const Pathname &new_path) {
294 ToUtf16(new_path.pathname()).c_str(), TRUE) != 0;
fileutils.cc 157 const Pathname &new_path) {
161 new_dir.SetFolder(new_path.pathname());
176 dest.SetFolder(new_path.pathname());
fileutils_mock.h 177 bool MoveFolder(const Pathname &old_path, const Pathname &new_path) {
181 bool MoveFile(const Pathname &old_path, const Pathname &new_path) {
185 bool CopyFile(const Pathname &old_path, const Pathname &new_path) {
  /external/ltp/testcases/kernel/fs/iso9660/
isofs.sh 61 local new_path="$cur_path/subdir_$i"
63 mkdir -p "$new_path"
65 dd if=/dev/urandom of="$new_path/file" bs=1024 count=100 &> /dev/null
67 gen_fs_tree "$new_path" $((cur_depth + 1))
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.current_path/
current_path.pass.cpp 55 const path new_path = StaticEnv::Dir; local
56 current_path(new_path);
57 TEST_CHECK(current_path() == new_path);
  /external/syslinux/core/fs/
fs.c 259 char *new_path; local
276 new_path = malloc(new_len);
277 if (!new_path)
280 copied = this_fs->fs_ops->readlink(inode, new_path);
283 new_path[copied] = '\0';
284 dprintf("searchdir: Symlink: %s\n", new_path);
287 new_path[copied] = '/';
288 strcpy(new_path + copied + 1, next_inode_name);
289 dprintf("searchdir: New path: %s\n", new_path);
293 path = next_inode_name = new_path;
    [all...]
  /external/ltp/testcases/kernel/controllers/cgroup_fj/
cgroup_fj_stress.sh 119 local new_path="$cur_path/$i"
120 attach_task "$new_path" $((cur_depth+1)) "$ppid"
  /external/skia/infra/bots/
win_toolchain_utils.py 56 def resolve(win_toolchain_json, new_path):
58 _replace_in_file(win_toolchain_json, PLACEHOLDER, new_path)
  /external/libchrome/base/files/
file_util.cc 250 FilePath new_path; local
252 new_path = path.InsertBeforeExtensionASCII(StringPrintf(" (%d)", count));
253 if (!PathExists(new_path) &&
254 (!have_suffix || !PathExists(FilePath(new_path.value() + suffix)))) {
file_path.cc 310 FilePath new_path(path_);
311 new_path.StripTrailingSeparatorsInternal();
317 StringType::size_type letter = FindDriveLetter(new_path.path_);
320 new_path.path_.find_last_of(kSeparators, StringType::npos,
324 new_path.path_.resize(letter + 1);
327 new_path.path_.resize(letter + 2);
329 IsSeparator(new_path.path_[letter + 1])) {
332 new_path.path_.resize(letter + 3);
335 new_path.path_.resize(last_separator);
338 new_path.StripTrailingSeparatorsInternal()
    [all...]
  /external/curl/lib/
cookie.c 226 char *new_path = strdup(cookie_path); local
227 if(!new_path)
231 len = strlen(new_path);
232 if(new_path[0] == '\"') {
233 memmove((void *)new_path, (const void *)(new_path + 1), len);
236 if(len && (new_path[len - 1] == '\"')) {
237 new_path[len - 1] = 0x0;
242 if(new_path[0] != '/') {
244 free(new_path);
    [all...]
  /system/extras/simpleperf/scripts/
app_profiler.py 245 def _is_lib_better(self, new_path, old_path):
246 """ Return true if new_path is more likely to be used on device. """
250 result1 = new_path.find('armeabi-v7a/') != -1
255 result1 = new_path.find(arch_dir) != -1
259 result1 = new_path.find('obj/') != -1
  /external/autotest/client/cros/audio/
audio_test_data.py 69 new_path = '/tmp/test_raw_48000_S32_LE_2.raw'
86 new_path = (original_path_without_ext + '_' +
114 path_dst=new_path,
123 new_test_data = AudioTestData(path=new_path,
  /external/ipsec-tools/src/racoon/
remoteconf.c 638 vchar_t *new_path; local
650 if ((new_path = vmalloc(len)) == NULL) {
656 new_path->v[0] = '\0';
657 (void)strlcat(new_path->v, script_dir, len);
658 (void)strlcat(new_path->v, "/", len);
659 (void)strlcat(new_path->v, path->v, len);
662 path = new_path;
  /external/opencv/otherlibs/highgui/
loadsave.cpp 129 char* new_path = new char[new_size];
133 memcpy( new_path, m_path, m_len );
137 m_path = new_path;
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_dumper.cc 453 char new_path[NAME_MAX]; local
456 if (!SafeReadLink(exe_link, new_path))
458 if (my_strcmp(path, new_path) != 0)
465 sys_stat(new_path, &new_path_stat) == 0 &&
  /external/v8/src/base/debug/
stack_trace_win.cc 84 std::wstring new_path(std::wstring(symbols_path.get()) + L";" +
86 if (!SymSetSearchPathW(GetCurrentProcess(), new_path.c_str())) {

Completed in 3317 milliseconds

1 2 3