Searched defs:dst_path (Results 1 - 4 of 4) sorted by relevance

/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/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/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/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...]

Completed in 188 milliseconds