/system/core/include/corkscrew/ |
map_info.h | 35 bool is_executable; member in struct:map_info
|
/system/core/libcorkscrew/ |
map_info.c | 60 mi->is_executable = strlen(permissions) == 4 && permissions[2] == 'x'; 65 "is_readable=%d, is_executable=%d, name=%s", 66 mi->start, mi->end, mi->is_readable, mi->is_executable, mi->name); 115 return mi && mi->is_executable;
|
ptrace.c | 84 if (mi->is_executable && mi->is_readable) {
|
/external/v8/src/ |
platform-macos.cc | 152 bool is_executable) { 154 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); 435 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { 436 return CommitRegion(address, size, is_executable); 448 bool is_executable) { 449 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
|
platform-solaris.cc | 181 bool is_executable) { 183 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); 402 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { 403 return CommitRegion(address, size, is_executable); 432 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { 433 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
|
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);
|
platform-cygwin.cc | 154 bool is_executable) { 156 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); 348 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { 349 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;
|
platform-linux.cc | 367 bool is_executable) { 369 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); 670 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { 671 return CommitRegion(address, size, is_executable); 700 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { 701 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); [all...] |
platform-openbsd.cc | 187 bool is_executable) { 189 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); 459 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { 460 return CommitRegion(address, size, is_executable); 489 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { 490 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
|
platform-freebsd.cc | 412 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { 413 return CommitRegion(address, size, is_executable); 442 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { 443 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
|
platform-win32.cc | 924 bool is_executable) { 929 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE; [all...] |
/external/linux-tools-perf/util/ |
help.c | 111 static int is_executable(const char *name) function 149 if (!is_executable(buf.buf))
|
/external/llvm/utils/ |
llvm-compilers-check | 116 def is_executable(fpath): 512 if not is_executable(program): 525 if not is_executable(program):
|
/external/chromium-trace/trace-viewer/examples/stream_server/ |
standalone.py | 497 # Replace CGIHTTPRequestHandler.is_executable method. 499 self.is_executable = self._options.is_executable_method 638 if not self.is_executable(scriptfile): [all...] |
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/ |
standalone.py | 493 # Replace CGIHTTPRequestHandler.is_executable method. 495 self.is_executable = self._options.is_executable_method 634 if not self.is_executable(scriptfile): [all...] |