HomeSort by relevance Sort by last modified time
    Searched refs:executable (Results 26 - 50 of 72) sorted by null

12 3

  /external/v8/src/
spaces-inl.h 222 Executability executable) {
223 OS::Unprotect(start, size, executable);
236 chunks_[id].owner()->executable() == EXECUTABLE);
platform-openbsd.cc 144 bool executable) {
146 int prot = PROT_READ | PROT_WRITE | (executable ? PROT_EXEC : 0);
272 // Ignore mappings that are not executable.
316 bool VirtualMemory::Commit(void* address, size_t size, bool executable) {
317 int prot = PROT_READ | PROT_WRITE | (executable ? PROT_EXEC : 0);
platform-nullos.cc 183 bool executable) {
259 bool VirtualMemory::Commit(void* address, size_t size, bool executable) {
spaces.cc 350 Executability executable) {
353 if (executable == EXECUTABLE && CodeRange::exists()) {
356 mem = OS::Allocate(requested, allocated, (executable == EXECUTABLE));
426 void* chunk = AllocateRawMemory(chunk_size, &chunk_size, owner->executable());
452 if (!initial_chunk_->Commit(start, size, owner->executable() == EXECUTABLE)) {
471 Executability executable) {
478 if (!initial_chunk_->Commit(start, size, executable)) return false
    [all...]
platform-freebsd.cc 145 bool executable) {
147 int prot = PROT_READ | PROT_WRITE | (executable ? PROT_EXEC : 0);
274 // Ignore mappings that are not executable.
343 bool VirtualMemory::Commit(void* address, size_t size, bool executable) {
344 int prot = PROT_READ | PROT_WRITE | (executable ? PROT_EXEC : 0);
platform-solaris.cc 290 bool VirtualMemory::Commit(void* address, size_t size, bool executable) {
291 int prot = PROT_READ | PROT_WRITE | (executable ? PROT_EXEC : 0);
  /external/webkit/JavaScriptCore/runtime/
JSFunction.cpp 75 JSFunction::JSFunction(ExecState* exec, NonNullPassRefPtr<FunctionExecutable> executable, ScopeChainNode* scopeChainNode)
76 : Base(&exec->globalData(), exec->lexicalGlobalObject()->functionStructure(), executable->name())
77 , m_executable(executable)
JSFunction.h 54 ExecutableBase* executable() const { return m_executable.get(); } function in class:JSC::JSFunction
56 // To call either of these methods include Executable.h
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
base.py 95 executable = self._path_to_image_diff()
96 cmd = [executable, '--diff', actual_filename, expected_filename,
459 executable = self._path_to_wdiff()
460 cmd = [executable,
568 """Returns the path to the LigHTTPd PHP executable.
http_server.py 172 executable = self._port_obj._path_to_lighttpd()
174 start_cmd = [executable,
  /ndk/build/core/
build-all.mk 44 BUILD_HOST_EXECUTABLE := $(BUILD_SYSTEM)/build-host-executable.mk
48 BUILD_EXECUTABLE := $(BUILD_SYSTEM)/build-executable.mk
check-cygwin-make.mk 28 # Get the cygwin-specific path to the make executable
definitions.mk 192 module-add-executable = $(call module-add,$1,$2,$3,executable)
203 module-is-exectuable = $(call module-is-type,$1,executable)
204 module-is-installable = $(call or,$(call module-is-type,$1,shared),$(call module-is-type,$1,executable))
573 # Function : host-executable-path
574 # Arguments : 1: executable module name (e.g. 'foo')
575 # Returns : location of generated host executable name (e.g. '..../foo)
576 # Usage : $(call host-executable-path,<modulename>)
578 host-executable-path = $(HOST_OUT)/$1$(HOST_EXE)
597 # Function : executable-pat
    [all...]
  /build/core/combo/
TARGET_linux-arm.mk 231 define transform-o-to-executable-inner
250 define transform-o-to-static-executable-inner
TARGET_linux-sh.mk 134 define transform-o-to-executable-inner
152 define transform-o-to-static-executable-inner
  /external/gtest/test/
gtest-options_test.cc 131 const FilePath executable = GetCurrentExecutableName(); local
132 const char* const exe_str = executable.c_str();
  /external/webkit/JavaScriptCore/bytecode/
SamplingTool.h 98 ScriptSampleRecord(ScriptExecutable* executable)
99 : m_executable(executable)
  /development/testrunner/
run_command.py 100 executable='/bin/bash',
  /external/webkit/JavaScriptCore/profiler/
Profiler.cpp 146 if (!function->executable()->isHostFunction())
  /development/simulator/app/
Android.mk 111 # Add the carbon resources to the executable.
  /sdk/anttasks/src/com/android/ant/
AaptExecLoopTask.java 43 * <tr><td>path to aapt</td><td>executable</td><td>attribute (Path)</td>
92 * Sets the value of the "executable" attribute.
93 * @param executable the value.
95 public void setExecutable(Path executable) {
96 mExecutable = TaskHelper.checkSinglePath("executable", executable);
  /build/core/
definitions.mk     [all...]
  /bionic/libc/arch-x86/bionic/
crtbegin_dynamic.S 33 # any executable that is statically-linked with Bionic
crtbegin_static.S 33 # any executable that is statically-linked with Bionic
  /external/icu4c/
icudefs.mk 190 # Platform commands to remove or move executable and library targets
192 # when the library needs to have executable permissions

Completed in 983 milliseconds

12 3