| Top |  |  |  |  | 
| UIM Open Logical Channel responseUIM Open Logical Channel response — Methods to manage the UIM Open Logical Channel response. | 
GBoxed ├── QmiMessageUimOpenLogicalChannelInput ╰── QmiMessageUimOpenLogicalChannelOutput
Collection of methods to create requests and parse responses of the UIM Open Logical Channel message.
QmiMessageUimOpenLogicalChannelInput *
qmi_message_uim_open_logical_channel_input_new
                               (void);
Allocates a new QmiMessageUimOpenLogicalChannelInput.
 the newly created QmiMessageUimOpenLogicalChannelInput. The returned value should be freed with qmi_message_uim_open_logical_channel_input_unref().
Since: 1.36
QmiMessageUimOpenLogicalChannelInput *
qmi_message_uim_open_logical_channel_input_ref
                               (QmiMessageUimOpenLogicalChannelInput *self);
Atomically increments the reference count of self
 by one.
Since: 1.36
void
qmi_message_uim_open_logical_channel_input_unref
                               (QmiMessageUimOpenLogicalChannelInput *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_open_logical_channel_input_get_file_control_information (QmiMessageUimOpenLogicalChannelInput *self,QmiUimFileControlInformation *value_file_control_information,GError **error);
Get the 'File Control Information' field from self
.
| self | ||
| value_file_control_information | a placeholder for the output QmiUimFileControlInformation, or  | [out][optional] | 
| error | Return location for error or  | 
Since: 1.36
gboolean qmi_message_uim_open_logical_channel_input_set_file_control_information (QmiMessageUimOpenLogicalChannelInput *self,QmiUimFileControlInformation value_file_control_information,GError **error);
Set the 'File Control Information' field in the message.
Since: 1.36
gboolean qmi_message_uim_open_logical_channel_input_get_aid (QmiMessageUimOpenLogicalChannelInput *self,GArray **value_aid,GError **error);
Get the 'AID' field from self
.
| self | ||
| value_aid | 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_open_logical_channel_input_set_aid (QmiMessageUimOpenLogicalChannelInput *self,GArray *value_aid,GError **error);
Set the 'AID' field in the message.
| self | ||
| value_aid | 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_open_logical_channel_input_get_slot (QmiMessageUimOpenLogicalChannelInput *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_open_logical_channel_input_set_slot (QmiMessageUimOpenLogicalChannelInput *self,guint8 value_slot,GError **error);
Set the 'Slot' field in the message.
Since: 1.36
QmiMessageUimOpenLogicalChannelOutput *
qmi_message_uim_open_logical_channel_output_ref
                               (QmiMessageUimOpenLogicalChannelOutput *self);
Atomically increments the reference count of self
 by one.
Since: 1.36
void
qmi_message_uim_open_logical_channel_output_unref
                               (QmiMessageUimOpenLogicalChannelOutput *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_open_logical_channel_output_get_card_result (QmiMessageUimOpenLogicalChannelOutput *self,guint8 *value_card_result_sw1,guint8 *value_card_result_sw2,GError **error);
Get the 'Card result' field from self
.
| self | ||
| value_card_result_sw1 | a placeholder for the output guint8, or  | [out][optional] | 
| value_card_result_sw2 | a placeholder for the output guint8, or  | [out][optional] | 
| error | Return location for error or  | 
Since: 1.36
gboolean qmi_message_uim_open_logical_channel_output_get_result (QmiMessageUimOpenLogicalChannelOutput *self,GError **error);
Get the result of the QMI operation.
Since: 1.36
gboolean qmi_message_uim_open_logical_channel_output_get_channel_id (QmiMessageUimOpenLogicalChannelOutput *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_open_logical_channel_output_get_select_response (QmiMessageUimOpenLogicalChannelOutput *self,GArray **value_select_response,GError **error);
Get the 'Select Response' field from self
.
| self | ||
| value_select_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
QmiMessageUimOpenLogicalChannelOutput * qmi_message_uim_open_logical_channel_response_parse (QmiMessage *message,GError **error);
Parses a QmiMessage and builds a QmiMessageUimOpenLogicalChannelOutput out of it. The operation fails if the message is of the wrong type.
 a QmiMessageUimOpenLogicalChannelOutput, or NULL if error
is set. The returned value should be freed with qmi_message_uim_open_logical_channel_output_unref().
Since: 1.36
void qmi_client_uim_open_logical_channel (QmiClientUim *self,QmiMessageUimOpenLogicalChannelInput *input,guint timeout,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data);
Asynchronously sends a Open Logical Channel 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_open_logical_channel_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
QmiMessageUimOpenLogicalChannelOutput * qmi_client_uim_open_logical_channel_finish (QmiClientUim *self,GAsyncResult *res,GError **error);
Finishes an async operation started with qmi_client_uim_open_logical_channel().
| self | a QmiClientUim. | |
| res | the GAsyncResult obtained from the GAsyncReadyCallback passed to  | |
| error | Return location for error or  | 
 a QmiMessageUimOpenLogicalChannelOutput, or NULL if error
is set. The returned value should be freed with qmi_message_uim_open_logical_channel_output_unref().
Since: 1.36
typedef struct _QmiMessageUimOpenLogicalChannelInput QmiMessageUimOpenLogicalChannelInput;
The QmiMessageUimOpenLogicalChannelInput structure contains private data and should only be accessed using the provided API.
Since: 1.36
typedef struct _QmiMessageUimOpenLogicalChannelOutput QmiMessageUimOpenLogicalChannelOutput;
The QmiMessageUimOpenLogicalChannelOutput structure contains private data and should only be accessed using the provided API.
Since: 1.36