Home
last modified time | relevance | path

Searched refs:binary_path (Results 1 – 4 of 4) sorted by relevance

/system/linkerconfig/include/linkerconfig/
Dsection.h35 void AddBinaryPath(T&& binary_path, Args&&... binary_paths);
50 void Section::AddBinaryPath(T&& binary_path, Args&&... binary_paths) { in AddBinaryPath() argument
51 binary_paths_.push_back(std::forward<T>(binary_path)); in AddBinaryPath()
/system/extras/simpleperf/scripts/
Dutils.py93 binary_path = os.path.join(arch_dir, binary_name)
94 if not os.path.isfile(binary_path):
95 log_fatal("can't find binary: %s" % binary_path)
96 return binary_path
114 binary_path = os.path.join(dirname, binary_name)
115 if not os.path.isfile(binary_path):
116 log_fatal("can't find binary: %s" % binary_path)
117 return binary_path
/system/apex/apexer/
Dapexer.py87 binary_path = os.path.join(path, binary)
88 if os.path.exists(binary_path):
89 return binary_path
/system/core/libziparchive/
Dzip_archive_test.cc425 ZipString binary_path(BINARY_PATH.c_str()); in TEST() local
427 ASSERT_EQ(0, FindEntry(handle, binary_path, &binary_entry)); in TEST()