Searched refs:protection (Results 51 - 75 of 92) sorted by relevance

1234

/macosx-10.10.1/xnu-2782.1.97/osfmk/vm/
H A Dbsd_vm.c1193 pinfo->pri_protection = entry->protection;
1208 extended.protection = entry->protection;
1297 pinfo->pri_protection = entry->protection;
H A Dvm_debug.c181 region.vir_protection = entry->protection;
395 region.vir_protection = entry->protection;
H A Dmemory_object.c223 * (pmap_page_protect may not increase protection).
410 * same as memory_object_lock_request but page protection
682 vm_prot_t protection)
1034 should_flush, should_return, should_iosync, protection))
1484 if((named_entry->protection & VM_PROT_READ)
1489 if((named_entry->protection &
674 vm_object_update( vm_object_t object, vm_object_offset_t offset, vm_object_size_t size, vm_object_offset_t *resid_offset, int *io_errno, memory_object_return_t should_return, int flags, vm_prot_t protection) argument
H A Dvm_kern.c105 vm_prot_t protection);
1052 vm_prot_t protection)
1103 PMAP_ENTER(kernel_pmap, map_start, mem, protection, VM_PROT_NONE, 0, TRUE);
1047 kmem_remap_pages( register vm_object_t object, register vm_object_offset_t offset, register vm_offset_t start, register vm_offset_t end, vm_prot_t protection) argument
H A Dvm_map.h179 vm_prot_t protection; /* access permissions */ member in struct:vm_named_entry
197 * and user-exported inheritance and protection information.
228 /* vm_prot_t */ protection:3, /* protection code */ member in struct:vm_map_entry
229 /* vm_prot_t */ max_protection:3,/* maximum protection */
535 /* Find the VM object, offset, and protection for a given virtual address
932 /* Change protection */
940 /* Check protection */
945 vm_prot_t protection);
1153 * usual form; it handles a copyin based on the current protection
[all...]
H A Dvm_pageout.h422 vm_prot_t protection,
H A Dvm_protos.h54 vm_prot_t protection,
H A Dvm_shared_region.c721 mem_entry->protection = VM_PROT_ALL;
1831 mem_entry->protection = VM_PROT_ALL;
H A Dvm_fault.c759 * in "protection".
810 vm_prot_t *protection, /* Protection for mapping */
953 object, offset, fault_type, *protection, 0);
2083 *protection &= (~VM_PROT_WRITE);
2106 *protection &= ~VM_PROT_WRITE;
2620 * we can disconnect it everywhere and remove the executable protection
3341 * If the page is wired, we must fault for the current protection
4604 * Check whether the protection has changed or the object
4710 /* While we do not worry about execution protection in */
4713 /* to execute, we return with a protection failur
802 vm_fault_page( vm_object_t first_object, vm_object_offset_t first_offset, vm_prot_t fault_type, boolean_t must_be_resident, boolean_t caller_lookup, vm_prot_t *protection, vm_page_t *result_page, vm_page_t *top_page, int *type_of_fault, kern_return_t *error_code, boolean_t no_zero_fill, boolean_t data_supply, vm_object_fault_info_t fault_info) argument
[all...]
/macosx-10.10.1/apache-793/httpd/modules/dav/fs/
H A Drepos.c346 && src_finfo->protection & APR_UEXECUTE) {
347 perms = src_finfo->protection;
1988 if (resource->info->finfo.protection & APR_UEXECUTE)
2115 apr_fileperms_t perms = resource->info->finfo.protection;
2139 resource->info->finfo.protection = perms;
2158 apr_fileperms_t perms = resource->info->finfo.protection & ~APR_UEXECUTE;
2177 resource->info->finfo.protection = perms;
/macosx-10.10.1/tcl-105/tcl_ext/incrtcl/incrTcl/itcl/generic/
H A Ditcl_methods.c242 if (member->protection != ITCL_PUBLIC) {
466 if (mfunc->member->protection == ITCL_DEFAULT_PROTECT) {
467 mfunc->member->protection = ITCL_PUBLIC;
1486 if (mfunc->member->protection != ITCL_PUBLIC) {
1493 Itcl_ProtectionStr(member->protection), " function",
1565 if (mfunc->member->protection != ITCL_PUBLIC) {
1572 Itcl_ProtectionStr(member->protection), " function",
2386 * protection level (protected/private) for the method is ignored.
H A Ditcl_objects.c641 else if (mfunc->member->protection != ITCL_PUBLIC) {
796 else if (mfunc->member->protection != ITCL_PUBLIC) {
H A Ditcl_parse.c53 int pLevel; /* protection level */
546 * Invoked by Tcl whenever the user issues a protection setting
548 * variables, and assigns a protection level to them. Protection
564 ClientData clientData; /* protection level (public/protected/private) */
1051 Itcl_ProtectionStr(vlookup->vdefn->member->protection),
/macosx-10.10.1/vim-55/runtime/ftplugin/
H A Dada.vim18 " 05.11.2006 MK Bram suggested not to use include protection for
/macosx-10.10.1/xnu-2782.1.97/osfmk/kdp/
H A Dkdp_protocol.h283 uint32_t protection; /* vm_prot_t */ member in struct:__anon15132
/macosx-10.10.1/libmalloc-53.1.1/src/
H A Dnano_malloc.c176 malloc_zone_t basic_zone; // first page will be given read-only protection
266 protect(void *address, size_t size, unsigned protection, unsigned debug_flags) argument
271 err = mprotect((void *)((uintptr_t)address - vm_page_size), vm_page_size, protection);
274 protection,(uintptr_t)address - (1 << vm_page_shift));
278 err = mprotect((void *)((uintptr_t)address + size), vm_page_size, protection);
281 protection, (uintptr_t)address + size);
/macosx-10.10.1/apache-793/httpd/modules/arch/win32/
H A Dmod_isapi.c1301 info->dwFlags = (subreq->finfo.protection & APR_UREAD ? 0x001 : 0)
1302 | (subreq->finfo.protection & APR_UWRITE ? 0x002 : 0)
1303 | (subreq->finfo.protection & APR_UEXECUTE ? 0x204 : 0);
/macosx-10.10.1/apr-32/apr/apr/threadproc/beos/
H A Dproc.c169 ai.protection, original);
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dkern_core.c400 prot = vbr.protection;
/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dshell.el1047 (protection (cond ((string-match "{" var) "}")
1054 (insert protection suffix)))
/macosx-10.10.1/tcl-105/tcl_ext/incrtcl/incrTcl/itcl/tests/
H A Dprotection.test2 # Tests for method/variable protection and access
9 # RCS: $Id: protection.test,v 1.4 2004/02/12 18:09:50 davygrvy Exp $
26 test protect-1.1 {define a class with various protection levels} {
/macosx-10.10.1/dyld-353.2.1/src/
H A DImageLoaderMachOClassic.cpp464 int protection = 0; local
466 protection |= PROT_EXEC;
468 protection |= PROT_READ;
470 protection |= PROT_WRITE;
473 mmapAddress = mmap(mmapAddress, size, protection, MAP_FIXED | MAP_PRIVATE, fd, offset);
1317 // if there were __TEXT fixups, restore write protection
1916 // if there were __TEXT fixups, restore write protection
H A Ddyld.cpp3128 int protection = 0; local
3130 protection |= PROT_EXEC;
3132 protection |= PROT_READ;
3134 protection |= PROT_WRITE;
3136 if ( mmap(mmapAddress, size, protection, MAP_FIXED | MAP_PRIVATE, fd, offset) != mmapAddress ) {
/macosx-10.10.1/vim-55/runtime/syntax/
H A Djal.vim116 syn keyword jalDirective chip osc clock fuses cpu watchdog powerup protection
/macosx-10.10.1/xnu-2782.1.97/bsd/dev/dtrace/
H A Ddtrace_glue.c185 if (!(info.protection & VM_PROT_WRITE)) {
186 /* Save the original protection values for restoration later */
187 reprotect = info.protection;

Completed in 315 milliseconds

1234