/external/v8/src/ |
D | platform-macos.cc | 152 bool is_executable) { in Allocate() argument 154 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); in Allocate() 435 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { in Commit() argument 436 return CommitRegion(address, size, is_executable); in Commit() 448 bool is_executable) { in CommitRegion() argument 449 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); in CommitRegion()
|
D | platform-solaris.cc | 181 bool is_executable) { in Allocate() argument 183 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); in Allocate() 402 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { in Commit() argument 403 return CommitRegion(address, size, is_executable); in Commit() 432 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { in CommitRegion() argument 433 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); in CommitRegion()
|
D | platform-openbsd.cc | 187 bool is_executable) { in Allocate() argument 189 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); in Allocate() 459 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { in Commit() argument 460 return CommitRegion(address, size, is_executable); in Commit() 489 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { in CommitRegion() argument 490 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); in CommitRegion()
|
D | platform.h | 184 bool is_executable); 366 bool Commit(void* address, size_t size, bool is_executable); 397 static bool CommitRegion(void* base, size_t size, bool is_executable);
|
D | platform-linux.cc | 362 bool is_executable) { in Allocate() argument 364 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); in Allocate() 665 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { in Commit() argument 666 return CommitRegion(address, size, is_executable); in Commit() 695 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { in CommitRegion() argument 696 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); in CommitRegion()
|
D | platform-cygwin.cc | 154 bool is_executable) { in Allocate() argument 156 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); in Allocate() 348 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { in Commit() argument 349 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE; in Commit()
|
D | platform-freebsd.cc | 412 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { in Commit() argument 413 return CommitRegion(address, size, is_executable); in Commit() 442 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { in CommitRegion() argument 443 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); in CommitRegion()
|
D | platform-win32.cc | 924 bool is_executable) { in Allocate() argument 929 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE; in Allocate() 1517 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { in Commit() argument 1518 if (CommitRegion(address, size, is_executable)) { in Commit() 1537 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { in CommitRegion() argument 1538 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE; in CommitRegion()
|
/external/linux-tools-perf/util/ |
D | help.c | 111 static int is_executable(const char *name) in is_executable() function 149 if (!is_executable(buf.buf)) in list_commands_in_dir()
|
/external/llvm/utils/ |
D | llvm-compilers-check | 116 def is_executable(fpath): function 551 if not is_executable(program): 565 if not is_executable(program):
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/ |
D | standalone.py | 495 self.is_executable = self._options.is_executable_method 634 if not self.is_executable(scriptfile):
|
/external/chromium-trace/trace-viewer/examples/stream_server/ |
D | standalone.py | 499 self.is_executable = self._options.is_executable_method 638 if not self.is_executable(scriptfile):
|
/external/libvpx/libvpx/examples/includes/geshi/docs/ |
D | geshi-doc.txt | 1179 'is_executable','is_double','is_dir','is_callable','is_bool','is_array',
|