Home | History | Annotate | Download | only in bus

Lines Matching full:path

41   char *path;
88 dbus_free (rule->path);
169 if (!_dbus_string_append_printf (&str, "path='%s'", rule->path))
331 const char *path)
335 _dbus_assert (path != NULL);
337 new = _dbus_strdup (path);
342 dbus_free (rule->path);
343 rule->path = new;
756 * path='/bar/foo',destination=':452345.34'
894 else if (strcmp (key, "path") == 0)
906 "Path '%s' is invalid\n", value);
1082 strcmp (a->path, b->path) != 0)
1376 const char *path;
1378 _dbus_assert (rule->path != NULL);
1380 path = dbus_message_get_path (message);
1381 if (path == NULL)
1384 if (strcmp (path, rule->path) != 0)
1567 _dbus_assert (rule->path != NULL);
1572 _dbus_assert (strcmp (rule->path, "/bar/foo") == 0);
1581 rule = check_parse (TRUE, "type='signal',sender='org.freedesktop.DBusSender',interface='org.freedesktop.DBusInterface',member='Foo',path='/bar/foo',destination=':452345.34'");
1589 rule = check_parse (TRUE, " type='signal', \tsender='org.freedes''ktop.DBusSender', interface='org.freedesktop.DBusInterface''''', \tmember='Foo',path='/bar/foo',destination=':452345.34'''''");
1598 rule = check_parse (TRUE, "type='signal',path='/foo',interface='org.Bar'");
1607 _dbus_assert (rule->path != NULL);
1610 _dbus_assert (strcmp (rule->path, "/foo") == 0);
1762 { "type='method_call',path='/foo/bar'", "path='/foo/bar',type='method_call'" },