• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/bus/

Lines Matching defs:full_path

345 check_return_values (const DBusString *full_path)
357 printf ("Testing values from: %s\n", _dbus_string_get_const_data (full_path));
359 parser = bus_config_load (full_path, TRUE, NULL, &error);
420 do_load (const DBusString *full_path,
429 parser = bus_config_load (full_path, TRUE, NULL, &error);
473 const DBusString *full_path;
482 return do_load (d->full_path, d->validity, TRUE);
536 DBusString full_path;
539 if (!_dbus_string_init (&full_path))
542 if (!_dbus_string_copy (&test_directory, 0, &full_path, 0))
543 _dbus_assert_not_reached ("couldn't copy dir to full_path");
545 if (!_dbus_concat_dir_and_file (&full_path, &filename))
548 if (!_dbus_string_ends_with_c_str (&full_path, ".conf"))
552 _dbus_string_free (&full_path);
563 d.full_path = &full_path;
574 _dbus_string_free (&full_path);
603 DBusString *full_path)
610 if (!_dbus_string_init (full_path))
616 if (!_dbus_string_copy (test_data_dir, 0, full_path, 0))
623 if (!_dbus_concat_dir_and_file (full_path, &filename))
631 if (!_dbus_concat_dir_and_file (full_path, &filename))
646 check_file_valid (DBusString *full_path,
659 printf (" %s\n", _dbus_string_get_const_data (full_path));
662 retval = do_load (full_path, validity, TRUE);
670 DBusString full_path;
690 if (!make_full_path (test_data_dir, "invalid-config-files", "not-well-formed.conf", &full_path))
692 if (!check_file_valid (&full_path, INVALID))
694 _dbus_string_free (&full_path);
697 if (!make_full_path (test_data_dir, "valid-config-files", "system.conf", &full_path))
699 if (!check_file_valid (&full_path, VALID))
702 if (!check_return_values (&full_path))
709 _dbus_string_free (&full_path);