Home | History | Annotate | Download | only in compiler

Lines Matching full:actual_offset

1673       off_t actual_offset = out->Seek(expected_offset, kSeekSet);
1674 if (static_cast<uint32_t>(actual_offset) != expected_offset) {
1675 PLOG(ERROR) << "Failed to seek to oat class offsets section. Actual: " << actual_offset
1869 off_t actual_offset = out->Seek(start_offset, kSeekSet);
1870 if (actual_offset != static_cast<off_t>(start_offset)) {
1871 PLOG(ERROR) << "Failed to seek to dex file section. Actual: " << actual_offset
1881 actual_offset = lseek(file->Fd(), 0, SEEK_CUR);
1882 if (actual_offset != static_cast<off_t>(start_offset)) {
1883 PLOG(ERROR) << "Stream/file position mismatch! Actual: " << actual_offset
1933 off_t actual_offset = lseek(file->Fd(), start_offset, SEEK_SET);
1934 if (actual_offset != static_cast<off_t>(start_offset)) {
1935 PLOG(ERROR) << "Failed to seek back to dex file header. Actual: " << actual_offset
1955 actual_offset = lseek(file->Fd(), end_offset, SEEK_SET);
1956 if (actual_offset != static_cast<off_t>(end_offset)) {
1957 PLOG(ERROR) << "Failed to seek to end of dex file. Actual: " << actual_offset
1962 actual_offset = rodata->Seek(end_offset, kSeekSet);
1963 if (actual_offset != static_cast<off_t>(end_offset)) {
1964 PLOG(ERROR) << "Failed to seek stream to end of dex file. Actual: " << actual_offset
2018 off_t actual_offset = lseek(file->Fd(), 0, SEEK_CUR);
2019 if (actual_offset != static_cast<off_t>(end_offset)) {
2020 PLOG(ERROR) << "Unexpected file position after copying dex file. Actual: " << actual_offset
2025 actual_offset = rodata->Seek(end_offset, kSeekSet);
2026 if (actual_offset != static_cast<off_t>(end_offset)) {
2027 PLOG(ERROR) << "Failed to seek stream to end of dex file. Actual: " << actual_offset
2075 off_t actual_offset = rodata->Seek(expected_offset, kSeekSet);
2076 if (static_cast<uint32_t>(actual_offset) != expected_offset) {
2077 PLOG(ERROR) << "Failed to seek to OatDexFile table section. Actual: " << actual_offset
2107 off_t actual_offset = rodata->Seek(new_length, kSeekSet);
2108 if (actual_offset != static_cast<off_t>(new_length)) {
2110 << " Actual: " << actual_offset << " Expected: " << new_length