Lines Matching refs:is_phys
391 bool is_phys) in __lookup_object() argument
393 struct rb_node *rb = is_phys ? object_phys_tree_root.rb_node : in __lookup_object()
536 bool is_phys) in __find_and_get_object() argument
543 object = __lookup_object(ptr, alias, is_phys); in __find_and_get_object()
580 bool is_phys) in find_and_remove_object() argument
586 object = __lookup_object(ptr, alias, is_phys); in find_and_remove_object()
608 int min_count, gfp_t gfp, bool is_phys) in __create_object() argument
628 object->flags = OBJECT_ALLOCATED | (is_phys ? OBJECT_PHYS : 0); in __create_object()
665 if (!is_phys) { in __create_object()
669 link = is_phys ? &object_phys_tree_root.rb_node : in __create_object()
693 rb_insert_color(&object->rb_node, is_phys ? &object_phys_tree_root : in __create_object()
759 static void delete_object_part(unsigned long ptr, size_t size, bool is_phys) in delete_object_part() argument
764 object = find_and_remove_object(ptr, 1, is_phys); in delete_object_part()
782 GFP_KERNEL, is_phys); in delete_object_part()
785 GFP_KERNEL, is_phys); in delete_object_part()
806 static void paint_ptr(unsigned long ptr, int color, bool is_phys) in paint_ptr() argument
810 object = __find_and_get_object(ptr, 0, is_phys); in paint_ptr()
835 static void make_black_object(unsigned long ptr, bool is_phys) in make_black_object() argument
837 paint_ptr(ptr, KMEMLEAK_BLACK, is_phys); in make_black_object()