• Home
  • Raw
  • Download

Lines Matching refs:task

146   GTask *task;  in gst_rtmp_client_handshake()  local
154 task = g_task_new (stream, cancellable, callback, user_data); in gst_rtmp_client_handshake()
156 g_task_set_task_data (task, data, handshake_data_free); in gst_rtmp_client_handshake()
164 g_task_get_cancellable (task), client_handshake1_done, task); in gst_rtmp_client_handshake()
175 GTask *task = user_data; in client_handshake1_done() local
176 GIOStream *stream = g_task_get_source_object (task); in client_handshake1_done()
184 g_task_return_error (task, error); in client_handshake1_done()
185 g_object_unref (task); in client_handshake1_done()
191 G_PRIORITY_DEFAULT, g_task_get_cancellable (task), in client_handshake1_done()
192 client_handshake2_done, task); in client_handshake1_done()
221 GTask *task = user_data; in client_handshake2_done() local
222 GIOStream *stream = g_task_get_source_object (task); in client_handshake2_done()
223 HandshakeData *data = g_task_get_task_data (task); in client_handshake2_done()
232 g_task_return_error (task, error); in client_handshake2_done()
233 g_object_unref (task); in client_handshake2_done()
241 g_task_return_new_error (task, G_IO_ERROR, G_IO_ERROR_PARTIAL_INPUT, in client_handshake2_done()
243 g_object_unref (task); in client_handshake2_done()
257 g_task_return_new_error (task, G_IO_ERROR, G_IO_ERROR_INVALID_DATA, in client_handshake2_done()
259 g_object_unref (task); in client_handshake2_done()
272 g_task_get_cancellable (task), client_handshake3_done, task); in client_handshake2_done()
286 GTask *task = user_data; in client_handshake3_done() local
293 g_task_return_error (task, error); in client_handshake3_done()
294 g_object_unref (task); in client_handshake3_done()
301 g_task_return_boolean (task, TRUE); in client_handshake3_done()
302 g_object_unref (task); in client_handshake3_done()