Lines Matching refs:is_phys
402 bool is_phys) in __lookup_object() argument
404 struct rb_node *rb = is_phys ? object_phys_tree_root.rb_node : in __lookup_object()
547 bool is_phys) in __find_and_get_object() argument
554 object = __lookup_object(ptr, alias, is_phys); in __find_and_get_object()
593 bool is_phys) in find_and_remove_object() argument
599 object = __lookup_object(ptr, alias, is_phys); in find_and_remove_object()
632 int min_count, gfp_t gfp, bool is_phys) in __create_object() argument
652 object->flags = OBJECT_ALLOCATED | (is_phys ? OBJECT_PHYS : 0); in __create_object()
690 if (!is_phys) { in __create_object()
694 link = is_phys ? &object_phys_tree_root.rb_node : in __create_object()
718 rb_insert_color(&object->rb_node, is_phys ? &object_phys_tree_root : in __create_object()
783 static void delete_object_part(unsigned long ptr, size_t size, bool is_phys) in delete_object_part() argument
788 object = find_and_remove_object(ptr, 1, is_phys); in delete_object_part()
806 GFP_KERNEL, is_phys); in delete_object_part()
809 GFP_KERNEL, is_phys); in delete_object_part()
830 static void paint_ptr(unsigned long ptr, int color, bool is_phys) in paint_ptr() argument
834 object = __find_and_get_object(ptr, 0, is_phys); in paint_ptr()
859 static void make_black_object(unsigned long ptr, bool is_phys) in make_black_object() argument
861 paint_ptr(ptr, KMEMLEAK_BLACK, is_phys); in make_black_object()