Lines Matching refs:initial_response
107 … const gchar *initial_response,
966 const gchar *initial_response, in mechanism_server_initiate() argument
977 if (initial_response != NULL && initial_response_len > 0) in mechanism_server_initiate()
983 uid = g_ascii_strtoll (initial_response, &endp, 10); in mechanism_server_initiate()
994 if (g_strcmp0 (initial_response, sid) == 0) in mechanism_server_initiate()
1139 gchar *initial_response; in mechanism_client_initiate() local
1150 initial_response = g_strdup_printf ("%" G_GINT64_FORMAT, (gint64) getuid ()); in mechanism_client_initiate()
1151 *out_initial_response_len = strlen (initial_response); in mechanism_client_initiate()
1153 initial_response = _g_dbus_win32_get_user_sid (); in mechanism_client_initiate()
1154 *out_initial_response_len = strlen (initial_response); in mechanism_client_initiate()
1158 g_assert (initial_response != NULL); in mechanism_client_initiate()
1160 return initial_response; in mechanism_client_initiate()