Home
last modified time | relevance | path

Searched refs:IsExecutable (Results 1 – 23 of 23) sorted by relevance

/external/chromium-trace/catapult/common/py_utils/py_utils/
Dpy_utils_unittest.py14 self.assertFalse(py_utils.IsExecutable('nonexistent_file'))
18 self.assertFalse(py_utils.IsExecutable(_GetFileInTestDir('foo.txt')))
19 self.assertTrue(py_utils.IsExecutable(sys.executable))
D__init__.py34 def IsExecutable(path): function
Dcloud_storage.py105 if py_utils.IsExecutable(executable_path):
/external/v8/build/util/
Djava_action.py16 def IsExecutable(path): function
44 if IsExecutable(command):
61 if IsExecutable(path):
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/
Ddesktop_browser_finder.py176 if path_module.IsExecutable(normalized_executable):
190 if path_module.IsExecutable(app):
221 if path_module.IsExecutable(mac_canary):
226 if path_module.IsExecutable(mac_system):
231 if reference_build and path_module.IsExecutable(reference_build):
249 if path_module.IsExecutable(browser_path):
252 if reference_build and path_module.IsExecutable(reference_build):
Ddesktop_browser_backend.py195 if path.IsExecutable(colocated_cdb):
/external/chromium-trace/catapult/telemetry/telemetry/internal/util/
Dpath.py18 IsExecutable = catapult_util.IsExecutable variable
47 if IsExecutable(p):
Dpath_unittest.py15 self.assertFalse(path.IsExecutable('nonexistent_file'))
16 self.assertTrue(path.IsExecutable(sys.executable))
/external/llvm/unittests/Support/
DFileOutputBufferTest.cpp114 bool IsExecutable = (Status.permissions() & fs::owner_exe); in TEST() local
115 EXPECT_TRUE(IsExecutable); in TEST()
/external/lldb/source/Plugins/ObjectFile/Mach-O/
DObjectFileMachO.h96 IsExecutable () const;
DObjectFileMachO.cpp772 ObjectFileMachO::IsExecutable() const in IsExecutable() function in ObjectFileMachO
3799 if (!IsExecutable() || m_entry_point_address.IsValid()) in GetEntryPointAddress()
/external/lldb/include/lldb/Symbol/
DObjectFile.h285 IsExecutable () const = 0;
/external/lldb/source/Plugins/ObjectFile/PECOFF/
DObjectFilePECOFF.h80 IsExecutable () const;
DObjectFilePECOFF.cpp267 ObjectFilePECOFF::IsExecutable() const in IsExecutable() function in ObjectFilePECOFF
/external/llvm/tools/llvm-objdump/
DCOFFDump.cpp525 bool IsExecutable = Rels.empty(); in printCOFFUnwindInfo() local
526 if (IsExecutable) { in printCOFFUnwindInfo()
/external/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.h97 IsExecutable () const;
DObjectFileELF.cpp419 ObjectFileELF::IsExecutable() const in IsExecutable() function in ObjectFileELF
559 if (!ParseHeader() || !IsExecutable()) in GetEntryPointAddress()
/external/lldb/include/lldb/Core/
DModule.h581 IsExecutable ();
/external/google-breakpad/src/google_breakpad/processor/
Dminidump.h799 bool IsExecutable() const;
/external/lldb/source/Core/
DModule.cpp1286 Module::IsExecutable () in IsExecutable() function in Module
1291 return GetObjectFile()->IsExecutable(); in IsExecutable()
/external/google-breakpad/src/processor/
Dminidump_unittest.cc677 ASSERT_TRUE(info1->IsExecutable()); in TEST()
Dminidump.cc3718 bool MinidumpMemoryInfo::IsExecutable() const { in IsExecutable() function in google_breakpad::MinidumpMemoryInfo
/external/lldb/source/Target/
DProcess.cpp3221 if (module_sp && module_sp->IsExecutable()) in CompleteAttach()