Searched refs:redirect (Results 1 - 6 of 6) sorted by relevance

/darwin-on-arm/xnu/iokit/IOKit/
H A DIOSubMemoryDescriptor.h91 IOReturn redirect( task_t safeTask, bool redirect );
H A DIOMemoryDescriptor.h550 kIOMapUnique allows a special kind of mapping to be created that may be used with the IOMemoryMap::redirect() API. These mappings will not be shared as is the default - there will always be a unique mapping created for the caller, not an existing mapping with an extra reference.<br>
598 IOReturn redirect( task_t safeTask, bool redirect );
733 /*! @function redirect
736 @param newBackingMemory The IOMemoryDescriptor that represents the physical memory that is to be now mapped in the virtual range the IOMemoryMap represents. If newBackingMemory is NULL, any access to the mapping will hang (in vm_fault()) until access has been restored by a new call to redirect() with non-NULL newBackingMemory argument.
744 virtual IOReturn redirect(IOMemoryDescriptor * newBackingMemory,
748 virtual IOReturn redirect(IOMemoryDescriptor * newBackingMemory,
789 IOReturn redirect(
790 task_t intoTask, bool redirect );
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOSubMemoryDescriptor.cpp37 IOReturn IOSubMemoryDescriptor::redirect( task_t safeTask, bool doRedirect ) function in class:IOSubMemoryDescriptor
40 super::redirect( safeTask, doRedirect );
42 return( _parent->redirect( safeTask, doRedirect ));
H A DIOMemoryDescriptor.cpp3197 IOLog("sleep mem redirect %p, %qx\n", this, sourceOffset);
3331 IOReturn IOMemoryDescriptor::redirect( task_t safeTask, bool doRedirect )
3347 mapping->redirect( safeTask, doRedirect );
3364 err = subMem->redirect( safeTask, doRedirect );
3372 IOReturn IOMemoryMap::redirect( task_t safeTask, bool doRedirect )
3377 // err = ((IOMemoryMap *)superMap)->redirect( safeTask, doRedirect );
3395 IOLog("IOMemoryMap::redirect(%d, %p) 0x%qx:0x%qx from %p\n", doRedirect, this, fAddress, fLength, fAddressMap);
3413 fMemory->redirect(safeTask, doRedirect);
3745 IOReturn IOMemoryMap::redirect(IOMemoryDescriptor * newBackingMemory,
3749 return (redirect(newBackingMemor
[all...]
/darwin-on-arm/xnu/bsd/netinet6/
H A Din6_proto.c416 int ip6_maxdynroutes = 1024; /* Max # of routes created via redirect */
514 redirect, CTLFLAG_RW | CTLFLAG_LOCKED, &ip6_sendredirects, 0, "");
/darwin-on-arm/xnu/bsd/netinet/
H A Dip_input.c172 SYSCTL_INT(_net_inet_ip, IPCTL_SENDREDIRECTS, redirect, CTLFLAG_RW | CTLFLAG_LOCKED,
2456 * perhaps should send a redirect to sender to shortcut a hop.
2457 * Only send redirect if source is sending directly to us,
2459 * Also, don't send redirect if forwarding using a default route
2460 * or a route modified by a redirect.
2483 printf("redirect (%d) to %lx\n", code, (u_int32_t)dest);
2541 case 0: /* forwarded, but need redirect */

Completed in 41 milliseconds