Searched refs:vm_address_t (Results 1 - 25 of 53) sorted by relevance

123

/macosx-10.5.8/xnu-1228.15.4/libsyscall/mach/
H A Dmig_deallocate.c60 mig_deallocate(vm_address_t addr, vm_size_t size)
H A Dmig_allocate.c60 mig_allocate(vm_address_t *addr_p, vm_size_t size)
H A Dsbrk.c46 static vm_address_t sbrk_curbrk;
H A Dmach_msg.c380 (vm_address_t *)&bufReply,
390 (vm_address_t *)&bufRequest,
395 (vm_address_t)bufReply,
410 (vm_address_t) bufRequest,
461 (vm_address_t) bufRequest,
464 (vm_address_t) bufReply,
498 (vm_address_t *)&bufReply,
515 (vm_address_t *)&bufRequest,
520 (vm_address_t)bufReply,
603 (vm_address_t) bufReques
[all...]
/macosx-10.5.8/xnu-1228.15.4/iokit/Drivers/platform/drvAppleNMI/
H A DAppleNMI.cpp130 nmiIntSource = ml_phys_read((vm_address_t)nmiIntSourceAddr);
132 ml_phys_write((vm_address_t)nmiIntSourceAddr, nmiIntSource);
135 ml_phys_write((vm_address_t)nmiIntSourceAddr, nmiIntSource);
142 nmiIntSource = ml_phys_read((vm_address_t)nmiIntSourceAddr);
144 ml_phys_write((vm_address_t)nmiIntSourceAddr, nmiIntSource);
147 ml_phys_write((vm_address_t)nmiIntSourceAddr, nmiIntSource);
/macosx-10.5.8/xnu-1228.15.4/libsa/
H A Ddgraph.h83 vm_address_t loaded_address; // address loaded at or being faked at for symbol generation
91 vm_address_t symbols;
93 vm_address_t symbols_malloc;
96 vm_address_t kernel_alloc_address;
98 vm_address_t kernel_load_address;
122 vm_address_t opaque_base_image;
195 vm_address_t load_address,
213 vm_address_t load_address,
H A Dmalloc.c219 kern_return_t vm_allocate(vm_map_t target_task, vm_address_t *address, vm_size_t size, int flags)
224 *address = (vm_address_t)malloc(size);
231 kern_return_t vm_deallocate(vm_map_t target_task, vm_address_t address, vm_size_t size)
238 kern_return_t vm_protect(vm_map_t target_task, vm_address_t address, vm_size_t size, boolean_t set_maximum, vm_prot_t new_protection)
244 kern_return_t vm_msync(vm_map_t target_task, vm_address_t address, vm_size_t size, vm_sync_t sync_flags)
H A Dkld_patch.c288 vm_offset_t offset = (vm_address_t) vAddr;
293 offset = (vm_address_t) vAddr - (vm_address_t) data->fData;
490 kmem_free(kernel_map, (vm_address_t) file->fMap, file->fMapSize);
493 vm_address_t padVM;
496 padVM = round_page((vm_address_t) file->fMap + file->fMapSize);
497 padSize = (vm_size_t) ((vm_address_t) file->fPadEnd - padVM);
581 vm_address_t probeAddr;
613 vm_address_t padVM;
614 vm_address_t padVMEn
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/mach/
H A Dkmod.h102 vm_address_t address; // starting address
168 extern kmod_info_t *kmod_lookupbyaddress(vm_address_t address);
169 extern int kmod_lookupidbyaddress_locked(vm_address_t address);
181 vm_address_t address, vm_size_t size,
H A Dmig.h132 vm_address_t reserved; /* reserved for MIG use */
294 extern void mig_allocate(vm_address_t *, vm_size_t);
297 extern void mig_deallocate(vm_address_t, vm_size_t);
H A Drpc.h121 vm_address_t base_addr; /* Address of this struct in user */
H A Dvm_types.h41 typedef vm_offset_t vm_address_t; typedef
/macosx-10.5.8/xnu-1228.15.4/iokit/Kernel/
H A DIOLib.cpp201 vm_address_t address;
202 vm_address_t allocationAddress;
212 adjustedSize = size + sizeof(vm_size_t) + sizeof(vm_address_t);
233 allocationAddress = (vm_address_t) kalloc(adjustedSize);
237 + (sizeof(vm_size_t) + sizeof(vm_address_t)))
241 - sizeof(vm_address_t))) = adjustedSize;
242 *((vm_address_t *)(address - sizeof(vm_address_t)))
261 vm_address_t allocationAddress;
269 adjustedSize = size + sizeof(vm_size_t) + sizeof(vm_address_t);
[all...]
H A DIOMapper.cpp126 while ((vm_address_t) IOMapper::gSystem & kWaitMask)
152 vm_address_t address;
174 vm_address_t address = (vm_address_t) artHandle;
220 assert(!((vm_address_t) IOMapper::gSystem & 3));
232 assert(!((vm_address_t) IOMapper::gSystem & 3));
H A DIOKitKernelInternal.h46 vm_map_t IOPageableMapForAddress(vm_address_t address);
/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Dubc_internal.h101 vm_address_t csb_mem_kaddr;
173 int ubc_cs_blob_add(vnode_t, cpu_type_t, off_t, vm_address_t, vm_size_t);
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/i386/
H A Dmem.c180 if (((vm_address_t)uio->uio_offset >= VM_MAX_KERNEL_ADDRESS) ||
181 ((vm_address_t)uio->uio_offset <= VM_MIN_KERNEL_ADDRESS))
/macosx-10.5.8/xnu-1228.15.4/iokit/IOKit/
H A DIOInterleavedMemoryDescriptor.h61 virtual bool initWithAddress( vm_address_t address, /* not supported */
H A DIOMultiMemoryDescriptor.h58 virtual bool initWithAddress( vm_address_t address, /* not supported */
H A DIOMapper.h113 { if ((vm_address_t) gSystem & kWaitMask) waitForSystemMapper(); };
H A DIOTypes.h81 typedef vm_address_t IOVirtualAddress;
H A DIOMemoryDescriptor.h244 static IOMemoryDescriptor * withAddress(vm_address_t address,
400 virtual bool initWithAddress(vm_address_t address,
777 /* DEPRECATED */ vm_address_t _cachedVirtualAddress; /* a cached virtual-to-physical */
824 virtual bool initWithAddress(vm_address_t address,
899 virtual bool initWithAddress(vm_address_t address,
/macosx-10.5.8/AppleMacRiscPCI-3.4/
H A DAppleDART.cpp115 ( (vm_address_t) fRegBase + (tlb << DARTSETSHFT) + DARTTAG) )
659 static inline void __dcbf(vm_address_t base, unsigned long offset)
667 static inline void __dcbst(vm_address_t base, unsigned long offset)
675 static inline unsigned long __lwzx(vm_address_t base, unsigned long offset)
694 vm_address_t arithAddr = (vm_address_t) vaddr;
695 vm_address_t vaddr_cache_aligned = arithAddr & ~(csize-1);
/macosx-10.5.8/xnu-1228.15.4/libkern/c++/
H A DOSRuntime.cpp333 vm_address_t *headerArray = (vm_address_t *) getmachheaders();
/macosx-10.5.8/xnu-1228.15.4/osfmk/i386/AT386/
H A Dmodel_dep.c838 panic_print_macho_symbol_name(struct mach_header *mh, vm_address_t search)
846 vm_address_t bestaddr = 0, diff, curdiff;
879 vm_address_t slide = ((vm_address_t)mh) - orig_ts->vmaddr;
895 curdiff = search - (vm_address_t)sym[i].n_value;
918 panic_print_kmod_symbol_name(vm_address_t search)
937 panic_print_symbol_name(vm_address_t search)
1028 panic_print_symbol_name((vm_address_t)frame->caller);

Completed in 185 milliseconds

123