Lines Matching refs:vq
1746 GQueue *vq = (GQueue *) data; in auth_queue_destroy() local
1748 for (l = vq->head; l; l = l->next) in auth_queue_destroy()
1750 g_queue_free (vq); in auth_queue_destroy()
1755 refresh_auth( GQueue *vq ) in refresh_auth() argument
1762 for (l = vq->head; l; l = l->next) { in refresh_auth()
1778 GQueue *vq; in Authentication() local
1787 if( !(vq = (GQueue *)g_private_get( auth_queue ) ) ) { in Authentication()
1788 vq = g_queue_new(); in Authentication()
1789 g_private_set( auth_queue, vq ); in Authentication()
1792 g_queue_push_head( vq, (gpointer) xIH.get() ); in Authentication()
1793 refresh_auth( vq ); in Authentication()
1798 GQueue *vq; in ~Authentication() local
1801 vq = (GQueue *)g_private_get( auth_queue ); in ~Authentication()
1803 data = g_queue_pop_head( vq ); in ~Authentication()
1806 refresh_auth( vq ); in ~Authentication()