HomeSort by: relevance | last modified time | path
    Searched defs:nprot (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libnvmm/
libnvmm.c 95 nvmm_prot_t nprot; local in function:__area_add
98 nprot = 0;
100 nprot |= NVMM_PROT_READ;
102 nprot |= NVMM_PROT_WRITE;
104 nprot |= NVMM_PROT_EXEC;
117 area->prot = nprot;
  /src/sys/arch/usermode/usermode/
thunk.c 199 int nprot = PROT_NONE; local in function:thunk_to_native_prot
202 nprot |= PROT_READ;
204 nprot |= PROT_WRITE;
206 nprot |= PROT_EXEC;
208 return nprot;
716 int nflags, nprot; local in function:thunk_mmap
719 nprot = thunk_to_native_prot(prot);
722 a = mmap(addr, len, nprot, nflags, fd, offset);
737 int nprot; local in function:thunk_mprotect
739 nprot = thunk_to_native_prot(prot)
    [all...]

Completed in 35 milliseconds