Searched refs:dst_path (Results 1 - 12 of 12) sorted by relevance

/external/compiler-rt/test/asan/android_commands/
H A Dandroid_common.py26 dst_path = os.path.join(ANDROID_TMPDIR, os.path.basename(path))
27 tmp_path = dst_path + '.push'
29 adb(['shell', 'cp "%s" "%s" 2>&1' % (tmp_path, dst_path)])
/external/chromium_org/tools/telemetry/telemetry/util/
H A Dbootstrap.py71 def Traverse(self, src_path, dst_path):
75 dst_path.
82 if not os.path.exists(os.path.dirname(dst_path)):
83 logging.info('Creating %s', os.path.dirname(dst_path))
84 os.makedirs(os.path.dirname(dst_path))
85 if os.path.isfile(dst_path):
86 logging.info('Skipping %s', dst_path)
88 logging.info('Saving %s to %s', self.root_url + src_path, dst_path)
89 urllib.urlretrieve(self.root_url + src_path, dst_path)
94 os.path.join(dst_path, subdi
[all...]
/external/lldb/source/API/
H A DSBFileSpec.cpp87 SBFileSpec::ResolvePath (const char *src_path, char *dst_path, size_t dst_len) argument
89 return lldb_private::FileSpec::Resolve (src_path, dst_path, dst_len);
125 SBFileSpec::GetPath (char *dst_path, size_t dst_len) const argument
129 uint32_t result = m_opaque_ap->GetPath (dst_path, dst_len);
132 log->Printf ("SBFileSpec(%p)::GetPath (dst_path=\"%.*s\", dst_len=%" PRIu64 ") => %u",
133 m_opaque_ap.get(), result, dst_path, (uint64_t)dst_len, result);
135 if (result == 0 && dst_path && dst_len > 0)
136 *dst_path = '\0';
/external/lldb/scripts/Python/interface/
H A DSBFileSpec.i62 GetPath (char *dst_path, size_t dst_len) const;
65 ResolvePath (const char *src_path, char *dst_path, size_t dst_len);
/external/lldb/include/lldb/API/
H A DSBFileSpec.h49 GetPath (char *dst_path, size_t dst_len) const;
52 ResolvePath (const char *src_path, char *dst_path, size_t dst_len);
/external/compiler-rt/lib/sanitizer_common/scripts/
H A Dsancov.py120 dst_path = module_path + '.' + os.path.basename(path)[:-4]
121 print "writing %d PCs to %s" % (len(pc_list), dst_path)
124 with open(dst_path, 'ab') as f2:
/external/lldb/include/lldb/Host/
H A DFileSpec.h606 /// to \a dst_path. Note if the path pointed to by \a src_path does not
607 /// exist, the contents of \a src_path will be copied to \a dst_path
613 /// @param[in] dst_path
617 /// Size of the buffer pointed to by dst_path.
622 /// be written to \a dst_path, but the actual required length will still be returned.
625 Resolve (const char *src_path, char *dst_path, size_t dst_len);
629 /// to \a dst_path. Note, \a src_path can contain other path components after the
631 /// will also be copied over to \a dst_path.
636 /// @param[in] dst_path
640 /// Size of the buffer pointed to by dst_path
[all...]
/external/lldb/source/Host/common/
H A DFileSpec.cpp71 // writes the result into dst_path.
73 // Otherwise returns the number of characters copied into dst_path. If the return
76 FileSpec::ResolveUsername (const char *src_path, char *dst_path, size_t dst_len) argument
87 // If there's no ~, then just copy src_path straight to dst_path (they may be the same string...)
93 ::bcopy (src_path, dst_path, dst_len - 1);
94 dst_path[dst_len] = '\0';
97 ::bcopy (src_path, dst_path, len + 1);
142 return ::snprintf (dst_path, dst_len, "%s%s", home_dir, remainder);
145 return ::snprintf (dst_path, dst_len, "%s", src_path);
185 FileSpec::Resolve (const char *src_path, char *dst_path, size_ argument
[all...]
/external/chromium_org/native_client_sdk/src/build_tools/
H A Dgenerate_make.py181 dst_path = os.path.dirname(dst_file)
182 if not os.path.exists(dst_path):
183 buildbot_common.MakeDir(dst_path)
/external/chromium_org/third_party/android_crazy_linker/src/tests/
H A Dtest_util.h231 String dst_path; local
232 dst_path.Format("%s/%s", dst_file_dir, dst_file_name);
234 dst_file.Open(dst_path.c_str(), "wb");
245 dst_path.c_str());
/external/chromium_org/cloud_print/virtual_driver/win/install/
H A Dsetup.cc239 base::FilePath dst_path = destination.Append(kDependencyList[i]); local
240 if (!base::PathExists(dst_path)) {
244 base::CopyFile(src_path, dst_path);
/external/chromium_org/chrome/tools/build/win/
H A Dcreate_installer_archive.py122 dst_path = os.path.join(dst_dir, os.path.basename(src_path))
123 if not os.path.exists(dst_path):

Completed in 244 milliseconds