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

  /system/tools/aidl/
io_delegate_unittest.cpp 29 string absolute_path; local
30 EXPECT_FALSE(IoDelegate::GetAbsolutePath("", &absolute_path));
31 EXPECT_TRUE(absolute_path.empty());
35 string absolute_path; local
36 EXPECT_TRUE(IoDelegate::GetAbsolutePath("foo", &absolute_path));
37 ASSERT_FALSE(absolute_path.empty());
38 // Should find our desired file at the end of |absolute_path|
40 EXPECT_TRUE(absolute_path.rfind("/foo") == absolute_path.length() - 4);
42 EXPECT_EQ(absolute_path[0], '/')
    [all...]
io_delegate.cpp 44 bool IoDelegate::GetAbsolutePath(const string& path, string* absolute_path) {
53 *absolute_path = buf;
65 *absolute_path = path;
76 *absolute_path = buf;
77 *absolute_path += OS_PATH_SEPARATOR;
78 *absolute_path += path;
154 string absolute_path; local
155 if (!GetAbsolutePath(path, &absolute_path)) {
159 auto directories = Split(absolute_path, string{1u, OS_PATH_SEPARATOR});
io_delegate.h 37 // Stores an absolute version of |path| to |*absolute_path|,
39 // Returns false and does not set |*absolute_path| on error.
41 std::string* absolute_path);
  /external/chromium-trace/catapult/telemetry/telemetry/internal/util/
file_handle.py 12 def __init__(self, temp_file=None, absolute_path=None):
20 absolute_path: A path; should not be passed if tempfile is and vice-versa.
24 # Exactly one of absolute_path or temp_file must be specified.
25 assert (absolute_path is None) != (temp_file is None)
27 self._absolute_path = absolute_path
  /external/e2fsprogs/contrib/android/
e2fsdroid.c 37 static char *absolute_path(const char *file) function
71 fs_config_file = absolute_path(optarg);
75 file_contexts = absolute_path(optarg);
79 product_out = absolute_path(optarg);
85 basefs_out = absolute_path(optarg);
88 basefs_in = absolute_path(optarg);
91 block_list = absolute_path(optarg);
94 src_dir = absolute_path(optarg);
  /external/autotest/scheduler/
site_drone_manager.py 73 drone.call('initialize', self.absolute_path(''))
drone_manager.py 155 directory, except for those returns by absolute_path().
255 drone.call('initialize', self.absolute_path(''))
717 abs_working_directory = self.absolute_path(working_directory)
720 log_file = self.absolute_path(log_file)
757 path = os.path.join(self.absolute_path(execution_tag), pidfile_name)
827 def absolute_path(self, path, on_results_repository=False): member in class:BaseDroneManager
842 full_source = self.absolute_path(source_path)
843 full_destination = self.absolute_path(
    [all...]
postjob_task.py 43 self._drone_manager.absolute_path(self._working_directory()))
monitor_db.py     [all...]
monitor_db_functional_test.py 273 def absolute_path(self, path): member in class:MockDroneManager
    [all...]
  /external/syslinux/utils/
mkdiskimage.in 26 sub absolute_path($) {
246 if ( !symlink(absolute_path($file), $imglink) );
  /external/syslinux/bios/utils/
mkdiskimage 26 sub absolute_path($) { subroutine
246 if ( !symlink(absolute_path($file), $imglink) );
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/
ApplicationPackageNameRefactoring.java 381 String absolute_path = AndroidManifest.combinePackageAndClassName( local
386 addQuotes(absolute_path));
  /art/runtime/
oat_file.cc 751 UniqueCPtr<char> absolute_path(realpath(elf_filename.c_str(), nullptr));
752 if (absolute_path == nullptr) {
767 dlopen_handle_ = android_dlopen_ext(absolute_path.get(), RTLD_NOW, &extinfo);
772 dlopen_handle_ = dlopen(absolute_path.get(), RTLD_NOW);
    [all...]
  /external/v8/src/
d8.cc 623 std::string absolute_path = local
625 auto module_it = d->specifier_to_module_map.find(absolute_path);
665 std::string absolute_path = NormalizePath(ToSTLString(name), dir_name); local
666 if (!d->specifier_to_module_map.count(absolute_path)) {
667 if (FetchModuleTree(context, absolute_path).IsEmpty()) {
683 std::string absolute_path = NormalizePath(file_name, GetWorkingDirectory()); local
686 if (!FetchModuleTree(realm, absolute_path).ToLocal(&root_module)) {
    [all...]

Completed in 251 milliseconds