Searched defs:executable (Results 1 - 25 of 46) sorted by relevance

12

/external/chromium_org/base/files/
H A Dfile_util_android.cc12 bool GetShmemTempDir(bool executable, base::FilePath* path) { argument
H A Dfile_util_posix.cc816 bool GetShmemTempDir(bool executable, FilePath* path) { argument
819 if (executable) {
/external/chromium_org/content/common/
H A Dchild_process_sandbox_support_impl_shm_linux.cc13 int MakeSharedMemorySegmentViaIPC(size_t length, bool executable) { argument
17 request.WriteBool(executable);
/external/linux-tools-perf/perf-3.12.0/tools/perf/config/
H A Dutilities.mak139 # 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
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DShaderExecutable9.cpp8 // executable implementation details.
17 ShaderExecutable9::ShaderExecutable9(const void *function, size_t length, IDirect3DPixelShader9 *executable) argument
20 mPixelExecutable = executable;
24 ShaderExecutable9::ShaderExecutable9(const void *function, size_t length, IDirect3DVertexShader9 *executable) argument
27 mVertexExecutable = executable;
37 ShaderExecutable9 *ShaderExecutable9::makeShaderExecutable9(ShaderExecutable *executable) argument
39 ASSERT(HAS_DYNAMIC_TYPE(ShaderExecutable9*, executable));
40 return static_cast<ShaderExecutable9*>(executable);
/external/protobuf/gtest/test/
H A Dgtest-options_test.cc131 const FilePath executable = GetCurrentExecutableName(); local
132 const char* const exe_str = executable.c_str();
/external/lldb/utils/test/
H A Ddisasm.py14 """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...]
H A Dlldb-disasm.py4 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...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DShaderExecutable11.cpp8 // executable implementation details.
16 ShaderExecutable11::ShaderExecutable11(const void *function, size_t length, ID3D11PixelShader *executable) argument
19 mPixelExecutable = executable;
25 ShaderExecutable11::ShaderExecutable11(const void *function, size_t length, ID3D11VertexShader *executable, ID3D11GeometryShader *streamOut) argument
28 mVertexExecutable = executable;
34 ShaderExecutable11::ShaderExecutable11(const void *function, size_t length, ID3D11GeometryShader *executable) argument
37 mGeometryExecutable = executable;
51 ShaderExecutable11 *ShaderExecutable11::makeShaderExecutable11(ShaderExecutable *executable) argument
53 ASSERT(HAS_DYNAMIC_TYPE(ShaderExecutable11*, executable));
54 return static_cast<ShaderExecutable11*>(executable);
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/
H A DRSSFeedUtil.java46 public ExecTask runExecTask(String executable, String commandline, String dir) argument
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$
/external/chromium_org/tools/gn/
H A Dninja_build_writer.cc33 base::FilePath executable; local
34 PathService::Get(base::FILE_EXE, &executable);
36 CommandLine cmdline(executable.NormalizePathSeparatorsTo('/'));
/external/chromium_org/base/memory/
H A Dshared_memory.h49 executable(false),
68 // If true, mappings might need to be made executable later.
69 bool executable; member in struct:base::SharedMemoryCreateOptions
/external/chromium_org/base/test/launcher/
H A Dtest_results_tracker.cc127 FilePath executable = command_line.GetProgram().BaseName(); local
128 path = path.Append(executable.ReplaceExtension(
/external/chromium_org/chrome/common/mac/
H A Dmock_launchd.cc33 base::FilePath* executable) {
37 *executable = mac_os.Append(name);
45 if (base::WriteFile(*executable, data, len) != len) {
48 if (chmod(executable->value().c_str(), 0555) != 0) {
30 MakeABundle(const base::FilePath& dst, const std::string& name, base::FilePath* bundle_root, base::FilePath* executable) argument
/external/chromium_org/components/nacl/loader/
H A Dnacl_listener.cc73 // get an executable SHM region when CreateMemoryObject() is called,
79 int CreateMemoryObject(size_t size, int executable) { argument
80 if (executable && size > 0) {
103 int CreateMemoryObject(size_t size, int executable) { argument
104 return content::MakeSharedMemorySegmentViaIPC(size, executable);
/external/chromium_org/tools/emacs/
H A Dflymake-chromium.el18 (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/v8/src/heap/
H A Dspaces-inl.h114 Executability executable) {
115 base::OS::Unprotect(start, size, executable);
128 chunks_[id].owner()->executable() == EXECUTABLE);
136 Page* Page::Initialize(Heap* heap, MemoryChunk* chunk, Executability executable, argument
113 Unprotect(Address start, size_t size, Executability executable) argument
/external/chromium_org/v8/test/cctest/
H A Dtest-spaces.cc156 Executability executable) {
163 size_t header_size = (executable == EXECUTABLE)
166 size_t guard_size = (executable == EXECUTABLE)
172 executable,
177 ((executable == EXECUTABLE))
150 VerifyMemoryChunk(Isolate* isolate, Heap* heap, CodeRange* code_range, size_t reserve_area_size, size_t commit_area_size, size_t second_commit_area_size, Executability executable) argument
/external/chromium_org/chrome/app/
H A Dchrome_main_delegate.cc595 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);
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
/external/chromium_org/v8/src/base/platform/
H A Dplatform-freebsd.cc60 bool executable) {
62 int prot = PROT_READ | PROT_WRITE | (executable ? PROT_EXEC : 0);
153 // Ignore mappings that are not executable.
58 Allocate(const size_t requested, size_t* allocated, bool executable) argument
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.cc221 void LoadedModule::addAddressRange(uptr beg, uptr end, bool executable) { argument
225 exec_[n_ranges_] = executable;
H A Dsanitizer_linux_libcdep.cc510 bool executable = phdr->p_flags & PF_X; local
511 cur_module->addAddressRange(cur_beg, cur_end, executable);
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp114 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_offse
157 ModuleSP executable = target.GetExecutableModule(); local
[all...]
/external/chromium_org/tools/gyp/test/lib/
H A DTestCmd.py5 of executable commands and scripts (in any language, not just Python),
526 python_executable = sys.executable
1112 """Set the executable program or script to be tested.
1409 """Find an executable file.
1525 def executable(self, top, execute=1): member in class:TestCmd
1526 """Make the specified directory tree executable (execute == 1)
/external/chromium_org/tools/linux/
H A Dprocfs.py276 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
[all...]

Completed in 811 milliseconds

12