HomeSort by relevance Sort by last modified time
    Searched defs:executable (Results 1 - 25 of 42) sorted by null

1 2

  /art/build/
Android.executable.mk 27 # $(1): executable ("d" will be appended for debug version)
34 define build-art-executable
96 LOCAL_ADDITIONAL_DEPENDENCIES += art/build/Android.executable.mk
  /external/linux-tools-perf/perf-3.12.0/tools/perf/config/
utilities.mak 139 # Usage: absolute-executable-path-or-empty = $(call lookup,path)
147 # is-executable
149 # Usage: bool-value = $(call is-executable,path)
154 is-executable = $(call _is-executable-helper,$(shell-sq))
155 _is-executable-helper = $(shell sh -c $(_is-executable-sh))
156 _is-executable-sh = $(call shell-sq,test -f $(1) -a -x $(1) && echo y)
158 # get-executable
160 # Usage: absolute-executable-path-or-empty = $(call get-executable,path
    [all...]
  /build/core/combo/
HOST_darwin-x86.mk 100 define transform-host-o-to-executable-inner
TARGET_linux-arm64.mk 186 define transform-o-to-executable-inner
212 define transform-o-to-static-executable-inner
TARGET_linux-mips64.mk 196 define transform-o-to-executable-inner
222 define transform-o-to-static-executable-inner
TARGET_linux-x86_64.mk 176 define transform-o-to-executable-inner
202 define transform-o-to-static-executable-inner
  /external/lldb/utils/test/
disasm.py 14 """Check whether fpath is an executable."""
144 parser.add_option('-e', '--executable',
146 dest='executable',
147 help="""The executable to do disassembly on.""")
155 help="""The llvm-mc executable full path, if specified.
168 if not opts.executable:
171 executable = opts.executable variable
190 print "executable:", executable
    [all...]
lldb-disasm.py 4 Run lldb to disassemble all the available functions for an executable image.
177 Run lldb to disassemble all the available functions for an executable image.
185 parser.add_option('-e', '--executable',
187 dest='executable',
188 help="""Mandatory: the executable to do disassembly on.""")
214 if not opts.executable or not opts.disassemble_options:
218 executable = opts.executable variable
228 print "executable:", executable
    [all...]
  /cts/
CtsBuild.mk 61 define cts-get-executable-paths
62 $(foreach executable,$(1),$(CTS_TESTCASES_OUT)/$(executable))
  /external/chromium_org/base/memory/
shared_memory.h 49 executable(false),
68 // If true, mappings might need to be made executable later.
69 bool executable; member in struct:base::SharedMemoryCreateOptions
  /external/chromium_org/tools/gn/
ninja_build_writer.cc 33 base::FilePath executable; local
34 PathService::Get(base::FILE_EXE, &executable);
36 CommandLine cmdline(executable.NormalizePathSeparatorsTo('/'));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/
RSSFeedUtil.java 46 public ExecTask runExecTask(String executable, String commandline, String dir)
53 exec.setExecutable(executable);
56 Project project = new Project(); project.setName(executable);
72 System.out.println(Messages.getString("RSSFeedPublisherTask.Execute") + SP + executable + (commandline==null?"":SP + commandline)); //$NON-NLS-1$ //$NON-NLS-2$ method
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/os/
FileUtils.java 65 private boolean executable; field in class:FileUtils.FileStatus
96 return executable;
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Exec.java 39 String executable = System.getProperty("java.home"); local
40 if (!executable.endsWith(File.separator)) {
41 executable += File.separator;
43 executable += "bin" + File.separator + "java";
55 return run(executable, args, envp, displayOutput);
168 // construct the name of executable file
169 String executable = System.getProperty("java.home"); local
170 if (!executable.endsWith(File.separator)) {
171 executable += File.separator;
173 executable += "bin" + File.separator + "java"
    [all...]
  /external/chromium_org/base/test/launcher/
test_results_tracker.cc 127 FilePath executable = command_line.GetProgram().BaseName(); local
128 path = path.Append(executable.ReplaceExtension(
  /external/chromium_org/tools/emacs/
flymake-chromium.el 18 (defcustom cr-flymake-ninja-executable "ninja"
19 "Ninja executable location; either in $PATH or explicitly given.")
68 (list cr-flymake-ninja-executable
  /external/chromium_org/chrome/app/
chrome_main_delegate.cc 595 base::FilePath executable; local
596 if (PathService::Get(base::FILE_EXE, &executable) &&
597 executable.value().size() >= 3) {
599 executable.value().substr(executable.value().size() - 3);
604 << "Executable-heap process requires --type="
616 << "Non-executable-heap PIE process is intolerant of --type="
621 << "Non-executable-heap PIE process is intolerant of --type="
648 // On the Mac, the child executable lives at a predefined location within
    [all...]
  /external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DynamicLoaderPOSIXDYLD.cpp 114 ModuleSP executable; local
119 executable = GetTargetExecutable();
122 if (executable.get() && load_offset != LLDB_INVALID_ADDRESS)
125 module_list.Append(executable);
126 UpdateLoadedSections(executable, load_offset);
135 ModuleSP executable; local
140 executable = GetTargetExecutable();
143 if (executable.get() && load_offset != LLDB_INVALID_ADDRESS)
146 module_list.Append(executable);
147 UpdateLoadedSections(executable, load_offset)
157 ModuleSP executable = target.GetExecutableModule(); local
    [all...]
  /external/chromium_org/tools/gyp/test/lib/
TestCmd.py 5 of executable commands and scripts (in any language, not just Python),
526 python_executable = sys.executable
1525 def executable(self, top, execute=1): member in class:TestCmd
    [all...]
  /external/chromium_org/tools/linux/
procfs.py 276 self, begin, end, readable, writable, executable, private, offset,
282 self.executable = executable
296 'executable': self.executable,
366 matched.group(5), # executable
379 return entry.writable == '-' and entry.executable == '-'
382 def executable(entry): member in class:ProcMaps
383 return entry.executable == 'x'
387 return ((entry.writable == '-' and entry.executable == '-') o
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux_libcdep.cc 510 bool executable = phdr->p_flags & PF_X; local
511 cur_module->addAddressRange(cur_beg, cur_end, executable);
  /external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DynamicLoaderMacOSXDYLD.cpp 321 Module *executable = m_process->GetTarget().GetExecutableModulePointer(); local
323 if (executable)
325 const ArchSpec &exe_arch = executable->GetArchitecture();
415 // If we didn't have an executable before, but now we do, then the
507 // the __PAGEZERO segment in the main executable. We might be able
    [all...]
  /build/core/
definitions.mk     [all...]
  /external/chromium_org/v8/src/heap/
spaces.cc 224 return isolate_->memory_allocator()->CommitMemory(start, length, EXECUTABLE);
285 Executability executable) {
287 executable == EXECUTABLE)) {
296 Executability executable) {
305 if (executable == EXECUTABLE) {
313 DCHECK(executable == NOT_EXECUTABLE || isolate_->code_range() == NULL ||
320 Executability executable) {
327 if (executable == EXECUTABLE)
492 Executability executable = local
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
Renderer11.cpp 2263 ShaderExecutable11 *executable = NULL; local
2422 ShaderExecutable *executable = loadExecutable((DWORD *)binary->GetBufferPointer(), binary->GetBufferSize(), type, local
    [all...]

Completed in 785 milliseconds

1 2