}
}
-static void __message_create(rpc_port_stub_AutofillAppPort_context_h context,
+static void __client_create(rpc_port_stub_AutofillAppPort_context_h context,
void *user_data)
{
LOGD("");
free(sender);
}
-static void __message_terminate(rpc_port_stub_AutofillAppPort_context_h context,
+static void __client_terminate(rpc_port_stub_AutofillAppPort_context_h context,
void *user_data)
{
LOGD("");
__remove_client(context);
}
-static int __message_register(rpc_port_stub_AutofillAppPort_context_h context,
+static int __client_register(rpc_port_stub_AutofillAppPort_context_h context,
int context_id,
rpc_port_AutofillAppPort_autofill_auth_info_received_cb_h auth_info_cb,
rpc_port_AutofillAppPort_autofill_fill_response_received_cb_h fill_response_received_cb,
return 0;
}
-static void __message_unregister(rpc_port_stub_AutofillAppPort_context_h context, int context_id, void *user_data)
+static void __client_unregister(rpc_port_stub_AutofillAppPort_context_h context, int context_id, void *user_data)
{
__remove_client(context);
}
int ret;
// register app port
rpc_port_stub_AutofillAppPort_callback_s callback = {
- __message_create,
- __message_terminate,
- __message_register,
- __message_unregister,
+ __client_create,
+ __client_terminate,
+ __client_register,
+ __client_unregister,
__auth_info_request_cb,
__autofill_fill_request_cb,
__commit_cb,