Searched refs:raddr (Results 1 - 7 of 7) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/libkern/gen/
H A DOSDebug.cpp140 i386_validate_raddr(vm_offset_t raddr) argument
142 return ((raddr > VM_MIN_KERNEL_ADDRESS) &&
143 (raddr < VM_MAX_KERNEL_ADDRESS));
182 vm_offset_t stackptr, stackptr_prev, raddr; local
190 raddr = *((vm_offset_t *) (stackptr + i386_RETURN_OFFSET));
192 if (!i386_validate_raddr(raddr))
195 bt[frame_index++] = (void *) raddr;
210 raddr = *((vm_offset_t *) (stackptr + i386_RETURN_OFFSET));
212 if (!i386_validate_raddr(raddr))
215 bt[frame_index] = (void *) raddr;
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/netat/
H A Dat_pcb.h90 raddr; /* remote net and node */ member in struct:atpcb
H A Dddp_usrreq.c196 NET_ASSIGN(ddp->dst_net, pcb->raddr.s_net);
197 ddp->dst_node = pcb->raddr.s_node;
296 sat->sat_addr = pcb->raddr;
318 pcb->raddr = faddr->sat_addr;
/macosx-10.5.8/xnu-1228.15.4/pexpert/pexpert/ppc/
H A Dprotos.h149 extern void ReadReal(unsigned int raddr, unsigned int *vaddr);
/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A DFirmware.h124 extern void ReadReal(addr64_t raddr, unsigned int *vaddr);
H A Dmodel_dep.c486 unsigned int sframe[8], raddr, dumbo; local
505 raddr = (unsigned int)pmap_find_phys(kernel_pmap, (addr64_t)stackptr); /* Get physical frame address */
506 if(!raddr || (stackptr > vm_last_addr)) { /* Is it mapped? */
511 if(!mapping_phys_lookup(raddr, &dumbo)) { /* Is it within physical RAM? */
512 kdb_printf("\n backtrace terminated - frame outside of RAM: v=0x%08X, p=%08X\n", stackptr, raddr); /* No, tell 'em */
516 ReadReal((addr64_t)((raddr << 12) | (stackptr & 4095)), &sframe[0]); /* Fetch the stack frame */
H A Dmappings.c1286 addr64_t raddr; local
1293 raddr = (addr64_t)((unsigned int)mbl); /* Perm means V=R */
1303 raddr = (addr64_t)pp << 12; /* Convert physical page to physical address */
1308 mb->mapblokvrswap = raddr ^ (addr64_t)((unsigned int)mbl); /* Form translation mask */

Completed in 92 milliseconds