Searched refs:is_executable (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/webkit/common/appcache/
H A Dappcache_interfaces.cc76 is_executable(false) {
86 is_executable(false) {
91 bool is_pattern, bool is_executable)
96 is_executable(is_executable) {
89 Namespace( AppCacheNamespaceType type, const GURL& url, const GURL& target, bool is_pattern, bool is_executable) argument
H A Dappcache_interfaces.h135 bool is_pattern, bool is_executable);
144 bool is_executable; member in struct:appcache::Namespace
/external/chromium_org/v8/src/
H A Dplatform-solaris.cc75 bool is_executable) {
77 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
215 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { argument
216 return CommitRegion(address, size, is_executable);
245 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { argument
246 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
73 Allocate(const size_t requested, size_t* allocated, bool is_executable) argument
H A Dplatform-cygwin.cc51 bool is_executable) {
53 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
279 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { argument
280 return CommitRegion(address, size, is_executable);
295 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { argument
296 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;
49 Allocate(const size_t requested, size_t* allocated, bool is_executable) argument
H A Dplatform-linux.cc116 bool is_executable) {
118 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
355 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { argument
356 return CommitRegion(address, size, is_executable);
388 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { argument
394 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
114 Allocate(const size_t requested, size_t* allocated, bool is_executable) argument
H A Dplatform-macos.cc55 bool is_executable) {
57 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
244 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { argument
245 return CommitRegion(address, size, is_executable);
276 bool is_executable) {
277 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
53 Allocate(const size_t requested, size_t* allocated, bool is_executable) argument
274 CommitRegion(void* address, size_t size, bool is_executable) argument
H A Dplatform-openbsd.cc57 bool is_executable) {
59 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
273 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { argument
274 return CommitRegion(address, size, is_executable);
303 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { argument
304 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
55 Allocate(const size_t requested, size_t* allocated, bool is_executable) argument
H A Dplatform-qnx.cc108 bool is_executable) {
110 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
309 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { argument
310 return CommitRegion(address, size, is_executable);
339 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { argument
340 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
106 Allocate(const size_t requested, size_t* allocated, bool is_executable) argument
H A Dplatform-freebsd.cc242 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { argument
243 return CommitRegion(address, size, is_executable);
272 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { argument
273 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
H A Dplatform.h202 bool is_executable);
351 bool Commit(void* address, size_t size, bool is_executable);
382 static bool CommitRegion(void* base, size_t size, bool is_executable);
H A Dplatform-win32.cc758 bool is_executable) {
763 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;
1256 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { argument
1257 return CommitRegion(address, size, is_executable);
1283 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { argument
1284 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;
756 Allocate(const size_t requested, size_t* allocated, bool is_executable) argument
/external/chromium_org/base/win/
H A Diat_patch_function.cc194 DWORD is_executable = (PAGE_EXECUTE | PAGE_EXECUTE_READ | local
200 is_executable ? PAGE_EXECUTE_READWRITE :
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dhelp.c106 static int is_executable(const char *name) function
144 if (!is_executable(buf.buf))
/external/llvm/utils/
H A Dllvm-compilers-check116 def is_executable(fpath):
555 if not is_executable(program):
569 if not is_executable(program):
/external/chromium_org/webkit/browser/appcache/
H A Dappcache_database.cc713 if (record->namespace_.is_executable) {
976 record->namespace_.is_executable =
978 DCHECK(!record->namespace_.is_executable ||
H A Dappcache_update_job.cc1107 if (it->is_executable)
/external/chromium-trace/trace-viewer/examples/stream_server/
H A Dstandalone.py497 # Replace CGIHTTPRequestHandler.is_executable method.
499 self.is_executable = self._options.is_executable_method
638 if not self.is_executable(scriptfile):
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dstandalone.py493 # Replace CGIHTTPRequestHandler.is_executable method.
495 self.is_executable = self._options.is_executable_method
634 if not self.is_executable(scriptfile):
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
H A Dstandalone.py688 # Replace CGIHTTPRequestHandler.is_executable method.
690 self.is_executable = self._options.is_executable_method
843 if not self.is_executable(scriptfile):
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dmsvs_emulation.py480 manifest_base_name, output_name, is_executable, build_dir):
561 is_executable and not have_def_file, build_dir)
/external/chromium_org/tools/gyp/pylib/gyp/generator/
H A Dninja.py1049 is_executable = spec['type'] == 'executable'
1064 output, is_executable,
1081 if is_executable and len(solibs):
/external/chromium_org/v8/tools/
H A Dgrokdump.py126 is_executable = reader.IsProbableExecutableRegion(location, size)
129 if is_executable is not False:
158 if is_executable is not True and is_ascii is not True:

Completed in 1173 milliseconds