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

  /bionic/libc/kernel/tools/
clean_header.py 83 src_path = path
85 if not os.path.exists(src_path):
91 if not os.path.isfile(src_path):
97 if os.path.commonprefix( [ src_path, original_path ] ) != original_path:
103 src_path = src_path[len(original_path):]
104 if len(src_path) > 0 and src_path[0] == '/':
105 src_path = src_path[1:
    [all...]
  /external/chromium-trace/trace-viewer/hooks/
install.py 12 def __init__(self, dst_path, src_path):
14 self.src_path = src_path
17 full_src_path = os.path.join(_TOP_PATH, self.src_path)
35 os.path.basename(self.src_path), full_dst_path))
45 os.path.basename(self.src_path),
  /external/lldb/source/Host/common/
FileSpec.cpp 76 FileSpec::ResolveUsername (const char *src_path, char *dst_path, size_t dst_len)
78 if (src_path == NULL || src_path[0] == '\0')
87 // If there's no ~, then just copy src_path straight to dst_path (they may be the same string...)
88 if (src_path[0] != '~')
90 size_t len = strlen (src_path);
93 ::bcopy (src_path, dst_path, dst_len - 1);
97 ::bcopy (src_path, dst_path, len + 1);
102 const char *first_slash = ::strchr (src_path, '/');
108 user_name = src_path + 1
    [all...]
  /external/lldb/include/lldb/API/
SBFileSpec.h 52 ResolvePath (const char *src_path, char *dst_path, size_t dst_len);
  /external/owasp/sanitizer/tools/
cut_release.py 100 def copy_directory_structure_template(src_path, container_path):
103 replace_fields(os.path.basename(src_path)))
104 if os.path.isdir(src_path):
106 for child in os.listdir(src_path):
110 os.path.join(src_path, child), dest_path)
112 shutil.copyfile(src_path, dest_path)
  /development/testrunner/
create_test.py 240 src_path = app_path + "/tests/src"
241 if not os.path.exists(src_path):
242 os.mkdir(src_path)
  /external/lldb/include/lldb/Host/
FileSpec.h 605 /// Resolves user name and links in \a src_path, and writes the output
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
610 /// @param[in] src_path
625 Resolve (const char *src_path, char *dst_path, size_t dst_len);
628 /// Resolves the user name at the beginning of \a src_path, and writes the output
629 /// to \a dst_path. Note, \a src_path can contain other path components after the
633 /// @param[in] src_path
649 ResolveUsername (const char *src_path, char *dst_path, size_t dst_len);
  /external/lldb/scripts/Python/interface/
SBFileSpec.i 65 ResolvePath (const char *src_path, char *dst_path, size_t dst_len);
  /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);
  /ndk/sources/android/crazy_linker/tests/
test_util.h 225 String src_path; local
226 src_path.Format("%s/%s", src_file_dir, src_file_name);
229 src_file.Open(src_path.c_str(), "rb");

Completed in 376 milliseconds