HomeSort by relevance Sort by last modified time
    Searched refs:is_executable (Results 1 - 16 of 16) sorted by null

  /system/core/include/corkscrew/
map_info.h 36 bool is_executable; member in struct:map_info
  /system/core/libcorkscrew/
map_info.c 61 mi->is_executable = strlen(permissions) == 4 && permissions[2] == 'x';
66 "is_readable=%d, is_writable=%d, is_executable=%d, name=%s",
68 mi->is_readable, mi->is_writable, mi->is_executable, mi->name);
122 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 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);
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):
551 if not is_executable(program):
565 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...]
  /system/core/debuggerd/
tombstone.c 365 m->is_executable ? 'x' : '-',

Completed in 125 milliseconds