Home
last modified time | relevance | path

Searched refs:depth (Results 1 – 12 of 12) sorted by relevance

/kernel/target/arm64/boot-shim/
A Ddevicetree.c146 uint32_t depth = 0; in dt_walk() local
157 if (depth) in dt_walk()
161 depth++; in dt_walk()
163 if (ncb(depth, p, cookie)) in dt_walk()
167 if (depth == 0) in dt_walk()
169 depth--; in dt_walk()
172 if (depth == 0) in dt_walk()
186 if (depth != 0) in dt_walk()
A Ddevicetree.h38 typedef int (*dt_node_cb)(int depth, const char *name, void *cookie);
A Dboot-shim.c69 static int node_callback(int depth, const char *name, void *cookie) { in node_callback() argument
/kernel/vm/include/vm/
A Dvm_address_region.h66 virtual bool OnVmAddressRegion(const VmAddressRegion* vmar, uint depth) { in OnVmAddressRegion() argument
72 uint depth) { in OnVmMapping() argument
126 virtual void Dump(uint depth, bool verbose) const = 0;
245 void Dump(uint depth, bool verbose) const override;
259 virtual bool EnumerateChildrenLocked(VmEnumerator* ve, uint depth);
383 void Dump(uint depth, bool verbose) const override { in Dump() argument
415 bool EnumerateChildrenLocked(VmEnumerator* ve, uint depth) override { in EnumerateChildrenLocked() argument
450 void Dump(uint depth, bool verbose) const override;
A Dvm_object_physical.h37 void Dump(uint depth, bool verbose) override;
A Dvm_object_paged.h78 void Dump(uint depth, bool verbose) override;
A Dvm_object.h138 virtual void Dump(uint depth, bool verbose) = 0;
/kernel/object/
A Ddiagnostics.cpp331 uint depth) final { in OnVmMapping() argument
412 uint depth) override { in OnVmMapping() argument
468 bool OnVmAddressRegion(const VmAddressRegion* vmar, uint depth) override { in OnVmAddressRegion() argument
475 entry.depth = depth + 1; // The root aspace is depth 0. in OnVmAddressRegion()
486 uint depth) override { in OnVmMapping() argument
494 entry.depth = depth + 1; // The root aspace is depth 0. in OnVmMapping()
539 entry.depth = 0; in GetVmAspaceMaps()
567 uint depth) override { in OnVmMapping() argument
/kernel/vm/
A Dvm_object_physical.cpp62 void VmObjectPhysical::Dump(uint depth, bool verbose) { in Dump() argument
66 for (uint i = 0; i < depth; ++i) { in Dump()
A Dvm_address_region.cpp533 bool VmAddressRegion::EnumerateChildrenLocked(VmEnumerator* ve, uint depth) { in EnumerateChildrenLocked() argument
538 const uint min_depth = depth; in EnumerateChildrenLocked()
547 if (!ve->OnVmMapping(mapping, this, depth)) { in EnumerateChildrenLocked()
553 if (!ve->OnVmAddressRegion(vmar, depth)) { in EnumerateChildrenLocked()
560 depth++; in EnumerateChildrenLocked()
564 if (depth > min_depth && itr == end) { in EnumerateChildrenLocked()
573 } while (depth-- != min_depth); in EnumerateChildrenLocked()
590 void VmAddressRegion::Dump(uint depth, bool verbose) const { in Dump() argument
592 for (uint i = 0; i < depth; ++i) { in Dump()
598 child.Dump(depth + 1, verbose); in Dump()
A Dvm_mapping.cpp51 void VmMapping::Dump(uint depth, bool verbose) const { in Dump() argument
53 for (uint i = 0; i < depth; ++i) { in Dump()
60 for (uint i = 0; i < depth + 1; ++i) { in Dump()
72 object_->Dump(depth + 1, false); in Dump()
A Dvm_object_paged.cpp314 void VmObjectPaged::Dump(uint depth, bool verbose) { in Dump() argument
328 for (uint i = 0; i < depth; ++i) { in Dump()
336 auto f = [depth](const auto p, uint64_t offset) { in Dump()
337 for (uint i = 0; i < depth + 1; ++i) { in Dump()

Completed in 29 milliseconds