HomeSort by relevance Sort by last modified time
    Searched refs:dst_path (Results 1 - 14 of 14) sorted by null

  /bionic/libc/kernel/tools/
clean_header.py 122 dst_path = "arch-%s/asm/%s" % m.groups()
131 dst_path = src_path
138 dst_path = "common/" + src_path
140 dst_path = os.path.normpath( kernel_cleaned_path + "/" + dst_path )
167 return dst_path, out.get()
214 dst_path, newdata = cleanupFile(path,kernel_original_path)
224 dst_path, newdata = cleanupFile(path,kernel_original_path)
225 if not dst_path:
228 b.readFile( dst_path )
    [all...]
update_all.py 74 dst_path, newdata = clean_header.cleanupFile(path, original_dir)
75 if not dst_path:
78 b.readFile( dst_path )
79 r = b.editFile( dst_path, newdata )
87 str = "cleaning: %-*s -> %-*s (%s)" % ( 35, "<original>" + path[len(original_dir):], 35, dst_path, state )
  /external/compiler-rt/test/asan/android_commands/
android_common.py 26 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/
bootstrap.py 71 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, subdir)
    [all...]
  /external/lldb/source/API/
SBFileSpec.cpp 87 SBFileSpec::ResolvePath (const char *src_path, char *dst_path, size_t dst_len)
89 return lldb_private::FileSpec::Resolve (src_path, dst_path, dst_len);
125 SBFileSpec::GetPath (char *dst_path, size_t dst_len) const
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/include/lldb/API/
SBFileSpec.h 49 GetPath (char *dst_path, size_t dst_len) const;
52 ResolvePath (const char *src_path, char *dst_path, size_t dst_len);
  /external/lldb/scripts/Python/interface/
SBFileSpec.i 62 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/Host/
FileSpec.h 606 /// 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/
FileSpec.cpp 71 // 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)
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_t dst_len
    [all...]
  /external/compiler-rt/lib/sanitizer_common/scripts/
sancov.py 120 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/chromium_org/native_client_sdk/src/build_tools/
generate_make.py 181 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/
test_util.h 231 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/
setup.cc 239 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/
create_installer_archive.py 122 dst_path = os.path.join(dst_dir, os.path.basename(src_path))
123 if not os.path.exists(dst_path):

Completed in 1188 milliseconds