HomeSort by relevance Sort by last modified time
    Searched refs:root_path (Results 1 - 25 of 26) sorted by null

1 2

  /bootable/recovery/
install.h 28 // Install the package specified by root_path. If INSTALL_SUCCESS is
31 int install_package(const char* root_path, bool* wipe_cache, const char* install_file,
  /development/testrunner/
android_build.py 43 root_path = os.getenv("ANDROID_BUILD_TOP")
44 if root_path is None:
48 return root_path
103 root_path = os.getenv("OUT_DIR")
104 if root_path is None:
105 root_path = os.path.join(GetTop(), "out")
106 return root_path
  /external/libchrome/base/files/
file_enumerator_posix.cc 42 FileEnumerator::FileEnumerator(const FilePath& root_path,
46 root_path_(root_path),
51 pending_paths_.push(root_path);
54 FileEnumerator::FileEnumerator(const FilePath& root_path,
59 root_path_(root_path),
62 pattern_(root_path.Append(pattern).value()) {
65 // The Windows version of this code appends the pattern to the root_path,
70 pending_paths_.push(root_path);
file_enumerator.h 52 // includes the |root_path| passed into the FileEnumerator constructor.
87 // |root_path| is the starting directory to search for. It may or may not end
104 // NOTE: the pattern only matches the contents of root_path, not files in
107 FileEnumerator(const FilePath& root_path,
110 FileEnumerator(const FilePath& root_path,
118 // The returned path will incorporate the |root_path| passed in the
119 // constructor: "<root_path>/file_name.txt". If the |root_path| is absolute,
file_util.cc 38 int64_t ComputeDirectorySize(const FilePath& root_path) {
40 FileEnumerator file_iter(root_path, true, FileEnumerator::FILES);
file_util.h 51 // Returns the total number of bytes used by all the files under |root_path|.
56 BASE_EXPORT int64_t ComputeDirectorySize(const FilePath& root_path);
  /external/icu/icu4c/source/test/depstest/
depstest.py 41 def _ReadObjFile(root_path, library_name, obj_name):
50 path = os.path.join(root_path, library_name, obj_name)
83 def _ReadLibrary(root_path, library_name):
84 obj_paths = glob.glob(os.path.join(root_path, library_name, "*.o"))
86 _ReadObjFile(root_path, library_name, os.path.basename(path))
143 def Process(root_path):
159 _ReadLibrary(root_path, library_name)
  /external/selinux/policycoreutils/sestatus/
sestatus.c 176 char *context, *root_path; local
253 root_path = strdup(root_dir);
254 if (!root_path) {
259 root_path[strlen(root_path) - 1] = '\0';
260 printf("%s\n", root_path);
261 free(root_path);
  /external/google-breakpad/src/processor/
simple_symbol_supplier.h 130 const string &root_path,
simple_symbol_supplier.cc 144 const string &root_path, string *symbol_file) {
154 string path = root_path;
  /external/google-breakpad/src/tools/windows/dump_syms/
dump_syms_unittest.cc 186 std::wstring root_path = testdata_dir + L"\\" + root_name; local
188 std::wstring sym_path = root_path + L".sym";
192 std::wstring pdb_path = root_path + L".pdb";
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
certutils.py 191 root_path = os.path.splitext(cert_path)[0]
192 ca_cert_path = root_path + '-cert.pem'
193 android_cer_path = root_path + '-cert.cer'
194 windows_p12_path = root_path + '-cert.p12'
  /external/libweave/src/
component_manager_impl.cc 665 std::string root_path; local
672 "Empty path element at '%s'", root_path.c_str());
691 if (!root_path.empty()) {
699 element.first.c_str(), root_path.c_str());
707 element.first.c_str(), root_path.c_str());
715 root_path.c_str(), element.first.c_str());
721 root_path.c_str(), element.first.c_str());
734 "Element '%s.%s' does not contain item #%d", root_path.c_str(),
738 if (!root_path.empty())
739 root_path += '.'
    [all...]
  /external/llvm/include/llvm/Support/
Path.h 226 StringRef root_path(StringRef path);
237 /// @result The path starting after root_path if one exists, otherwise "".
362 /// root_path != ""
  /system/extras/puncture_fs/
puncture_fs.c 121 static bool create_unique_dir(char *dir, const char * const root_path) {
130 sprintf(dir, "%s/%s", root_path, random_string);
  /development/testrunner/coverage/
coverage.py 225 def _FindCoverageFiles(self, root_path):
226 """Finds all files in <root_path>/*/*.<_TEST_COVERAGE_EXT>.
229 root_path: absolute file path string to search from
233 file_pattern = os.path.join(root_path, "*", "*.%s" %
  /frameworks/native/cmds/installd/
installd.cpp 555 const char* root_path = getenv("ANDROID_ROOT"); local
556 if (root_path == nullptr) {
561 return init_globals_from_data_and_root(data_path, root_path);
  /external/opencv3/modules/ts/misc/
run.py 367 def getVCVersion(self, root_path):
368 if not root_path:
370 if os.path.isdir(os.path.join(root_path, ".svn")):
371 return self.getSvnVersion(root_path)
372 elif os.path.isdir(os.path.join(root_path, ".git")):
373 return self.getGitHash(root_path)
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/
testing_common.py 54 self.testbed.init_taskqueue_stub(root_path=_QUEUE_YAML_DIR)
  /external/llvm/lib/Support/
Path.cpp 355 StringRef root_path(StringRef path) {
439 StringRef root = root_path(path);
610 return !root_path(p).empty();
692 SmallString<256> buffer = path::root_path(path);
  /system/update_engine/scripts/
brillo_update_payload 301 --kern_path "${kernel}" --root_path "${root}" \
  /external/clang/lib/Basic/
FileManager.cpp 155 DirName != llvm::sys::path::root_path(DirName) &&
VirtualFileSystem.cpp     [all...]
  /external/dhcpcd-6.8.2/
dhcpcd-definitions.conf 36 define 17 string root_path
  /external/llvm/unittests/Support/
Path.cpp 123 path::root_path(*i);
    [all...]

Completed in 1344 milliseconds

1 2