| Top |  |  |  |  | 
Collection of methods to create requests and parse responses of the UIM Send APDU message.
QmiMessageUimSendApduInput *
qmi_message_uim_send_apdu_input_new (void);
Allocates a new QmiMessageUimSendApduInput.
 the newly created QmiMessageUimSendApduInput. The returned value should be freed with qmi_message_uim_send_apdu_input_unref().
Since: 1.36
QmiMessageUimSendApduInput *
qmi_message_uim_send_apdu_input_ref (QmiMessageUimSendApduInput *self);
Atomically increments the reference count of self
 by one.
Since: 1.36
void
qmi_message_uim_send_apdu_input_unref (QmiMessageUimSendApduInput *self);
Atomically decrements the reference count of self
 by one.
If the reference count drops to 0, self
 is completely disposed.
Since: 1.36
gboolean qmi_message_uim_send_apdu_input_get_procedure_bytes (QmiMessageUimSendApduInput *self,guint8 *value_procedure_bytes,GError **error);
Get the 'Procedure bytes' field from self
.
| self | ||
| value_procedure_bytes | a placeholder for the output guint8, or  | [out][optional] | 
| error | Return location for error or  | 
Since: 1.36
gboolean qmi_message_uim_send_apdu_input_set_procedure_bytes (QmiMessageUimSendApduInput *self,guint8 value_procedure_bytes,GError **error);
Set the 'Procedure bytes' field in the message.
Since: 1.36
gboolean qmi_message_uim_send_apdu_input_get_channel_id (QmiMessageUimSendApduInput *self,guint8 *value_channel_id,GError **error);
Get the 'Channel ID' field from self
.
| self | ||
| value_channel_id | a placeholder for the output guint8, or  | [out][optional] | 
| error | Return location for error or  | 
Since: 1.36
gboolean qmi_message_uim_send_apdu_input_set_channel_id (QmiMessageUimSendApduInput *self,guint8 value_channel_id,GError **error);
Set the 'Channel ID' field in the message.
Since: 1.36
gboolean qmi_message_uim_send_apdu_input_get_apdu (QmiMessageUimSendApduInput *self,GArray **value_apdu,GError **error);
Get the 'APDU' field from self
.
| self | ||
| value_apdu | a placeholder for the output GArray of guint8 elements, or  | [out][optional][element-type guint8][transfer none] | 
| error | Return location for error or  | 
Since: 1.36
gboolean qmi_message_uim_send_apdu_input_set_apdu (QmiMessageUimSendApduInput *self,GArray *value_apdu,GError **error);
Set the 'APDU' field in the message.
| self | ||
| value_apdu | a GArray of guint8 elements. A new reference to  | [in][element-type guint8][transfer none] | 
| error | Return location for error or  | 
Since: 1.36
gboolean qmi_message_uim_send_apdu_input_get_slot (QmiMessageUimSendApduInput *self,guint8 *value_slot,GError **error);
Get the 'Slot' field from self
.
| self | ||
| value_slot | a placeholder for the output guint8, or  | [out][optional] | 
| error | Return location for error or  | 
Since: 1.36
gboolean qmi_message_uim_send_apdu_input_set_slot (QmiMessageUimSendApduInput *self,guint8 value_slot,GError **error);
Set the 'Slot' field in the message.
Since: 1.36
QmiMessageUimSendApduOutput *
qmi_message_uim_send_apdu_output_ref (QmiMessageUimSendApduOutput *self);
Atomically increments the reference count of self
 by one.
Since: 1.36
void
qmi_message_uim_send_apdu_output_unref
                               (QmiMessageUimSendApduOutput *self);
Atomically decrements the reference count of self
 by one.
If the reference count drops to 0, self
 is completely disposed.
Since: 1.36
gboolean qmi_message_uim_send_apdu_output_get_apdu_response (QmiMessageUimSendApduOutput *self,GArray **value_apdu_response,GError **error);
Get the 'APDU Response' field from self
.
| self | ||
| value_apdu_response | a placeholder for the output GArray of guint8 elements, or  | [out][optional][element-type guint8][transfer none] | 
| error | Return location for error or  | 
Since: 1.36
gboolean qmi_message_uim_send_apdu_output_get_result (QmiMessageUimSendApduOutput *self,GError **error);
Get the result of the QMI operation.
Since: 1.36
QmiMessageUimSendApduOutput * qmi_message_uim_send_apdu_response_parse (QmiMessage *message,GError **error);
Parses a QmiMessage and builds a QmiMessageUimSendApduOutput out of it. The operation fails if the message is of the wrong type.
 a QmiMessageUimSendApduOutput, or NULL if error
is set. The returned value should be freed with qmi_message_uim_send_apdu_output_unref().
Since: 1.36
void qmi_client_uim_send_apdu (QmiClientUim *self,QmiMessageUimSendApduInput *input,guint timeout,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data);
Asynchronously sends a Send APDU 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_uim_send_apdu_finish() to get the result of the operation.
| self | a QmiClientUim. | |
| input | ||
| timeout | maximum time to wait for the method to complete, in seconds. | |
| cancellable | a GCancellable or  | |
| callback | a GAsyncReadyCallback to call when the request is satisfied. | |
| user_data | user data to pass to  | 
Since: 1.36
QmiMessageUimSendApduOutput * qmi_client_uim_send_apdu_finish (QmiClientUim *self,GAsyncResult *res,GError **error);
Finishes an async operation started with qmi_client_uim_send_apdu().
| self | a QmiClientUim. | |
| res | the GAsyncResult obtained from the GAsyncReadyCallback passed to  | |
| error | Return location for error or  | 
 a QmiMessageUimSendApduOutput, or NULL if error
is set. The returned value should be freed with qmi_message_uim_send_apdu_output_unref().
Since: 1.36
typedef struct _QmiMessageUimSendApduInput QmiMessageUimSendApduInput;
The QmiMessageUimSendApduInput structure contains private data and should only be accessed using the provided API.
Since: 1.36
typedef struct _QmiMessageUimSendApduOutput QmiMessageUimSendApduOutput;
The QmiMessageUimSendApduOutput structure contains private data and should only be accessed using the provided API.
Since: 1.36