/external/chromium_org/webkit/common/appcache/ |
appcache_interfaces.cc | 55 is_executable(false) { 64 is_executable(false) { 69 bool is_pattern, bool is_executable) 74 is_executable(is_executable) {
|
appcache_interfaces.h | 105 bool is_pattern, bool is_executable); 114 bool is_executable; member in struct:appcache::Namespace
|
/system/core/include/corkscrew/ |
map_info.h | 36 bool is_executable; member in struct:map_info
|
/external/chromium_org/v8/src/ |
platform-solaris.cc | 100 bool is_executable) { 102 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); 280 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { 281 return CommitRegion(address, size, is_executable); 310 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { 311 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
|
platform-cygwin.cc | 77 bool is_executable) { 79 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); 306 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { 307 return CommitRegion(address, size, is_executable); 322 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { 323 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;
|
platform-linux.cc | 136 bool is_executable) { 138 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); 374 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { 375 return CommitRegion(address, size, is_executable); 404 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { 410 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
|
platform-macos.cc | 80 bool is_executable) { 82 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); 270 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { 271 return CommitRegion(address, size, is_executable); 302 bool is_executable) { 303 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
|
platform-openbsd.cc | 82 bool is_executable) { 84 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); 300 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { 301 return CommitRegion(address, size, is_executable); 330 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { 331 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
|
platform-freebsd.cc | 268 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { 269 return CommitRegion(address, size, is_executable); 298 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { 299 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
|
platform.h | 230 bool is_executable); 433 bool Commit(void* address, size_t size, bool is_executable); 464 static bool CommitRegion(void* base, size_t size, bool is_executable);
|
platform-win32.cc | 881 bool is_executable) { 886 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE; [all...] |
/system/core/libcorkscrew/ |
map_info.c | 57 mi->is_executable = permissions[2] == 'x'; 62 "is_readable=%d, is_writable=%d is_executable=%d, name=%s", 64 mi->is_readable, mi->is_writable, mi->is_executable, mi->name); 122 mi->is_executable = strlen(permissions) == 4 && permissions[2] == 'x'; 127 "is_readable=%d, is_writable=%d, is_executable=%d, name=%s", 129 mi->is_readable, mi->is_writable, mi->is_executable, mi->name); 185 return mi && mi->is_executable;
|
ptrace.c | 89 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 | 362 bool is_executable) { 364 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); 665 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { 666 return CommitRegion(address, size, is_executable); 695 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { 696 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);
|
/external/linux-tools-perf/util/ |
help.c | 111 static int is_executable(const char *name) function 149 if (!is_executable(buf.buf))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
CGIHTTPServer.py | 97 def is_executable(self, path): member in class:CGIHTTPRequestHandler 153 if not self.is_executable(scriptfile):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
CGIHTTPServer.py | 97 def is_executable(self, path): member in class:CGIHTTPRequestHandler 153 if not self.is_executable(scriptfile):
|
/external/llvm/utils/ |
llvm-compilers-check | 116 def is_executable(fpath): 551 if not is_executable(program): 565 if not is_executable(program):
|
/art/runtime/ |
mem_map.cc | 40 m->is_readable ? 'r' : '-', m->is_executable ? 'x' : '-', m->name);
|