Searched defs:is_executable (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/components/nacl/browser/
H A Dnacl_file_host.cc71 bool is_executable,
91 is_executable);
101 if (is_executable) {
140 true /* is_executable */);
165 bool is_executable,
172 is_executable,
68 DoOpenPnaclFile( scoped_refptr<nacl::NaClHostMessageFilter> nacl_host_message_filter, const std::string& filename, bool is_executable, IPC::Message* reply_msg) argument
162 GetReadonlyPnaclFd( scoped_refptr<nacl::NaClHostMessageFilter> nacl_host_message_filter, const std::string& filename, bool is_executable, IPC::Message* reply_msg) argument
H A Dnacl_host_message_filter.cc207 const std::string& filename, bool is_executable, IPC::Message* reply_msg) {
210 nacl_file_host::GetReadonlyPnaclFd(this, filename, is_executable, reply_msg);
206 OnGetReadonlyPnaclFd( const std::string& filename, bool is_executable, IPC::Message* reply_msg) argument
H A Dnacl_browser.cc117 bool is_executable) {
123 if (is_executable)
116 OpenNaClReadExecImpl(const base::FilePath& file_path, bool is_executable) argument
/external/chromium_org/content/common/
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 AppCacheNamespace( AppCacheNamespaceType type, const GURL& url, const GURL& target, bool is_pattern, bool is_executable) argument
H A Dappcache_interfaces.h100 const GURL& target, bool is_pattern, bool is_executable);
109 bool is_executable; member in struct:content::AppCacheNamespace
/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/chromium_org/v8/src/base/platform/
H A Dplatform-cygwin.cc52 bool is_executable) {
54 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
252 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { argument
253 return CommitRegion(address, size, is_executable);
268 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { argument
269 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;
50 Allocate(const size_t requested, size_t* allocated, bool is_executable) argument
H A Dplatform-macos.cc56 bool is_executable) {
58 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
245 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { argument
246 return CommitRegion(address, size, is_executable);
277 bool is_executable) {
278 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
54 Allocate(const size_t requested, size_t* allocated, bool is_executable) argument
275 CommitRegion(void* address, size_t size, bool is_executable) argument
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-freebsd.cc243 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { argument
244 return CommitRegion(address, size, is_executable);
273 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { argument
274 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
H A Dplatform-linux.cc134 bool is_executable) {
136 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
370 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { argument
371 return CommitRegion(address, size, is_executable);
403 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { argument
409 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
132 Allocate(const size_t requested, size_t* allocated, bool is_executable) argument
H A Dplatform-openbsd.cc58 bool is_executable) {
60 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
274 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { argument
275 return CommitRegion(address, size, is_executable);
304 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { argument
305 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
56 Allocate(const size_t requested, size_t* allocated, bool is_executable) argument
H A Dplatform-qnx.cc109 bool is_executable) {
111 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
310 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { argument
311 return CommitRegion(address, size, is_executable);
340 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { argument
341 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
107 Allocate(const size_t requested, size_t* allocated, bool is_executable) argument
H A Dplatform-win32.cc776 bool is_executable) {
781 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;
1252 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) { argument
1253 return CommitRegion(address, size, is_executable);
1279 bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) { argument
1280 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;
774 Allocate(const size_t requested, size_t* allocated, bool is_executable) argument
/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/chromium_org/components/nacl/renderer/
H A Dppb_nacl_private_impl.cc544 bool is_executable,
552 std::string(filename), is_executable,
565 out_file_info->handle = GetReadonlyPnaclFd(url, true /* is_executable */,
1072 base::File file(GetReadonlyPnaclFd(kFilename, false /* is_executable */,
1336 false /* is_executable */,
543 GetReadonlyPnaclFd(const char* url, bool is_executable, uint64_t* nonce_lo, uint64_t* nonce_hi) argument

Completed in 1278 milliseconds