Home
last modified time | relevance | path

Searched refs:dex_location_size (Results 1 – 2 of 2) sorted by relevance

/art/runtime/jit/
Dprofile_compilation_info.cc757 /*out*/uint16_t* dex_location_size, in ReadProfileLineHeaderElements() argument
760 READ_UINT(uint16_t, buffer, *dex_location_size, error); in ReadProfileLineHeaderElements()
777 uint16_t dex_location_size; in ReadProfileLineHeader() local
778 if (!ReadProfileLineHeaderElements(header_buffer, &dex_location_size, line_header, error)) { in ReadProfileLineHeader()
782 if (dex_location_size == 0 || dex_location_size > kMaxDexFileKeyLength) { in ReadProfileLineHeader()
784 std::to_string(static_cast<uint32_t>(dex_location_size)); in ReadProfileLineHeader()
788 SafeBuffer location_buffer(dex_location_size); in ReadProfileLineHeader()
794 reinterpret_cast<char*>(location_buffer.Get()), dex_location_size); in ReadProfileLineHeader()
Dprofile_compilation_info.h436 /*out*/uint16_t* dex_location_size,