Searched refs:end_offset (Results 1 - 9 of 9) sorted by relevance

/system/core/libunwindstack/
H A DSymbols.h32 Info(uint64_t start_offset, uint64_t end_offset, uint64_t str_offset) argument
33 : start_offset(start_offset), end_offset(end_offset), str_offset(str_offset) {}
35 uint64_t end_offset; member in struct:unwindstack::Symbols::Info
H A DSymbols.cpp47 } else if (addr < info->end_offset) {
64 CHECK(addr >= info->start_offset && addr <= info->end_offset);
87 uint64_t end_offset = start_offset + entry.st_size; local
90 symbols_.emplace_back(start_offset, end_offset, str_offset_ + entry.st_name);
93 if (addr >= start_offset && addr < end_offset) {
H A DDwarfCfa.cpp40 bool DwarfCfa<AddressType>::GetLocationInfo(uint64_t pc, uint64_t start_offset, uint64_t end_offset, argument
59 if ((cfa_offset = memory_->cur_offset()) >= end_offset) {
184 uint64_t end_offset = memory_->cur_offset(); local
188 for (uint64_t i = cfa_offset; i < end_offset; i++) {
215 uint64_t end_offset; local
216 if (!memory_->ReadULEB128(&end_offset)) {
219 log_string += " " + std::to_string(end_offset);
220 end_offset += memory_->cur_offset();
223 op.GetLogInfo(memory_->cur_offset(), end_offset, &expression_lines);
224 memory_->set_cur_offset(end_offset);
236 uint64_t end_offset = memory_->cur_offset(); local
267 Log(uint32_t indent, uint64_t pc, uint64_t load_bias, uint64_t start_offset, uint64_t end_offset) argument
[all...]
H A DDwarfCfa.h71 bool GetLocationInfo(uint64_t pc, uint64_t start_offset, uint64_t end_offset,
75 uint64_t end_offset);
H A DDwarfOp.cpp150 uint64_t end_offset = memory_->cur_offset(); local
153 for (size_t i = start_offset; i < end_offset; i++) {
160 memory_->set_cur_offset(end_offset);
/system/update_engine/
H A Dtest_http_server.cc79 off_t end_offset{0}; // non-inclusive, zero indicates unspecified.
131 request->end_offset = atoll(range.c_str() + range.find('-') + 1) + 1;
136 if (request->end_offset > 0)
138 (intmax_t)request->end_offset);
182 ssize_t WriteHeaders(int fd, const off_t start_offset, const off_t end_offset, argument
196 const off_t content_length = end_offset - start_offset;;
200 if (start_offset || start_offset == end_offset) {
204 Itoa(start_offset == end_offset ? 0 : start_offset) +
205 "-" + Itoa(end_offset - 1) + "/" + Itoa(end_offset)
224 WritePayload(int fd, const off_t start_offset, const off_t end_offset, const char first_byte, const size_t line_len) argument
231 << end_offset; local
274 WritePayload(int fd, const off_t start_offset, const off_t end_offset) argument
310 size_t end_offset = (request.end_offset > 0 ? local
428 HandleErrorIfOffset(int fd, const HttpRequest& request, size_t end_offset, int max_fails) argument
[all...]
H A Dlibcurl_http_fetcher.cc225 size_t end_offset = 0; local
227 end_offset = static_cast<size_t>(resume_offset_) + download_length_ - 1;
228 CHECK_LE((size_t) resume_offset_, end_offset);
234 if (end_offset)
235 range_str += std::to_string(end_offset);
/system/libufdt/
H A Dufdt_convert.c296 int end_offset; local
297 int start_tag = fdt_next_tag(fdtp, start_offset, &end_offset);
299 fdt_to_ufdt_tree(fdtp, start_offset, &end_offset, start_tag, pool);
/system/nfc/src/nfc/tags/
H A Drw_t1t_ndef.cc856 uint8_t end_offset = T1T_STATIC_SIZE - (2 * T1T_BLOCK_SIZE); local
863 for (offset = start_offset; offset < end_offset && !failed && !found;) {

Completed in 127 milliseconds