Top |
QmiMessageUimReadRecordInput *
qmi_message_uim_read_record_input_new (void
);
Allocates a new QmiMessageUimReadRecordInput.
the newly created QmiMessageUimReadRecordInput. The returned value should be freed with qmi_message_uim_read_record_input_unref()
.
QmiMessageUimReadRecordInput *
qmi_message_uim_read_record_input_ref (QmiMessageUimReadRecordInput *self
);
Atomically increments the reference count of self
by one.
void
qmi_message_uim_read_record_input_unref
(QmiMessageUimReadRecordInput *self
);
Atomically decrements the reference count of self
by one.
If the reference count drops to 0, self
is completely disposed.
gboolean qmi_message_uim_read_record_input_get_response_in_indication_token (QmiMessageUimReadRecordInput *self
,guint32 *response_in_indication_token
,GError **error
);
Get the 'Response In Indication Token' field from self
.
gboolean qmi_message_uim_read_record_input_set_response_in_indication_token (QmiMessageUimReadRecordInput *self
,guint32 response_in_indication_token
,GError **error
);
Set the 'Response In Indication Token' field in the message.
gboolean qmi_message_uim_read_record_input_get_last_record (QmiMessageUimReadRecordInput *self
,guint16 *last_record
,GError **error
);
Get the 'Last Record' field from self
.
gboolean qmi_message_uim_read_record_input_set_last_record (QmiMessageUimReadRecordInput *self
,guint16 last_record
,GError **error
);
Set the 'Last Record' field in the message.
gboolean qmi_message_uim_read_record_input_get_record (QmiMessageUimReadRecordInput *self
,guint16 *record_record_number
,guint16 *record_record_length
,GError **error
);
Get the 'Record' field from self
.
gboolean qmi_message_uim_read_record_input_set_record (QmiMessageUimReadRecordInput *self
,guint16 record_record_number
,guint16 record_record_length
,GError **error
);
Set the 'Record' field in the message.
gboolean qmi_message_uim_read_record_input_get_file (QmiMessageUimReadRecordInput *self
,guint16 *file_file_id
,GArray **file_file_path
,GError **error
);
Get the 'File' field from self
.
gboolean qmi_message_uim_read_record_input_set_file (QmiMessageUimReadRecordInput *self
,guint16 file_file_id
,GArray *file_file_path
,GError **error
);
Set the 'File' field in the message.
gboolean qmi_message_uim_read_record_input_get_session_information (QmiMessageUimReadRecordInput *self
,QmiUimSessionType *session_information_session_type
,const gchar **session_information_application_identifier
,GError **error
);
Get the 'Session Information' field from self
.
self |
||
session_information_session_type |
a placeholder for the output QmiUimSessionType, or |
|
session_information_application_identifier |
a placeholder for the output constant string, or |
|
error |
Return location for error or |
gboolean qmi_message_uim_read_record_input_set_session_information (QmiMessageUimReadRecordInput *self
,QmiUimSessionType session_information_session_type
,const gchar *session_information_application_identifier
,GError **error
);
Set the 'Session Information' field in the message.
self |
||
session_information_session_type |
||
session_information_application_identifier |
a constant string. |
|
error |
Return location for error or |
QmiMessageUimReadRecordOutput *
qmi_message_uim_read_record_output_ref
(QmiMessageUimReadRecordOutput *self
);
Atomically increments the reference count of self
by one.
void
qmi_message_uim_read_record_output_unref
(QmiMessageUimReadRecordOutput *self
);
Atomically decrements the reference count of self
by one.
If the reference count drops to 0, self
is completely disposed.
gboolean qmi_message_uim_read_record_output_get_result (QmiMessageUimReadRecordOutput *self
,GError **error
);
Get the result of the QMI operation.
gboolean qmi_message_uim_read_record_output_get_card_result (QmiMessageUimReadRecordOutput *self
,guint8 *card_result_sw1
,guint8 *card_result_sw2
,GError **error
);
Get the 'Card result' field from self
.
gboolean qmi_message_uim_read_record_output_get_read_result (QmiMessageUimReadRecordOutput *self
,GArray **read_result
,GError **error
);
Get the 'Read Result' field from self
.
gboolean qmi_message_uim_read_record_output_get_additional_read_result (QmiMessageUimReadRecordOutput *self
,GArray **additional_read_result
,GError **error
);
Get the 'Additional Read Result' field from self
.
gboolean qmi_message_uim_read_record_output_get_response_in_indication_token (QmiMessageUimReadRecordOutput *self
,guint32 *response_in_indication_token
,GError **error
);
Get the 'Response In Indication Token' field from self
.
void qmi_client_uim_read_record (QmiClientUim *self
,QmiMessageUimReadRecordInput *input
,guint timeout
,GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
);
Asynchronously sends a Read Record 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_read_record_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 |
QmiMessageUimReadRecordOutput * qmi_client_uim_read_record_finish (QmiClientUim *self
,GAsyncResult *res
,GError **error
);
Finishes an async operation started with qmi_client_uim_read_record()
.
self |
a QmiClientUim. |
|
res |
the GAsyncResult obtained from the GAsyncReadyCallback passed to |
|
error |
Return location for error or |
a QmiMessageUimReadRecordOutput, or NULL
if error
is set. The returned value should be freed with qmi_message_uim_read_record_output_unref()
.
typedef struct _QmiMessageUimReadRecordInput QmiMessageUimReadRecordInput;
The QmiMessageUimReadRecordInput structure contains private data and should only be accessed using the provided API.
typedef struct _QmiMessageUimReadRecordOutput QmiMessageUimReadRecordOutput;
The QmiMessageUimReadRecordOutput structure contains private data and should only be accessed using the provided API.