Lines Matching refs:vq
1748 GQueue *vq = (GQueue *) data; in auth_queue_destroy() local
1750 for (l = vq->head; l; l = l->next) in auth_queue_destroy()
1752 g_queue_free (vq); in auth_queue_destroy()
1757 refresh_auth( GQueue *vq ) in refresh_auth() argument
1764 for (l = vq->head; l; l = l->next) { in refresh_auth()
1780 GQueue *vq; in Authentication() local
1789 if( !(vq = (GQueue *)g_private_get( auth_queue ) ) ) { in Authentication()
1790 vq = g_queue_new(); in Authentication()
1791 g_private_set( auth_queue, vq ); in Authentication()
1794 g_queue_push_head( vq, (gpointer) xIH.get() ); in Authentication()
1795 refresh_auth( vq ); in Authentication()
1800 GQueue *vq; in ~Authentication() local
1803 vq = (GQueue *)g_private_get( auth_queue ); in ~Authentication()
1805 data = g_queue_pop_head( vq ); in ~Authentication()
1808 refresh_auth( vq ); in ~Authentication()