| /external/v8/src/base/platform/ | 
| platform-cygwin.cc | 52                    bool is_executable) { 54   int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
 204 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) {
 205   return CommitRegion(address, size, is_executable);
 220 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) {
 221   int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;
 
 | 
| platform-macos.cc | 56                    bool is_executable) { 58   int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
 187 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) {
 188   return CommitRegion(address, size, is_executable);
 219                                  bool is_executable) {
 220   int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
 
 | 
| platform-openbsd.cc | 57                    bool is_executable) { 59   int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
 225 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) {
 226   return CommitRegion(address, size, is_executable);
 255 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) {
 256   int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
 
 | 
| platform-qnx.cc | 108                    bool is_executable) { 110   int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
 251 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) {
 252   return CommitRegion(address, size, is_executable);
 281 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) {
 282   int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
 
 | 
| platform-solaris.cc | 55                    bool is_executable) { 57   int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
 147 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) {
 148   return CommitRegion(address, size, is_executable);
 177 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) {
 178   int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
 
 | 
| platform-linux.cc | 134                    bool is_executable) { 136   int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
 312 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) {
 314   return CommitRegion(address, size, is_executable);
 348 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) {
 354   int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
 
 | 
| platform-aix.cc | 191 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { 192   return CommitRegion(address, size, is_executable);
 217 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) {
 223   int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
 
 | 
| platform-freebsd.cc | 194 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { 195   return CommitRegion(address, size, is_executable);
 224 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) {
 225   int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
 
 | 
| platform.h | 177                         bool is_executable); 332   bool Commit(void* address, size_t size, bool is_executable);
 364   static bool CommitRegion(void* base, size_t size, bool is_executable);
 
 | 
| platform-win32.cc | 782                    bool is_executable) { 787   int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;
 [all...]
 | 
| /external/autotest/utils/ | 
| check_patch.py | 205             self.is_executable = True 207             self.is_executable = False
 277             if not self.is_executable:
 280             if self.is_executable:
 
 | 
| /external/elfutils/libdwfl/ | 
| dwfl_build_id_find_elf.c | 143   if (mod->is_executable 
 | 
| libdwflP.h | 224   bool is_executable;		/* Use Dwfl::executable_for_core?  */  member in struct:Dwfl_Module 
 | 
| dwfl_segment_report_module.c | 836     mod->is_executable = true; 
 | 
| /external/v8/tools/gyp/pylib/gyp/generator/ | 
| analyzer.py | 222   is_executable: true if the type of target is executable. 237     self.is_executable = False
 360     target.is_executable = target_type == 'executable'
 482         (target.is_executable or
 488            target.is_executable, 'added_to_compile_targets', \
 
 | 
| ninja.py | [all...] | 
| /prebuilts/gdb/darwin-x86/lib/python2.7/ | 
| CGIHTTPServer.py | 97     def is_executable(self, path):  member in class:CGIHTTPRequestHandler 153             if not self.is_executable(scriptfile):
 
 | 
| /prebuilts/gdb/linux-x86/lib/python2.7/ | 
| CGIHTTPServer.py | 97     def is_executable(self, path):  member in class:CGIHTTPRequestHandler 153             if not self.is_executable(scriptfile):
 
 | 
| /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): 555         if not is_executable(program):
 569         if not is_executable(program):
 
 | 
| /art/runtime/ | 
| oat_file.cc | [all...] | 
| /external/v8/tools/gyp/pylib/gyp/ | 
| msvs_emulation.py | 558                  manifest_base_name, output_name, is_executable, build_dir): 656                                  is_executable and not have_def_file, build_dir)
 [all...]
 | 
| /toolchain/binutils/binutils-2.25/gold/ | 
| x86_64.cc | 3571  bool is_executable = (data_shdr.get_sh_flags() & elfcpp::SHF_EXECINSTR) != 0;  local [all...]
 | 
| /external/v8/tools/ | 
| grokdump.py | 126     is_executable = reader.IsProbableExecutableRegion(location, size) 129     if is_executable is not False:
 159     if is_executable is not True and is_ascii is not True:
 [all...]
 |