OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:is_executable
(Results
1 - 10
of
10
) sorted by null
/external/v8/src/
platform-cygwin.cc
147
bool
is_executable
) {
149
int prot = PROT_READ | PROT_WRITE | (
is_executable
? PROT_EXEC : 0);
177
void OS::Unprotect(void* address, size_t size, bool
is_executable
) {
179
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.h
204
bool
is_executable
);
212
static void Unprotect(void* address, size_t size, bool
is_executable
);
347
bool Commit(void* address, size_t size, bool
is_executable
);
platform-macos.cc
148
bool
is_executable
) {
150
int prot = PROT_READ | PROT_WRITE | (
is_executable
? PROT_EXEC : 0);
179
void OS::Unprotect(void* address, size_t size, bool
is_executable
) {
375
bool VirtualMemory::Commit(void* address, size_t size, bool
is_executable
) {
376
int prot = PROT_READ | PROT_WRITE | (
is_executable
? PROT_EXEC : 0);
platform-solaris.cc
167
bool
is_executable
) {
169
int prot = PROT_READ | PROT_WRITE | (
is_executable
? PROT_EXEC : 0);
198
void OS::Unprotect(void* address, size_t size, bool
is_executable
) {
200
int prot = PROT_READ | PROT_WRITE | (
is_executable
? PROT_EXEC : 0);
platform-linux.cc
312
bool
is_executable
) {
315
int prot = PROT_READ | PROT_WRITE | (
is_executable
? PROT_EXEC : 0);
344
void OS::Unprotect(void* address, size_t size, bool
is_executable
) {
346
int prot = PROT_READ | PROT_WRITE | (
is_executable
? PROT_EXEC : 0);
572
bool VirtualMemory::Commit(void* address, size_t size, bool
is_executable
) {
573
int prot = PROT_READ | PROT_WRITE | (
is_executable
? PROT_EXEC : 0);
platform-win32.cc
860
bool
is_executable
) {
879
int prot =
is_executable
? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;
925
void OS::Unprotect(void* address, size_t size, bool
is_executable
) {
927
DWORD new_protect =
is_executable
? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;
[
all
...]
platform-nullos.cc
222
void OS::Unprotect(void* address, size_t size, bool
is_executable
) {
platform-openbsd.cc
180
void OS::Unprotect(void* address, size_t size, bool
is_executable
) {
platform-freebsd.cc
190
void OS::Unprotect(void* address, size_t size, bool
is_executable
) {
/external/llvm/utils/
llvmbuild
156
def
is_executable
(fpath):
693
if not
is_executable
(program):
706
if not
is_executable
(program):
Completed in 115 milliseconds