Searched defs:Range (Results 1 - 3 of 3) sorted by last modified time

/system/update_engine/common/
H A Dmulti_range_http_fetcher.h62 ranges_.push_back(Range(offset, size));
66 ranges_.push_back(Range(offset));
125 class Range { class in class:chromeos_update_engine::MultiRangeHttpFetcher
127 Range(off_t offset, size_t length) : offset_(offset), length_(length) {} function in class:chromeos_update_engine::MultiRangeHttpFetcher::Range
128 explicit Range(off_t offset) : offset_(offset), length_(0) {} function in class:chromeos_update_engine::MultiRangeHttpFetcher::Range
142 typedef std::vector<Range> RangesVect;
/system/core/libmemunreachable/
H A DHeapWalker.h31 struct Range { struct in namespace:android
36 bool operator==(const Range& other) const {
39 bool operator!=(const Range& other) const { return !(*this == other); }
44 bool operator()(const Range& a, const Range& b) const { return a.end <= b.begin; }
73 bool Leaked(allocator::vector<Range>&, size_t limit, size_t* num_leaks, size_t* leak_bytes);
78 void ForEachPtrInRange(const Range& range, F&& f);
88 void RecurseRoot(const Range& root);
89 bool WordContainsAllocationPtr(uintptr_t ptr, Range* range, AllocationInfo** info);
94 using AllocationMap = allocator::map<Range, AllocationInf
[all...]
/system/core/adb/
H A Drange.h23 struct Range { struct
24 explicit Range(std::string data) : data_(std::move(data)) {} function in struct:Range
26 Range(const Range& copy) = delete;
27 Range& operator=(const Range& copy) = delete;
29 Range(Range&& move) = default;
30 Range& operator=(Range
[all...]

Completed in 90 milliseconds