Home
last modified time | relevance | path

Searched refs:construct_properties (Results 1 – 13 of 13) sorted by relevance

/external/bluetooth/glib/gio/
Dglocalfilemonitor.c67 GObjectConstructParam *construct_properties) in g_local_file_monitor_constructor() argument
80 construct_properties); in g_local_file_monitor_constructor()
86 if (strcmp ("filename", g_param_spec_get_name (construct_properties[i].pspec)) == 0) in g_local_file_monitor_constructor()
88 g_warn_if_fail (G_VALUE_HOLDS_STRING (construct_properties[i].value)); in g_local_file_monitor_constructor()
89 filename = g_value_get_string (construct_properties[i].value); in g_local_file_monitor_constructor()
Dglocaldirectorymonitor.c86 GObjectConstructParam *construct_properties) in g_local_directory_monitor_constructor() argument
99 construct_properties); in g_local_directory_monitor_constructor()
105 if (strcmp ("dirname", g_param_spec_get_name (construct_properties[i].pspec)) == 0) in g_local_directory_monitor_constructor()
107 g_warn_if_fail (G_VALUE_HOLDS_STRING (construct_properties[i].value)); in g_local_directory_monitor_constructor()
108 dirname = g_value_get_string (construct_properties[i].value); in g_local_directory_monitor_constructor()
/external/bluetooth/glib/tests/gobject/
Dsingleton.c47 GObjectConstructParam *construct_properties) in my_singleton_constructor() argument
52 …LASS (my_singleton_parent_class)->constructor (type, n_construct_properties, construct_properties); in my_singleton_constructor()
Difaceproperties.c158 GObjectConstructParam *construct_properties) in DEFINE_IFACE()
169 pspec = construct_properties->pspec; in DEFINE_IFACE()
208 construct_properties); in DEFINE_IFACE()
/external/bluetooth/glib/gio/win32/
Dgwin32directorymonitor.c54 GObjectConstructParam *construct_properties);
148 GObjectConstructParam *construct_properties) { in g_win32_directory_monitor_constructor() argument
158 obj = parent_class->constructor (type, n_construct_properties, construct_properties); in g_win32_directory_monitor_constructor()
/external/bluetooth/glib/gio/fam/
Dgfamfilemonitor.c62 GObjectConstructParam *construct_properties) in g_fam_file_monitor_constructor() argument
75 construct_properties); in g_fam_file_monitor_constructor()
Dgfamdirectorymonitor.c63 GObjectConstructParam *construct_properties) in g_fam_directory_monitor_constructor() argument
76 construct_properties); in g_fam_directory_monitor_constructor()
/external/bluetooth/glib/gio/fen/
Dgfenfilemonitor.c73 GObjectConstructParam *construct_properties) in g_fen_file_monitor_constructor() argument
85 construct_properties); in g_fen_file_monitor_constructor()
Dgfendirectorymonitor.c74 GObjectConstructParam *construct_properties) in g_fen_directory_monitor_constructor() argument
86 construct_properties); in g_fen_directory_monitor_constructor()
/external/bluetooth/glib/gio/inotify/
Dginotifydirectorymonitor.c71 GObjectConstructParam *construct_properties) in g_inotify_directory_monitor_constructor() argument
84 construct_properties); in g_inotify_directory_monitor_constructor()
Dginotifyfilemonitor.c85 GObjectConstructParam *construct_properties) in g_inotify_file_monitor_constructor() argument
98 construct_properties); in g_inotify_file_monitor_constructor()
/external/bluetooth/glib/gobject/
Dgobject.h317 GSList *construct_properties; member
323 GObjectConstructParam *construct_properties);
Dgobject.c281 class->construct_properties = pclass ? g_slist_copy (pclass->construct_properties) : NULL; in g_object_base_class_init()
293 g_slist_free (class->construct_properties); in g_object_base_class_finalize()
294 class->construct_properties = NULL; in g_object_base_class_finalize()
426 class->construct_properties = g_slist_prepend (class->construct_properties, pspec); in g_object_class_install_property()
433 class->construct_properties = g_slist_remove (class->construct_properties, pspec); in g_object_class_install_property()
1132 for (slist = class->construct_properties; slist; slist = slist->next) in g_object_newv()