Searched refs:bytes_wrote (Results 1 – 5 of 5) sorted by relevance
331 uint64_t bytes_wrote = 0; in Write() local332 while (bytes_wrote < length) { in Write()341 length - bytes_wrote); in Write()342 TEST_AND_RETURN_FALSE(stream_->Write(bytes + bytes_wrote, copy_len)); in Write()343 bytes_wrote += copy_len; in Write()356 last_byte_ |= bytes[bytes_wrote++] << (deflate_bit_pos_ & 7); in Write()363 auto copy_len = std::min(length - bytes_wrote, in Write()366 memcpy(puff_buffer_->data() + skip_bytes_, bytes + bytes_wrote, copy_len); in Write()368 bytes_wrote += copy_len; in Write()421 TEST_AND_RETURN_FALSE(bytes_wrote == length); in Write()
78 auto bytes_wrote = in Write() local80 TEST_AND_RETURN_FALSE(bytes_wrote >= 0); in Write()81 total_bytes_wrote += bytes_wrote; in Write()
259 uint64_t bytes_wrote = 0; in Main() local260 while (bytes_wrote < dst_puff_size) { in Main()262 dst_puff_size - bytes_wrote); in Main()265 bytes_wrote += write_size; in Main()
478 update_info.bytes_wrote = 0xAA; in ALA_update_seq_handler()482 update_info.bytes_wrote = 0x55; in ALA_update_seq_handler()797 if(Os_info->bytes_wrote == 0xAA) in ALA_loadapplet()1022 if(Os_info->bytes_wrote == 0xAA) in ALA_loadapplet()1034 if(Os_info->bytes_wrote == 0xAA) in ALA_loadapplet()2348 if((image_info->bytes_wrote == 0x55)||(tType == LS_Default)) in Write_Response_To_OutFile()
50 int bytes_wrote; member