mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-21 09:27:55 +00:00
40 lines
1.1 KiB
C
40 lines
1.1 KiB
C
/*
|
|
* Copyright (C) 2017 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <glib-object.h>
|
|
|
|
#define FU_TYPE_CHUNK (fu_chunk_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (FuChunk, fu_chunk, FU, CHUNK, GObject)
|
|
|
|
guint32 fu_chunk_get_idx (FuChunk *self);
|
|
guint32 fu_chunk_get_page (FuChunk *self);
|
|
guint32 fu_chunk_get_address (FuChunk *self);
|
|
const guint8 *fu_chunk_get_data (FuChunk *self);
|
|
guint8 *fu_chunk_get_data_out (FuChunk *self);
|
|
guint32 fu_chunk_get_data_sz (FuChunk *self);
|
|
GBytes *fu_chunk_get_bytes (FuChunk *self);
|
|
|
|
FuChunk *fu_chunk_new (guint32 idx,
|
|
guint32 page,
|
|
guint32 address,
|
|
const guint8 *data,
|
|
guint32 data_sz);
|
|
gchar *fu_chunk_to_string (FuChunk *self);
|
|
|
|
gchar *fu_chunk_array_to_string (GPtrArray *chunks);
|
|
GPtrArray *fu_chunk_array_new (const guint8 *data,
|
|
guint32 data_sz,
|
|
guint32 addr_start,
|
|
guint32 page_sz,
|
|
guint32 packet_sz);
|
|
GPtrArray *fu_chunk_array_new_from_bytes (GBytes *blob,
|
|
guint32 addr_start,
|
|
guint32 page_sz,
|
|
guint32 packet_sz);
|