Home | History | Annotate | Download | only in win32

Lines Matching refs:winhttp_stream

67   GWinHttpFileInputStream *winhttp_stream;
69 winhttp_stream = G_WINHTTP_FILE_INPUT_STREAM (object);
71 if (winhttp_stream->request != NULL)
72 G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpCloseHandle (winhttp_stream->request);
73 if (winhttp_stream->connection != NULL)
74 G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpCloseHandle (winhttp_stream->connection);
76 g_object_unref (winhttp_stream->file);
77 winhttp_stream->file = NULL;
131 GWinHttpFileInputStream *winhttp_stream = G_WINHTTP_FILE_INPUT_STREAM (stream);
134 if (!winhttp_stream->request_sent)
136 if (!G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpSendRequest
137 (winhttp_stream->request,
148 if (!_g_winhttp_response (winhttp_stream->file->vfs,
149 winhttp_stream->request,
154 winhttp_stream->request_sent = TRUE;
157 if (!G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpReadData
158 (winhttp_stream->request, buffer, count, &bytes_read))
173 GWinHttpFileInputStream *winhttp_stream = G_WINHTTP_FILE_INPUT_STREAM (stream);
175 if (winhttp_stream->connection != NULL)
176 G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpCloseHandle (winhttp_stream->connection);
177 winhttp_stream->connection = NULL;