Home
last modified time | relevance | path

Searched refs:SetLength (Results 1 – 14 of 14) sorted by relevance

/art/runtime/base/unix_file/
Drandom_access_file.h51 virtual int SetLength(int64_t new_length) = 0;
Drandom_access_file_test.h120 ASSERT_EQ(-EINVAL, file->SetLength(-123)); in TestSetLength()
124 ASSERT_EQ(0, file->SetLength(new_length)); in TestSetLength()
132 ASSERT_EQ(0, file->SetLength(new_length)); in TestSetLength()
Dfd_file.cc193 int FdFile::SetLength(int64_t new_length) { in SetLength() function in unix_file::FdFile
378 result = SetLength(0); in Erase()
422 if (SetLength(0) < 0) { in ClearContent()
Dfd_file.h94 int SetLength(int64_t new_length) OVERRIDE WARN_UNUSED;
Dfd_file_test.cc35 TEST_F(FdFileTest, SetLength) { in TEST_F() argument
/art/runtime/mirror/
Darray-inl.h111 array->SetLength(length_); in operator()
143 array->SetLength(length); in operator()
Darray.h64 void SetLength(int32_t length) REQUIRES_SHARED(Locks::mutator_lock_) { in SetLength() function
/art/runtime/gc/accounting/
Dmod_union_table_test.cc58 obj->SetLength(static_cast<int32_t>(component_count)); in AllocObjectArray()
/art/runtime/gc/space/
Dspace_test.h119 arr->SetLength(length); in InstallClass()
/art/patchoat/
Dpatchoat.cc303 out->SetLength(expect) == 0) { in WriteImage()
/art/dex2oat/
Ddex2oat.cc1329 if (oat_file->SetLength(0) != 0) { in OpenFile()
1367 if (vdex_file->SetLength(0) != 0) { in OpenFile()
/art/runtime/gc/collector/
Dconcurrent_copying.cc2095 dummy_arr->SetLength(length); in FillWithDummyObject()
/art/compiler/
Dimage_writer.cc206 TEMP_FAILURE_RETRY(image_file->SetLength(0)); in Write()
Doat_writer.cc2599 if (file->SetLength(end_offset) != 0) { in WriteDexFile()