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

1 2 3 4 5 6 7 8

  /system/vold/
Ext4.h 25 bool executable);
Fat.h 26 bool ro, bool remount, bool executable,
  /external/webkit/Source/JavaScriptCore/wtf/
OSAllocatorWin.cpp 34 static inline DWORD protection(bool writable, bool executable)
36 return executable ?
41 void* OSAllocator::reserveUncommitted(size_t bytes, Usage, bool writable, bool executable)
43 void* result = VirtualAlloc(0, bytes, MEM_RESERVE, protection(writable, executable));
49 void* OSAllocator::reserveAndCommit(size_t bytes, Usage, bool writable, bool executable)
51 void* result = VirtualAlloc(0, bytes, MEM_RESERVE | MEM_COMMIT, protection(writable, executable));
57 void OSAllocator::commit(void* address, size_t bytes, bool writable, bool executable)
59 void* result = VirtualAlloc(address, bytes, MEM_COMMIT, protection(writable, executable));
OSAllocator.h 48 static void* reserveUncommitted(size_t, Usage = UnknownUsage, bool writable = true, bool executable = false);
54 static void commit(void*, size_t, bool writable, bool executable);
60 static void* reserveAndCommit(size_t, Usage = UnknownUsage, bool writable = true, bool executable = false);
66 static void* reserveAndCommit(size_t reserveSize, size_t commitSize, Usage = UnknownUsage, bool writable = true, bool executable = false);
70 inline void* OSAllocator::reserveAndCommit(size_t reserveSize, size_t commitSize, Usage usage, bool writable, bool executable)
72 void* base = reserveUncommitted(reserveSize, usage, writable, executable);
73 commit(base, commitSize, writable, executable);
PageReservation.h 104 static PageReservation reserve(size_t size, OSAllocator::Usage usage = OSAllocator::UnknownUsage, bool writable = true, bool executable = false)
107 return PageReservation(OSAllocator::reserveUncommitted(size, usage, writable, executable), size, writable, executable);
126 PageReservation(void* base, size_t size, bool writable, bool executable)
130 , m_executable(executable)
OSAllocatorPosix.cpp 36 void* OSAllocator::reserveUncommitted(size_t bytes, Usage usage, bool writable, bool executable)
38 void* result = reserveAndCommit(bytes, usage, writable, executable);
46 void* OSAllocator::reserveAndCommit(size_t bytes, Usage usage, bool writable, bool executable)
52 if (executable)
65 if (executable) {
PageAllocationAligned.cpp 31 PageAllocationAligned PageAllocationAligned::allocate(size_t size, size_t alignment, OSAllocator::Usage usage, bool writable, bool executable)
46 if (executable)
57 void* reservationBase = OSAllocator::reserveUncommitted(reservationSize, usage, writable, executable);
63 OSAllocator::commit(alignedBase, size, writable, executable);
OSAllocatorSymbian.cpp 77 void* OSAllocator::reserveUncommitted(size_t reservationSize, Usage usage, bool , bool executable)
80 if (executable)
97 void OSAllocator::commit(void* address, size_t bytes, bool, bool executable)
101 if (!executable)
113 void* OSAllocator::reserveAndCommit(size_t bytes, Usage usage, bool writable, bool executable)
115 void* base = reserveUncommitted(bytes, usage, writable, executable);
116 commit(base, bytes, writable, executable);
  /sdk/emulator/mksdcard/
Android.mk 5 # host executable
  /external/v8/test/cctest/
testcfg.py 37 def __init__(self, path, executable, mode, raw_name, dependency, context, variant_flags):
39 self.executable = executable
60 result = [ self.executable, name, serialization_option ]
85 executable = 'cctest'
87 executable += '.exe'
88 executable = join(self.context.buildspace, executable)
89 if not exists(executable):
90 executable = join('obj', 'test', mode, 'cctest'
    [all...]
  /build/core/
host_executable.mk 2 ## Standard rules for building an executable file.
16 $(call host-executable-hook)
31 $(transform-host-o-to-executable)
executable.mk 2 ## Standard rules for building an executable file.
15 $(call target-executable-hook)
70 $(transform-o-to-static-executable)
73 $(transform-o-to-executable)
  /external/v8/test/preparser/
testcfg.py 37 def __init__(self, root, path, executable, mode, throws, context, source):
39 self.executable = executable
58 result = [self.executable, "-e", self.source]
61 result = [self.executable, testfile]
99 executable, current_path, mode):
107 executable,
123 executable = 'preparser'
125 executable += '.exe'
126 executable = join(self.context.buildspace, executable
    [all...]
  /ndk/tests/device/static-executable/jni/
Android.mk 6 LOCAL_LDFLAGS := -static # this forces the generation of a static executable
  /bionic/libc/arch-mips/bionic/
crtbegin.S 35 # any executable that is statically-linked with Bionic
  /development/ndk/platforms/android-9/arch-mips/src/
crtbegin_dynamic.S 35 # any executable that is dynamically-linked with Bionic
crtbegin_static.S 35 # any executable that is statically-linked with Bionic
  /ndk/tests/build/issue41297-atomic-64bit/jni/
Android.mk 4 LOCAL_MODULE := issue41297-atomic-64bit-dynamic-executable
9 LOCAL_MODULE := issue41297-atomic-64bit-static-executable
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseSvnDiffFooter.pl 46 diffName => "simple: add svn:executable",
50 Added: svn:executable
112 diffName => "simple: delete svn:executable",
116 Deleted: svn:executable
129 diffName => "simple: delete svn:executable using SVN 1.4 syntax",
133 Name: svn:executable
149 diffName => "add svn:executable, followed by empty line and start of next diff",
153 Added: svn:executable
168 diffName => "add svn:executable, followed by empty line and start of next property diff",
172 Added: svn:executable
    [all...]
parseSvnProperty.pl 46 diffName => "simple: add svn:executable",
48 Added: svn:executable
53 name => "svn:executable",
62 diffName => "simple: delete svn:executable",
64 Deleted: svn:executable
69 name => "svn:executable",
147 diffName => "simple: delete svn:executable using SVN 1.4 syntax",
149 Name: svn:executable
154 name => "svn:executable",
163 diffName => "simple: add svn:executable using SVN 1.4 syntax"
    [all...]
  /sdk/emulator/opengl/host/renderer/
Android.mk 4 $(call emugl-begin-host-executable,emulator_renderer)
  /sdk/emulator/opengl/host/tools/emugen/
Android.mk 5 $(call emugl-begin-host-executable,emugen)
22 # on windows use the build host emugen executable
  /external/webkit/Source/JavaScriptCore/debugger/
Debugger.cpp 71 if (function->executable()->isHostFunction())
74 FunctionExecutable* executable = function->jsExecutable();
78 if (!m_functionExecutables.add(executable).second)
82 executable->discardCode();
84 m_sourceProviders.add(executable->source().provider(), exec);
  /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/linux-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...]

Completed in 1109 milliseconds

1 2 3 4 5 6 7 8