Searched refs:prot (Results 126 - 150 of 170) sorted by relevance

1234567

/macosx-10.10/ruby-106/ruby/test/ruby/
H A Dtest_object.rb583 def prot method in class:test_remove_method.test_public_send
594 assert_raise(NoMethodError) {c.public_send(:prot)}
597 assert_raise(NoMethodError, bug7499) {c.invoke(:prot)}
/macosx-10.10/xnu-2782.1.97/osfmk/vm/
H A Dbsd_vm.c908 vm_prot_t prot)
914 PAGER_DEBUG(PAGER_ALL, ("vnode_pager_map: %p %x\n", mem_obj, prot));
918 ret = ubc_map(vnode_object->vnode_handle, prot);
906 vnode_pager_map( memory_object_t mem_obj, vm_prot_t prot) argument
H A Dvm_compressor_pager.c115 __unused vm_prot_t prot);
249 __unused vm_prot_t prot)
247 compressor_memory_object_map( __unused memory_object_t mem_obj, __unused vm_prot_t prot) argument
H A Dvm_pageout.c5615 vm_prot_t prot; local
5639 prot = entry->protection & ~VM_PROT_WRITE;
5640 if (override_nx(map, entry->alias) && prot)
5641 prot |= VM_PROT_EXECUTE;
5649 prot);
5663 vm_prot_t prot; local
5682 &new_offset, &prot, &wired,
7380 vm_prot_t prot; local
7432 prot = VM_PROT_READ;
7434 prot
[all...]
/macosx-10.10/xnu-2782.1.97/security/
H A Dmac_policy.h868 @param prot mmap protections; see mmap(2)
874 in prot. The maxprot field holds the maximum permissions on the new
887 int prot,
896 @param prot mmap protections to be downgraded
904 int *prot
2538 @param prot mmap protections; see mmap(2)
2551 int prot,
2858 @param prot mmap protections; see mmap(2)
2879 int prot,
2889 @param prot Memor
[all...]
/macosx-10.10/network_cmds-457/ip6fw.tproj/
H A Dip6fw.c157 print_port(prot, port, comma)
158 u_char prot;
168 pe = getprotobynumber(prot);
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dunix++.h148 void *mmap(int prot = PROT_READ, size_t length = 0,
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dunix++.h148 void *mmap(int prot = PROT_READ, size_t length = 0,
/macosx-10.10/ppp-786.1.1/Helpers/pppd/
H A Dlcp.c633 u_short prot; local
640 GETSHORT(prot, inp);
655 if (protp->protocol == prot && protp->enabled_flag) {
660 warning("Protocol-Reject for unsupported protocol 0x%x", prot);
/macosx-10.10/xnu-2782.1.97/osfmk/mach/
H A Dmemory_object_types.h158 vm_prot_t prot);
/macosx-10.10/tcl-105/tcl_ext/incrtcl/incrTcl/itcl/tests/
H A Dbody.test161 protected variable prot
184 list [catch "itcl::configbody test_cbody::prot {bogus}" msg] $msg
185 } {1 {option "::test_cbody::prot" is not a public configuration option}}
/macosx-10.10/vim-55/runtime/syntax/
H A Dlftp.vim128 \ max-p[ackets-in-flight] prot[ocol-version]
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/sh/
H A Dio.c135 char* prot; local
144 if ((n = strtol(service, &prot, 10)) > 0 && n <= USHRT_MAX && !*prot)
/macosx-10.10/dyld-353.2.1/src/
H A DImageLoader.h156 extern "C" void* xmmap(void* addr, size_t len, int prot, int flags, int fd, off_t offset);
H A Ddyld.cpp3539 vm_prot_t prot = VM_PROT_EXECUTE | PROT_READ | VM_PROT_WRITE; local
3540 vm_protect(mach_task_self(), p->address, p->size, false, prot); local
3544 (prot & PROT_READ) ? 'r' : '.', (prot & PROT_WRITE) ? 'w' : '.', (prot & PROT_EXEC) ? 'x' : '.' );
/macosx-10.10/Heimdal-398.1.2/appl/ftp/ftp/
H A Dsecurity.c496 prot(char *pl) function
/macosx-10.10/IOPCIFamily-239.1.2/IOKit/pci/
H A DIOPCIBridge.h265 IOReturn protectDevice(IOPCIDevice * device, uint32_t space, uint32_t prot);
H A DIOPCIDevice.h841 IOReturn protectDevice(uint32_t space, uint32_t prot);
/macosx-10.10/xnu-2782.1.97/osfmk/default_pager/
H A Ddp_memory_object.c421 __unused vm_prot_t prot)
419 dp_memory_object_map( __unused memory_object_t mem_obj, __unused vm_prot_t prot) argument
/macosx-10.10/dyld-353.2.1/launch-cache/
H A DMachORebaser.hpp1047 const int prot = writable ? (PROT_READ | PROT_WRITE) : PROT_READ;
1049 uint8_t* p = (uint8_t*)::mmap(NULL, stat_buf.st_size, prot, flags, fd, 0);
H A Dupdate_dyld_shared_cache.cpp2546 fprintf(stderr, "update_dyld_shared_cache: cache mappings: address=0x%0llX, size=0x%0llX, fileOffset=0x%0llX, prot=0x%X\n",
3043 const char* prot = "RW"; local
3045 prot = "EX";
3047 prot = "RO";
3049 prot = "WX";
3051 fprintf(fmap, "mapping %s %4lluMB 0x%0llX -> 0x%0llX\n", prot, it->sfm_size/(1024*1024),
3054 fprintf(fmap, "mapping %s %4lluKB 0x%0llX -> 0x%0llX\n", prot, it->sfm_size/1024,
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dtransfer.c1434 char prot[16]; /* URL protocol string storage */ local
1437 return (2 == sscanf(url, "%15[^?&/:]://%c", prot, &letter)) ? TRUE : FALSE;
/macosx-10.10/curl-83.1.2/curl/packages/vms/
H A Dbuild_vms.com263 $ create/dir 'exedir'/prot=o:rwed
337 $ if (f$search(prods) .nes. "") then set prot=o:rwed 'prods'
414 $ if (f$search(prods) .nes. "") then set prot=o:rwed 'prods'
419 $ if (f$search(prods) .nes. "") then set prot=o:rwed 'prods'
424 $ if (f$search(prods) .nes. "") then set prot=o:rwed 'prods'
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIOServicePM.cpp446 IOPMprot * prot = new IOPMprot; local
447 if (prot)
449 prot->init();
450 prot->ourName = fName;
451 prot->thePlatform = gPlatform;
452 fPMVars = prot;
453 pm_vars = prot;
/macosx-10.10/IOPCIFamily-239.1.2/
H A DIOPCIBridge.cpp1953 IOReturn IOPCIBridge::protectDevice(IOPCIDevice * device, uint32_t space, uint32_t prot) argument
1957 prot &= (VM_PROT_READ|VM_PROT_WRITE);
1958 prot <<= kPCIDeviceStateConfigProtectShift;
1960 DLOG("%s::protectDevice(%x, %x)\n", device->getName(), space, prot);
1962 ret = configOp(device, kConfigOpProtect, &prot);

Completed in 388 milliseconds

1234567