HomeSort by relevance Sort by last modified time
    Searched refs:construct_properties (Results 1 - 13 of 13) sorted by null

  /external/bluetooth/glib/tests/gobject/
singleton.c 47 GObjectConstructParam *construct_properties)
52 return G_OBJECT_CLASS (my_singleton_parent_class)->constructor (type, n_construct_properties, construct_properties);
ifaceproperties.c 158 GObjectConstructParam *construct_properties)
169 pspec = construct_properties->pspec;
208 construct_properties);
  /external/bluetooth/glib/gio/
glocalfilemonitor.c 67 GObjectConstructParam *construct_properties)
80 construct_properties);
86 if (strcmp ("filename", g_param_spec_get_name (construct_properties[i].pspec)) == 0)
88 g_warn_if_fail (G_VALUE_HOLDS_STRING (construct_properties[i].value));
89 filename = g_value_get_string (construct_properties[i].value);
glocaldirectorymonitor.c 86 GObjectConstructParam *construct_properties)
99 construct_properties);
105 if (strcmp ("dirname", g_param_spec_get_name (construct_properties[i].pspec)) == 0)
107 g_warn_if_fail (G_VALUE_HOLDS_STRING (construct_properties[i].value));
108 dirname = g_value_get_string (construct_properties[i].value);
  /external/bluetooth/glib/gio/fam/
gfamdirectorymonitor.c 63 GObjectConstructParam *construct_properties)
76 construct_properties);
gfamfilemonitor.c 62 GObjectConstructParam *construct_properties)
75 construct_properties);
  /external/bluetooth/glib/gio/fen/
gfendirectorymonitor.c 74 GObjectConstructParam *construct_properties)
86 construct_properties);
gfenfilemonitor.c 73 GObjectConstructParam *construct_properties)
85 construct_properties);
  /external/bluetooth/glib/gio/inotify/
ginotifydirectorymonitor.c 71 GObjectConstructParam *construct_properties)
84 construct_properties);
ginotifyfilemonitor.c 85 GObjectConstructParam *construct_properties)
98 construct_properties);
  /external/bluetooth/glib/gio/win32/
gwin32directorymonitor.c 54 GObjectConstructParam *construct_properties);
148 GObjectConstructParam *construct_properties) {
158 obj = parent_class->constructor (type, n_construct_properties, construct_properties);
  /external/bluetooth/glib/gobject/
gobject.h 317 GSList *construct_properties; member in struct:_GObjectClass
323 GObjectConstructParam *construct_properties);
gobject.c 281 class->construct_properties = pclass ? g_slist_copy (pclass->construct_properties) : NULL;
293 g_slist_free (class->construct_properties);
294 class->construct_properties = NULL;
426 class->construct_properties = g_slist_prepend (class->construct_properties, pspec);
433 class->construct_properties = g_slist_remove (class->construct_properties, pspec);
559 * property. However, in one case, the @construct_properties argument of
    [all...]

Completed in 193 milliseconds