Lines Matching defs:paths
318 Set *paths = userdata;
321 assert(paths);
323 r = set_put_strdup(paths, path);
330 static int find_nodes(sd_bus *bus, const char *service, const char *path, Set *paths, bool many) {
353 return parse_xml_introspect(path, xml, &ops, paths);
357 _cleanup_set_free_free_ Set *paths = NULL, *done = NULL, *failed = NULL;
362 paths = set_new(&string_hash_ops);
363 if (!paths)
378 r = set_put(paths, m);
388 p = set_steal_first(paths);
396 q = find_nodes(bus, service, p, paths, many);