Home
last modified time | relevance | path

Searched refs:GUINT_TO_POINTER (Results 1 – 25 of 106) sorted by relevance

12345

/third_party/glib/tests/gobject/
Dreferences.c101 g_assert (data == GUINT_TO_POINTER (42)); in weak_ref1()
111 g_assert (data == GUINT_TO_POINTER (24)); in weak_ref2()
122 g_assert (data == GUINT_TO_POINTER (42)); in toggle_ref1()
136 g_assert (data == GUINT_TO_POINTER (24)); in toggle_ref2()
150 g_assert (data == GUINT_TO_POINTER (34)); in toggle_ref3()
155 g_object_remove_toggle_ref (object, toggle_ref3, GUINT_TO_POINTER (34)); in toggle_ref3()
175 g_object_weak_ref (object, weak_ref1, GUINT_TO_POINTER (42)); in main()
186 g_object_weak_ref (object, weak_ref1, GUINT_TO_POINTER (42)); in main()
187 g_object_weak_ref (object, weak_ref2, GUINT_TO_POINTER (24)); in main()
199 g_object_weak_ref (object, weak_ref1, GUINT_TO_POINTER (42)); in main()
[all …]
Dtestgobject.c94 g_assert (iface_data == GUINT_TO_POINTER (42)); in test_object_test_iface_init()
183 GInterfaceInfo iface_info = { test_object_test_iface_init, NULL, GUINT_TO_POINTER (42) }; in test_object_get_type()
290 g_assert (iface_data == GUINT_TO_POINTER (87)); in derived_object_test_iface_init()
350 GInterfaceInfo iface_info = { derived_object_test_iface_init, NULL, GUINT_TO_POINTER (87) }; in derived_object_get_type()
/third_party/gstreamer/gstplugins_good/gst/rtpmanager/
Dgstrtprtxsend.c343 while (g_hash_table_contains (rtx->ssrc_data, GUINT_TO_POINTER (ssrc)) || in gst_rtp_rtx_send_choose_ssrc()
344 g_hash_table_contains (rtx->rtx_ssrcs, GUINT_TO_POINTER (ssrc))) { in gst_rtp_rtx_send_choose_ssrc()
359 GUINT_TO_POINTER (ssrc)))) { in gst_rtp_rtx_send_get_ssrc_data()
369 g_hash_table_insert (rtx->ssrc_data, GUINT_TO_POINTER (ssrc), data); in gst_rtp_rtx_send_get_ssrc_data()
370 g_hash_table_insert (rtx->rtx_ssrcs, GUINT_TO_POINTER (rtx_ssrc), in gst_rtp_rtx_send_get_ssrc_data()
371 GUINT_TO_POINTER (ssrc)); in gst_rtp_rtx_send_get_ssrc_data()
373 data = g_hash_table_lookup (rtx->ssrc_data, GUINT_TO_POINTER (ssrc)); in gst_rtp_rtx_send_get_ssrc_data()
403 GUINT_TO_POINTER (gst_rtp_buffer_get_payload_type (&rtp)))); in gst_rtp_rtx_buffer_new()
494 if (g_hash_table_contains (rtx->ssrc_data, GUINT_TO_POINTER (ssrc))) { in gst_rtp_rtx_send_src_event()
553 if (g_hash_table_contains (rtx->rtx_ssrcs, GUINT_TO_POINTER (ssrc))) { in gst_rtp_rtx_send_src_event()
[all …]
Dgstrtprtxreceive.c366 GUINT_TO_POINTER (ssrc), NULL, &ssrc2) in gst_rtp_rtx_receive_src_event()
377 GUINT_TO_POINTER (seqnum), NULL, (gpointer *) & assoc)) { in gst_rtp_rtx_receive_src_event()
407 GUINT_TO_POINTER (seqnum)); in gst_rtp_rtx_receive_src_event()
426 GUINT_TO_POINTER (seqnum), in gst_rtp_rtx_receive_src_event()
546 GUINT_TO_POINTER (payload_type), NULL, NULL); in gst_rtp_rtx_receive_chain()
586 GUINT_TO_POINTER (payload_type))); in gst_rtp_rtx_receive_chain()
595 GUINT_TO_POINTER (ssrc), NULL, &ssrc1)) { in gst_rtp_rtx_receive_chain()
607 GUINT_TO_POINTER (orign_seqnum), NULL, (gpointer *) & assoc)) { in gst_rtp_rtx_receive_chain()
612 ssrc1 = GUINT_TO_POINTER (assoc->ssrc); in gst_rtp_rtx_receive_chain()
623 GUINT_TO_POINTER (orign_seqnum)); in gst_rtp_rtx_receive_chain()
[all …]
/third_party/glib/tests/
Dthreadpool-test.c100 g_thread_pool_push (pool, GUINT_TO_POINTER (1000), NULL); in test_thread_stop_unused()
176 g_thread_pool_push (pool1, GUINT_TO_POINTER (i + 1), NULL); in test_thread_pools()
177 g_thread_pool_push (pool2, GUINT_TO_POINTER (i + 1), NULL); in test_thread_pools()
178 g_thread_pool_push (pool3, GUINT_TO_POINTER (i + 1), NULL); in test_thread_pools()
280 GUINT_TO_POINTER (69)); in test_thread_sort()
287 g_thread_pool_push (pool, GUINT_TO_POINTER (id), NULL); in test_thread_sort()
323 g_thread_pool_push (idle_pool, GUINT_TO_POINTER (100 + i), NULL); in test_thread_idle_timeout()
357 g_thread_pool_push (idle_pool, GUINT_TO_POINTER (i + 1), NULL); in test_thread_idle_time()
369 GUINT_TO_POINTER (interval)); in test_thread_idle_time()
/third_party/glib/glib/tests/
Dthread-pool.c39 g_assert_true (data == GUINT_TO_POINTER (123)); in pool_func()
73 success = g_thread_pool_push (pool, GUINT_TO_POINTER (123), &err); in test_simple()
87 g_assert_true (data == GUINT_TO_POINTER (123)); in dummy_pool_func()
125 success = g_thread_pool_push (pool, GUINT_TO_POINTER (123), &err); in test_create_first_pool()
138 success = g_thread_pool_push (pool, GUINT_TO_POINTER (123), &err); in test_create_first_pool()
Dspawn-multithreaded.c45 thread = g_thread_new ("test", function, GUINT_TO_POINTER (i)); in multithreaded_test_run()
82 return GUINT_TO_POINTER (tnum); in test_spawn_sync_multithreaded_instance()
206 return GUINT_TO_POINTER (tnum); in test_spawn_async_multithreaded_instance()
Dmutex.c230 … g_test_add_data_func ("/thread/mutex/perf/uncontended", GUINT_TO_POINTER (0), test_mutex_perf); in main()
236 g_test_add_data_func (name, GUINT_TO_POINTER (i), test_mutex_perf); in main()
/third_party/gstreamer/gstplugins_good/gst/rtp/
Drtpstorage.c90 stream = g_hash_table_lookup (self->streams, GUINT_TO_POINTER (ssrc)); in rtp_storage_get_packets_for_recovery()
126 stream = g_hash_table_lookup (self->streams, GUINT_TO_POINTER (ssrc)); in rtp_storage_get_redundant_packet()
151 stream = g_hash_table_lookup (self->streams, GUINT_TO_POINTER (ssrc)); in rtp_storage_do_put_recovered_packet()
201 stream = g_hash_table_lookup (self->streams, GUINT_TO_POINTER (ssrc)); in rtp_storage_append_buffer()
206 g_hash_table_insert (self->streams, GUINT_TO_POINTER (ssrc), stream); in rtp_storage_append_buffer()
Dgstrtpreddec.c153 GUINT_TO_POINTER (item->timestamp), in gst_rtp_red_history_update()
227 GUINT_TO_POINTER (timestamp), in gst_red_history_lost_seq_num_for_timestamp()
445 g_hash_table_lookup (self->rtp_histories, GUINT_TO_POINTER (ssrc)))) { in gst_rtp_red_dec_chain()
447 g_hash_table_insert (self->rtp_histories, GUINT_TO_POINTER (ssrc), in gst_rtp_red_dec_chain()
/third_party/gstreamer/gstplugins_bad/tests/check/elements/
Dwebrtcbin.c863 VAL_SDP_INIT (count, _count_num_sdp_media, GUINT_TO_POINTER (0), NULL); in GST_START_TEST()
1029 VAL_SDP_INIT (count, _count_num_sdp_media, GUINT_TO_POINTER (1), in GST_START_TEST()
1100 VAL_SDP_INIT (offer, _count_num_sdp_media, GUINT_TO_POINTER (1), NULL); in GST_START_TEST()
1101 VAL_SDP_INIT (answer, _count_num_sdp_media, GUINT_TO_POINTER (1), NULL); in GST_START_TEST()
1145 VAL_SDP_INIT (count, _count_num_sdp_media, GUINT_TO_POINTER (2), in GST_START_TEST()
1176 VAL_SDP_INIT (count, _count_num_sdp_media, GUINT_TO_POINTER (2), in GST_START_TEST()
1245 VAL_SDP_INIT (payloads, on_sdp_media_payload_types, GUINT_TO_POINTER (1), in GST_START_TEST()
1247 VAL_SDP_INIT (count, _count_num_sdp_media, GUINT_TO_POINTER (2), &payloads); in GST_START_TEST()
1641 VAL_SDP_INIT (count, _count_num_sdp_media, GUINT_TO_POINTER (1), in GST_START_TEST()
1693 VAL_SDP_INIT (count, _count_num_sdp_media, GUINT_TO_POINTER (2), in GST_START_TEST()
[all …]
/third_party/gstreamer/gstplugins_bad/ext/wpe/
Dgstwpesrcbin.cpp247 g_hash_table_insert (src->audio_src_pads, GUINT_TO_POINTER (id), audio_pad); in gst_wpe_src_new_audio_stream()
254 … *audio_pad = GST_WPE_AUDIO_PAD (g_hash_table_lookup (src->audio_src_pads, GUINT_TO_POINTER (id))); in gst_wpe_src_set_audio_shm()
273 … *audio_pad = GST_WPE_AUDIO_PAD (g_hash_table_lookup (src->audio_src_pads, GUINT_TO_POINTER (id))); in gst_wpe_src_push_audio_buffer()
310 GstPad *pad = GST_PAD (g_hash_table_lookup (src->audio_src_pads, GUINT_TO_POINTER (id))); in gst_wpe_src_stop_audio_stream()
316 g_hash_table_remove (src->audio_src_pads, GUINT_TO_POINTER (id)); in gst_wpe_src_stop_audio_stream()
322 … *audio_pad = GST_WPE_AUDIO_PAD (g_hash_table_lookup (src->audio_src_pads, GUINT_TO_POINTER (id))); in gst_wpe_src_pause_audio_stream()
/third_party/glib/gio/
Dgdbusnamewatching.c268 client = g_hash_table_lookup (map_id_to_client, GUINT_TO_POINTER (watcher_id)); in dup_client()
489 GUINT_TO_POINTER (client->id)); in has_connection()
500GUINT_TO_POINTER (client->id), in has_connection()
624 GUINT_TO_POINTER (client->id), in g_bus_watch_name()
685 GUINT_TO_POINTER (client->id), in g_bus_watch_name_on_connection()
882 (client = g_hash_table_lookup (map_id_to_client, GUINT_TO_POINTER (watcher_id))) == NULL) in g_bus_unwatch_name()
889 g_warn_if_fail (g_hash_table_remove (map_id_to_client, GUINT_TO_POINTER (watcher_id))); in g_bus_unwatch_name()
Dgdbusnameowning.c569 GUINT_TO_POINTER (client->id), in g_bus_own_name_on_connection()
678 GUINT_TO_POINTER (client->id), in g_bus_own_name()
912 (client = g_hash_table_lookup (map_id_to_client, GUINT_TO_POINTER (owner_id))) == NULL) in g_bus_unown_name()
919 g_warn_if_fail (g_hash_table_remove (map_id_to_client, GUINT_TO_POINTER (owner_id))); in g_bus_unown_name()
/third_party/glib/gio/inotify/
Dinotify-kernel.c270 pair = g_hash_table_lookup (iks->unmatched_moves, GUINT_TO_POINTER (event->cookie)); in ik_source_dispatch()
275 g_hash_table_remove (iks->unmatched_moves, GUINT_TO_POINTER (event->cookie)); in ik_source_dispatch()
289 … new = g_hash_table_insert (iks->unmatched_moves, GUINT_TO_POINTER (event->cookie), event); in ik_source_dispatch()
323 g_hash_table_remove (iks->unmatched_moves, GUINT_TO_POINTER (event->cookie)); in ik_source_dispatch()
/third_party/gstreamer/gstplugins_bad/gst/rist/
Dgstristrtxsend.c338 data = g_hash_table_lookup (rtx->ssrc_data, GUINT_TO_POINTER (ssrc)); in gst_rist_rtx_send_get_ssrc_data()
344 g_hash_table_insert (rtx->ssrc_data, GUINT_TO_POINTER (ssrc), data); in gst_rist_rtx_send_get_ssrc_data()
345 g_hash_table_insert (rtx->rtx_ssrcs, GUINT_TO_POINTER (rtx_ssrc), in gst_rist_rtx_send_get_ssrc_data()
346 GUINT_TO_POINTER (ssrc)); in gst_rist_rtx_send_get_ssrc_data()
411 if (g_hash_table_contains (rtx->ssrc_data, GUINT_TO_POINTER (ssrc))) { in gst_rist_rtx_send_src_event()
817 data = g_hash_table_lookup (rtx->ssrc_data, GUINT_TO_POINTER (ssrc)); in gst_rist_rtx_send_set_extseqnum()
832 data = g_hash_table_lookup (rtx->ssrc_data, GUINT_TO_POINTER (ssrc)); in gst_rist_rtx_send_clear_extseqnum()
/third_party/gstreamer/gstplugins_bad/gst/mxf/
Dmxfdms1.c63 GUINT_TO_POINTER (((guint) tag))))) in mxf_dms1_handle_tag()
126 GUINT_TO_POINTER (((guint) tag))))) in mxf_dms1_text_language_handle_tag()
195 GUINT_TO_POINTER (((guint) tag))))) in mxf_dms1_thesaurus_handle_tag()
407 GUINT_TO_POINTER (((guint) tag))))) in mxf_dms1_framework_handle_tag()
666 GUINT_TO_POINTER (((guint) tag))))) in mxf_dms1_production_clip_framework_handle_tag()
936 GUINT_TO_POINTER (((guint) tag))))) in mxf_dms1_production_framework_handle_tag()
1216 GUINT_TO_POINTER (((guint) tag))))) in mxf_dms1_clip_framework_handle_tag()
1430 GUINT_TO_POINTER (((guint) tag))))) in mxf_dms1_scene_framework_handle_tag()
1558 GUINT_TO_POINTER (((guint) tag))))) in mxf_dms1_titles_handle_tag()
1649 GUINT_TO_POINTER (((guint) tag))))) in mxf_dms1_identification_handle_tag()
[all …]
/third_party/glib/gio/tests/
Dgdbus-connection-slow.c109 …timeout_mainloop_id = g_timeout_add (1000, test_connection_flush_on_timeout, GUINT_TO_POINTER (n)); in test_connection_flush()
210 GUINT_TO_POINTER (timeout_id), /* user_data */ in test_connection_large_message()
Dmock-resolver.c134 g_task_set_task_data (task, GUINT_TO_POINTER(flags), NULL); in lookup_by_name_with_flags_async()
147 g_task_set_task_data (task, GUINT_TO_POINTER (G_RESOLVER_NAME_LOOKUP_FLAGS_DEFAULT), NULL); in lookup_by_name()
Dcontexts.c300 return GUINT_TO_POINTER (!group.requested_state); in test_identity_thread()
312 threads[i] = g_thread_new ("test", test_identity_thread, GUINT_TO_POINTER (i)); in test_context_specific_identity()
355 return GUINT_TO_POINTER (!group.requested_state); in test_emit_thread()
Dglistmodel.c195 g_assert (user_data == GUINT_TO_POINTER(0x1234u)); in compare_items()
209 g_list_store_insert_sorted (store, obj, compare_items, GUINT_TO_POINTER(0x1234u)); in insert_string()
240 g_assert (compare_items (a, b, GUINT_TO_POINTER(0x1234)) == 0); in test_store_sorted()
251 g_assert (compare_items (b, c, GUINT_TO_POINTER(0x1234)) > 0); in test_store_sorted()
252 g_assert (compare_items (a, c, GUINT_TO_POINTER(0x1234)) > 0); in test_store_sorted()
/third_party/gstreamer/gstplugins_base/tools/
Dgst-discoverer.c199 GUINT_TO_POINTER (depth + 1)); in print_tags_topology()
452 gst_tag_list_foreach (tags, print_tag_foreach, GUINT_TO_POINTER (indent)); in print_toc_entry()
457 g_list_foreach (subentries, print_toc_entry, GUINT_TO_POINTER (indent)); in print_toc_entry()
474 gst_tag_list_foreach (tags, print_tag_foreach, GUINT_TO_POINTER (tab + 2)); in print_properties()
481 g_list_foreach (entries, print_toc_entry, GUINT_TO_POINTER (tab + 5)); in print_properties()
/third_party/gstreamer/gstplugins_good/gst/isomp4/
Dgstqtmuxmap.c392 result = g_list_append (result, GUINT_TO_POINTER (FOURCC_3gr6)); in gst_qt_mux_map_format_to_header()
413 result = g_list_append (result, GUINT_TO_POINTER (*comp)); in gst_qt_mux_map_format_to_header()
/third_party/glib/glib/
Dglibconfig.h104 #define GUINT_TO_POINTER(u) ((gpointer) (gulong) (u)) macro
156 #define GUINT_TO_POINTER(u) ((gpointer) (guint) (u)) macro
/third_party/gstreamer/gstplugins_bad/ext/srtp/
Dgstsrtpdec.c517 stream = g_hash_table_lookup (filter->streams, GUINT_TO_POINTER (ssrc)); in gst_srtp_dec_remove_stream()
521 g_hash_table_remove (filter->streams, GUINT_TO_POINTER (ssrc)); in gst_srtp_dec_remove_stream()
528 return g_hash_table_lookup (filter->streams, GUINT_TO_POINTER (ssrc)); in find_stream_by_ssrc()
783 g_hash_table_add (filter->streams_roc_changed, GUINT_TO_POINTER (ssrc)); in init_session_stream()
788 g_hash_table_insert (filter->streams, GUINT_TO_POINTER (stream->ssrc), in init_session_stream()
1357 GUINT_TO_POINTER (ssrc))) { in gst_srtp_dec_decode_buffer()
1378 GUINT_TO_POINTER (ssrc)); in gst_srtp_dec_decode_buffer()

12345