Searched refs:device_index (Results 1 – 5 of 5) sorted by relevance
/system/bt/vendor_libs/test_vendor_lib/model/setup/ |
D | test_model.h | 57 void Del(size_t device_index); 66 void AddDeviceToPhy(size_t device_index, size_t phy_index); 69 void DelDeviceFromPhy(size_t device_index, size_t phy_index); 83 void SetDeviceAddress(size_t device_index, Address device_address);
|
/system/core/fs_mgr/liblp/ |
D | builder.cpp | 72 if (device_index_ != other.device_index()) { in OverlapsWith() 79 if (device_index_ != interval.device_index) { in OverlapsWith() 86 return Interval(device_index(), physical_sector(), end_sector()); in AsInterval() 108 prev_extent->device_index() == new_extent->device_index()) { in AddExtent() 113 prev_extent->device_index(), prev_extent->physical_sector()); in AddExtent() 592 DCHECK(previous.device_index == current.device_index); in ExtentsToFreeList() 595 if (!AlignSector(block_devices_[current.device_index], previous.end, &aligned)) { in ExtentsToFreeList() 608 free_regions->emplace_back(current.device_index, aligned, current.start); in ExtentsToFreeList() 624 CHECK(linear->device_index() < device_extents.size()); in GetFreeRegions() 625 auto& extents = device_extents[linear->device_index()]; in GetFreeRegions() [all …]
|
D | utility_test.cpp | 100 return l.device_index() == r.device_index() && l.physical_sector() == r.physical_sector() && in operator ==()
|
D | builder_test.cpp | 888 return a.device_index == b.device_index && a.start == b.start && a.end == b.end; in operator ==()
|
/system/core/fs_mgr/liblp/include/liblp/ |
D | builder.h | 75 LinearExtent(uint64_t num_sectors, uint32_t device_index, uint64_t physical_sector) in LinearExtent() argument 76 : Extent(num_sectors), device_index_(device_index), physical_sector_(physical_sector) {} in LinearExtent() 86 uint32_t device_index() const { return device_index_; } in device_index() function 170 uint32_t device_index; member 174 Interval(uint32_t device_index, uint64_t start, uint64_t end) in Interval() 175 : device_index(device_index), start(start), end(end) {} in Interval()
|