Home | History | Annotate | Download | only in libavb

Lines Matching refs:io_ret

85   AvbIOResult io_ret;
149 io_ret = ops->get_size_of_partition(ops, part_name, &image_size);
150 if (io_ret == AVB_IO_RESULT_ERROR_OOM) {
153 } else if (io_ret != AVB_IO_RESULT_OK) {
168 io_ret = ops->read_from_partition(
170 if (io_ret == AVB_IO_RESULT_ERROR_OOM) {
173 } else if (io_ret != AVB_IO_RESULT_OK) {
264 AvbIOResult io_ret;
280 io_ret = ops->get_size_of_partition(ops, part_name, &image_size);
281 if (io_ret == AVB_IO_RESULT_ERROR_OOM) {
284 } else if (io_ret != AVB_IO_RESULT_OK) {
297 io_ret = ops->read_from_partition(
299 if (io_ret == AVB_IO_RESULT_ERROR_OOM) {
302 } else if (io_ret != AVB_IO_RESULT_OK) {
355 AvbIOResult io_ret;
418 io_ret = ops->read_from_partition(ops,
424 if (io_ret == AVB_IO_RESULT_ERROR_OOM) {
427 } else if (io_ret != AVB_IO_RESULT_OK) {
459 io_ret = ops->read_from_partition(ops,
465 if (io_ret == AVB_IO_RESULT_ERROR_OOM) {
468 } else if (io_ret != AVB_IO_RESULT_OK) {
472 if (is_main_vbmeta && io_ret == AVB_IO_RESULT_ERROR_NO_SUCH_PARTITION &&
584 io_ret = ops->validate_vbmeta_public_key(
586 if (io_ret == AVB_IO_RESULT_ERROR_OOM) {
589 } else if (io_ret != AVB_IO_RESULT_OK) {
609 io_ret = ops->read_rollback_index(
611 if (io_ret == AVB_IO_RESULT_ERROR_OOM) {
614 } else if (io_ret != AVB_IO_RESULT_OK) {
904 AvbIOResult io_ret;
928 io_ret = ops->get_unique_guid_for_partition(
930 if (io_ret == AVB_IO_RESULT_ERROR_OOM) {
932 } else if (io_ret != AVB_IO_RESULT_OK) {
1080 AvbIOResult io_ret;
1100 io_ret = ops->read_is_device_unlocked(ops, &is_device_unlocked);
1101 if (io_ret == AVB_IO_RESULT_ERROR_OOM) {
1104 } else if (io_ret != AVB_IO_RESULT_OK) {