| 486 | boolean_t vm_map_lookup_entry (vm_map_t, vm_offset_t, vm_map_entry_t *); |
| 487 | |
| 488 | static inline vm_map_entry_t |
| 489 | vm_map_entry_first(vm_map_t map) |
| 490 | { |
| 491 | |
| 492 | return (map->header.right); |
| 493 | } |
| 494 | |
| 495 | static inline vm_map_entry_t |
| 496 | vm_map_entry_succ(vm_map_entry_t entry) |
no outgoing calls
no test coverage detected