/bionic/libc/kernel/tools/ |
clean_header.py | 117 dst_path = "arch-%s/asm/%s" % m.groups() 126 dst_path = src_path 133 dst_path = "common/" + src_path 135 dst_path = os.path.normpath( kernel_cleaned_path + "/" + dst_path ) 161 return dst_path, out.get() 207 dst_path, newdata = cleanupFile(path,kernel_original_path) 217 dst_path, newdata = cleanupFile(path,kernel_original_path) 218 if not dst_path: 221 b.readFile( dst_path ) [all...] |
update_all.py | 69 dst_path, newdata = clean_header.cleanupFile(path, original_dir) 70 if not dst_path: 73 b.readFile( dst_path ) 74 r = b.editFile( dst_path, newdata ) 82 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-trace/trace-viewer/hooks/ |
install.py | 12 def __init__(self, dst_path, src_path): 13 self.dst_path = dst_path 18 full_dst_path = os.path.join(_TOP_PATH, self.dst_path)
|
/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 | 165 dst_path = module_path + '.' + os.path.basename(path)[:-4] 166 print >> sys.stderr, "%s: writing %d PCs to %s" % (prog_name, len(pc_list), dst_path) 169 with open(dst_path, 'ab') as f2:
|
/ndk/sources/android/crazy_linker/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());
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Path_Delegate.java | 426 /*package*/ static void native_offset(long nPath, float dx, float dy, long dst_path) { 433 Path_Delegate dstDelegate = sManager.getDelegate(dst_path); 456 long dst_path) { 467 // this can be null if dst_path is 0 468 Path_Delegate dstDelegate = sManager.getDelegate(dst_path);
|
/external/pdfium/core/src/fxge/skia/ |
fx_skia_device.cpp | 347 SkPath dst_path; local 348 SkRasterizeStroke(spaint, &dst_path, path_data.m_PathData, pObject2Device, pGraphState, 1, FALSE, 0); 350 SetClipMask(dst_path, &spaint); 431 SkPath dst_path; local 432 SkRasterizeStroke(spaint, &dst_path, path_data.m_PathData, &matrix2, pGraphState, matrix1.a, FALSE, 0); 436 if (!RenderRasterizerSkia(dst_path, spaint, rect, stroke_color, fill_mode & FXFILL_FULLCOVER, FALSE, fill_flag, pIccTransform, FALSE))
|
/frameworks/base/graphics/java/android/graphics/ |
Path.java | 825 private static native void native_offset(long nPath, float dx, float dy, long dst_path); 828 private static native void native_transform(long nPath, long matrix, long dst_path);
|