// recv fill response from service
char *view_id = NULL;
char *app_id = NULL;
+ autofill_client_s *sender_client = NULL;
+
rpc_port_proxy_list_autofill_svc_response_group_h response_groups = NULL;
rpc_port_stub_list_autofill_response_group_h res_groups = NULL;
rpc_port_stub_autofill_fill_response_h fill_response_h = NULL;
rpc_port_stub_autofill_fill_response_set_view_id(fill_response_h, view_id);
rpc_port_stub_autofill_fill_response_set_response_groups(fill_response_h, res_groups);
- autofill_client_s *sender_client = get_autofill_client(app_id, context_id);
+ sender_client = get_autofill_client(app_id, context_id);
if (sender_client)
rpc_port_stub_AutofillAppPort_autofill_fill_response_received_cb_invoke(sender_client->fill_response_received_cb, fill_response_h);
char *service_message = NULL;
char *app_id = NULL;
char *view_id = NULL;
+ autofill_client_s *sender_client = NULL;
rpc_port_proxy_autofill_svc_auth_info_get_app_id(svc_auth_info_h, &app_id);
rpc_port_proxy_autofill_svc_auth_info_get_view_id(svc_auth_info_h, &view_id);
rpc_port_stub_autofill_auth_info_set_service_message(auth_info_h, service_message);
rpc_port_stub_autofill_auth_info_set_service_logo_image_path(auth_info_h, service_logo_image_path);
- autofill_client_s *sender_client = get_autofill_client(app_id, context_id);
+ sender_client = get_autofill_client(app_id, context_id);
if (sender_client)
rpc_port_stub_AutofillAppPort_autofill_auth_info_received_cb_invoke(sender_client->auth_info_cb, auth_info_h);
{
char *app_id = NULL;
int error_code = 0;
+ autofill_client_s *sender_client = NULL;
rpc_port_proxy_autofill_svc_error_info_get_app_id(svc_error_info_h, &app_id);
rpc_port_proxy_autofill_svc_error_info_get_error_code(svc_error_info_h, &error_code);
rpc_port_stub_autofill_error_info_set_app_id(error_info_h, app_id);
rpc_port_stub_autofill_error_info_set_error_code(error_info_h, error_code);
- autofill_client_s *sender_client = get_autofill_client(app_id, context_id);
+ sender_client = get_autofill_client(app_id, context_id);
if (sender_client)
rpc_port_stub_AutofillAppPort_autofill_error_info_received_cb_invoke(sender_client->error_info_cb, error_info_h);