| 320 | } |
| 321 | |
| 322 | static __inline bool |
| 323 | vm_object_reserv(vm_object_t object) |
| 324 | { |
| 325 | |
| 326 | if (object != NULL && |
| 327 | (object->flags & (OBJ_COLORED | OBJ_FICTITIOUS)) == OBJ_COLORED) { |
| 328 | return (true); |
| 329 | } |
| 330 | return (false); |
| 331 | } |
| 332 | |
| 333 | static __inline bool |
| 334 | vm_object_mightbedirty(vm_object_t object) |
no outgoing calls
no test coverage detected