DMS List Stored Images

DMS List Stored Images

Synopsis

                    QmiMessageDmsListStoredImagesOutput;
                    QmiMessageDmsListStoredImagesOutputListImageSublistSublistElement;
                    QmiMessageDmsListStoredImagesOutputListImage;

QmiMessageDmsListStoredImagesOutput * qmi_message_dms_list_stored_images_output_ref
                                                        (QmiMessageDmsListStoredImagesOutput *self);
void                qmi_message_dms_list_stored_images_output_unref
                                                        (QmiMessageDmsListStoredImagesOutput *self);
gboolean            qmi_message_dms_list_stored_images_output_get_result
                                                        (QmiMessageDmsListStoredImagesOutput *self,
                                                         GError **error);
gboolean            qmi_message_dms_list_stored_images_output_get_list
                                                        (QmiMessageDmsListStoredImagesOutput *self,
                                                         GArray **list,
                                                         GError **error);

void                qmi_client_dms_list_stored_images   (QmiClientDms *self,
                                                         gpointer unused,
                                                         guint timeout,
                                                         GCancellable *cancellable,
                                                         GAsyncReadyCallback callback,
                                                         gpointer user_data);
QmiMessageDmsListStoredImagesOutput * qmi_client_dms_list_stored_images_finish
                                                        (QmiClientDms *self,
                                                         GAsyncResult *res,
                                                         GError **error);

Object Hierarchy

  GBoxed
   +----QmiMessageDmsListStoredImagesOutput

Description

Details

QmiMessageDmsListStoredImagesOutput

typedef struct _QmiMessageDmsListStoredImagesOutput QmiMessageDmsListStoredImagesOutput;

The QmiMessageDmsListStoredImagesOutput structure contains private data and should only be accessed using the provided API.


QmiMessageDmsListStoredImagesOutputListImageSublistSublistElement

typedef struct {
    guint8 storage_index;
    guint8 failure_count;
    GArray * unique_id;
    gchar * build_id;
} QmiMessageDmsListStoredImagesOutputListImageSublistSublistElement;

A QmiMessageDmsListStoredImagesOutputListImageSublistSublistElement struct.

guint8 storage_index;

a guint8.

guint8 failure_count;

a guint8.

GArray *unique_id;

a GArray of guint8 elements.

gchar *build_id;

a string.

QmiMessageDmsListStoredImagesOutputListImage

typedef struct {
    QmiDmsFirmwareImageType type;
    guint8 maximum_images;
    guint8 index_of_running_image;
    GArray * sublist;
} QmiMessageDmsListStoredImagesOutputListImage;

A QmiMessageDmsListStoredImagesOutputListImage struct.


qmi_message_dms_list_stored_images_output_ref ()

QmiMessageDmsListStoredImagesOutput * qmi_message_dms_list_stored_images_output_ref
                                                        (QmiMessageDmsListStoredImagesOutput *self);

Atomically increments the reference count of self by one.

self :

a QmiMessageDmsListStoredImagesOutput.

Returns :

the new reference to self.

qmi_message_dms_list_stored_images_output_unref ()

void                qmi_message_dms_list_stored_images_output_unref
                                                        (QmiMessageDmsListStoredImagesOutput *self);

Atomically decrements the reference count of self by one. If the reference count drops to 0, self is completely disposed.


qmi_message_dms_list_stored_images_output_get_result ()

gboolean            qmi_message_dms_list_stored_images_output_get_result
                                                        (QmiMessageDmsListStoredImagesOutput *self,
                                                         GError **error);

Get the result of the QMI operation.

self :

a QmiMessageDmsListStoredImagesOutput.

error :

Return location for error or NULL.

Returns :

TRUE if the QMI operation succeeded, FALSE if error is set.

qmi_message_dms_list_stored_images_output_get_list ()

gboolean            qmi_message_dms_list_stored_images_output_get_list
                                                        (QmiMessageDmsListStoredImagesOutput *self,
                                                         GArray **list,
                                                         GError **error);

Get the 'List' field from self.

self :

a QmiMessageDmsListStoredImagesOutput.

list :

a placeholder for the output GArray of QmiMessageDmsListStoredImagesOutputListImage elements, or NULL if not required. Do not free it, it is owned by self.

error :

Return location for error or NULL.

Returns :

TRUE if the field is found, FALSE otherwise.

qmi_client_dms_list_stored_images ()

void                qmi_client_dms_list_stored_images   (QmiClientDms *self,
                                                         gpointer unused,
                                                         guint timeout,
                                                         GCancellable *cancellable,
                                                         GAsyncReadyCallback callback,
                                                         gpointer user_data);

Asynchronously sends a List Stored Images request to the device.

When the operation is finished, callback will be invoked in the thread-default main loop of the thread you are calling this method from.

You can then call qmi_client_dms_list_stored_images_finish() to get the result of the operation.

self :

a QmiClientDms.

unused :

NULL. This message doesn't have any input bundle.

timeout :

maximum time to wait for the method to complete, in seconds.

cancellable :

a GCancellable or NULL.

callback :

a GAsyncReadyCallback to call when the request is satisfied.

user_data :

user data to pass to callback.

qmi_client_dms_list_stored_images_finish ()

QmiMessageDmsListStoredImagesOutput * qmi_client_dms_list_stored_images_finish
                                                        (QmiClientDms *self,
                                                         GAsyncResult *res,
                                                         GError **error);

Finishes an async operation started with qmi_client_dms_list_stored_images().

self :

a QmiClientDms.

res :

the GAsyncResult obtained from the GAsyncReadyCallback passed to qmi_client_dms_list_stored_images().

error :

Return location for error or NULL.

Returns :

a QmiMessageDmsListStoredImagesOutput, or NULL if error is set. The returned value should be freed with qmi_message_dms_list_stored_images_output_unref().