Searched defs:GetLength (Results 1 - 7 of 7) sorted by relevance

/art/runtime/base/unix_file/
H A Dnull_file.cc50 int64_t NullFile::GetLength() const { function in class:unix_file::NullFile
H A Dstring_file.cc46 const int64_t available_bytes = std::min(byte_count, GetLength() - offset);
62 int64_t StringFile::GetLength() const { function in class:unix_file::StringFile
81 const int64_t bytes_past_end = offset - GetLength();
H A Dmapped_file.cc119 int64_t MappedFile::GetLength() const { function in class:unix_file::MappedFile
123 return FdFile::GetLength();
150 return GetLength();
H A Dfd_file.cc86 int64_t FdFile::GetLength() const { function in class:unix_file::FdFile
/art/runtime/mirror/
H A Darray.h41 int32_t GetLength() const { function in class:art::mirror::Array
75 if (UNLIKELY(static_cast<uint32_t>(index) >= static_cast<uint32_t>(GetLength()))) {
H A Dstring.cc36 SetHashCode(ComputeUtf16Hash(GetCharArray(), GetOffset(), GetLength()));
40 return CountUtf8Bytes(GetCharArray()->GetData() + GetOffset(), GetLength());
44 int32_t count = GetLength();
90 DCHECK(result != 0 || ComputeUtf16Hash(GetCharArray(), GetOffset(), GetLength()) == 0)
95 int32_t String::GetLength() const { function in class:art::mirror::String
97 DCHECK(result >= 0 && result <= GetCharArray()->GetLength());
177 string->SetCount(array->GetLength());
188 } else if (this->GetLength() != that->GetLength()) {
194 for (int32_t i = 0; i < that->GetLength();
[all...]
/art/runtime/jdwp/
H A Djdwp.h396 size_t GetLength() { return byte_count_; } function in class:art::JDWP::Request

Completed in 1905 milliseconds