Lines Matching full:auth
2984 struct service_auth *auth = user_data;
2986 device_set_authorizing(auth->device, FALSE);
2988 auth->cb(derr, auth->user_data);
2996 struct service_auth *auth;
3032 auth = g_try_new0(struct service_auth, 1);
3033 if (!auth)
3036 auth->cb = cb;
3037 auth->user_data = user_data;
3038 auth->device = device;
3042 err = agent_authorize(agent, dev_path, uuid, agent_auth_cb, auth, g_free);