Home | History | Annotate | Download | only in bus

Lines Matching defs:full_path

1981                 DBusString       *full_path)
1985 return _dbus_string_copy (filename, 0, full_path, 0);
1989 if (!_dbus_string_copy (basedir, 0, full_path, 0))
1992 if (!_dbus_concat_dir_and_file (full_path, filename))
2099 DBusString full_path;
2101 if (!_dbus_string_init (&full_path))
2107 if (!_dbus_string_copy (dirname, 0, &full_path, 0))
2110 _dbus_string_free (&full_path);
2114 if (!_dbus_concat_dir_and_file (&full_path, &filename))
2117 _dbus_string_free (&full_path);
2121 if (_dbus_string_ends_with_c_str (&full_path, ".conf"))
2123 if (!include_file (parser, &full_path, TRUE, error))
2125 _dbus_string_free (&full_path);
2130 _dbus_string_free (&full_path);
2236 DBusString full_path, selinux_policy_root;
2244 if (!_dbus_string_init (&full_path))
2253 _dbus_string_free (&full_path);
2258 if (!make_full_path (&selinux_policy_root, content, &full_path))
2260 _dbus_string_free (&full_path);
2264 else if (!make_full_path (&parser->basedir, content, &full_path))
2266 _dbus_string_free (&full_path);
2270 if (!include_file (parser, &full_path,
2273 _dbus_string_free (&full_path);
2277 _dbus_string_free (&full_path);
2283 DBusString full_path;
2287 if (!_dbus_string_init (&full_path))
2290 if (!make_full_path (&parser->basedir, content, &full_path))
2292 _dbus_string_free (&full_path);
2296 if (!include_dir (parser, &full_path, error))
2298 _dbus_string_free (&full_path);
2302 _dbus_string_free (&full_path);
2373 DBusString full_path;
2377 if (!_dbus_string_init (&full_path))
2380 if (!make_full_path (&parser->basedir, content, &full_path))
2382 _dbus_string_free (&full_path);
2386 if (!_dbus_string_copy_data (&full_path, &s))
2388 _dbus_string_free (&full_path);
2394 _dbus_string_free (&full_path);
2399 _dbus_string_free (&full_path);
2555 do_load (const DBusString *full_path,
2564 parser = bus_config_load (full_path, TRUE, NULL, &error);
2608 const DBusString *full_path;
2617 return do_load (d->full_path, d->validity, TRUE);
2671 DBusString full_path;
2674 if (!_dbus_string_init (&full_path))
2677 if (!_dbus_string_copy (&test_directory, 0, &full_path, 0))
2678 _dbus_assert_not_reached ("couldn't copy dir to full_path");
2680 if (!_dbus_concat_dir_and_file (&full_path, &filename))
2683 if (!_dbus_string_ends_with_c_str (&full_path, ".conf"))
2687 _dbus_string_free (&full_path);
2698 d.full_path = &full_path;
2709 _dbus_string_free (&full_path);
2930 DBusString full_path;
2932 if (!_dbus_string_init (&full_path))
2935 if (!_dbus_string_copy (target_directory, 0, &full_path, 0))
2936 _dbus_assert_not_reached ("couldn't copy dir to full_path");
2938 if (!_dbus_concat_dir_and_file (&full_path, &filename))
2941 if (!_dbus_string_ends_with_c_str (&full_path, ".conf"))
2945 _dbus_string_free (&full_path);
2951 parser = bus_config_load (&full_path, TRUE, NULL, &error);
2956 _dbus_string_get_const_data (&full_path),
2958 _dbus_string_free (&full_path);
2964 _dbus_string_free (&full_path);
2969 _dbus_string_free (&full_path);
3033 DBusString full_path;
3039 if (!_dbus_string_init (&full_path))
3042 if (!_dbus_string_copy (&test_directory, 0, &full_path, 0))
3043 _dbus_assert_not_reached ("couldn't copy dir to full_path");
3045 if (!_dbus_concat_dir_and_file (&full_path, &filename))
3048 equal = all_are_equiv (&full_path);
3049 _dbus_string_free (&full_path);