Home | History | Annotate | Download | only in bus

Lines Matching refs:full_path

2061                 DBusString       *full_path)
2065 return _dbus_string_copy (filename, 0, full_path, 0);
2069 if (!_dbus_string_copy (basedir, 0, full_path, 0))
2072 if (!_dbus_concat_dir_and_file (full_path, filename))
2213 DBusString full_path;
2215 if (!_dbus_string_init (&full_path))
2221 if (!_dbus_string_copy (dirname, 0, &full_path, 0))
2224 _dbus_string_free (&full_path);
2228 if (!_dbus_concat_dir_and_file (&full_path, &filename))
2231 _dbus_string_free (&full_path);
2235 if (_dbus_string_ends_with_c_str (&full_path, ".conf"))
2237 if (!include_file (parser, &full_path, TRUE, error))
2239 _dbus_string_free (&full_path);
2244 _dbus_string_free (&full_path);
2354 DBusString full_path, selinux_policy_root;
2362 if (!_dbus_string_init (&full_path))
2371 _dbus_string_free (&full_path);
2376 if (!make_full_path (&selinux_policy_root, content, &full_path))
2378 _dbus_string_free (&full_path);
2382 else if (!make_full_path (&parser->basedir, content, &full_path))
2384 _dbus_string_free (&full_path);
2388 if (!include_file (parser, &full_path,
2391 _dbus_string_free (&full_path);
2395 _dbus_string_free (&full_path);
2401 DBusString full_path;
2405 if (!_dbus_string_init (&full_path))
2408 if (!make_full_path (&parser->basedir, content, &full_path))
2410 _dbus_string_free (&full_path);
2414 if (!servicehelper_path (parser, &full_path, error))
2416 _dbus_string_free (&full_path);
2420 _dbus_string_free (&full_path);
2426 DBusString full_path;
2430 if (!_dbus_string_init (&full_path))
2433 if (!make_full_path (&parser->basedir, content, &full_path))
2435 _dbus_string_free (&full_path);
2439 if (!include_dir (parser, &full_path, error))
2441 _dbus_string_free (&full_path);
2445 _dbus_string_free (&full_path);
2516 DBusString full_path;
2520 if (!_dbus_string_init (&full_path))
2523 if (!make_full_path (&parser->basedir, content, &full_path))
2525 _dbus_string_free (&full_path);
2529 if (!_dbus_string_copy_data (&full_path, &s))
2531 _dbus_string_free (&full_path);
2538 _dbus_string_free (&full_path);
2543 _dbus_string_free (&full_path);
2723 do_load (const DBusString *full_path,
2732 parser = bus_config_load (full_path, TRUE, NULL, &error);
2776 const DBusString *full_path;
2785 return do_load (d->full_path, d->validity, TRUE);
2839 DBusString full_path;
2842 if (!_dbus_string_init (&full_path))
2845 if (!_dbus_string_copy (&test_directory, 0, &full_path, 0))
2846 _dbus_assert_not_reached ("couldn't copy dir to full_path");
2848 if (!_dbus_concat_dir_and_file (&full_path, &filename))
2851 if (!_dbus_string_ends_with_c_str (&full_path, ".conf"))
2855 _dbus_string_free (&full_path);
2866 d.full_path = &full_path;
2877 _dbus_string_free (&full_path);
3104 DBusString full_path;
3106 if (!_dbus_string_init (&full_path))
3109 if (!_dbus_string_copy (target_directory, 0, &full_path, 0))
3110 _dbus_assert_not_reached ("couldn't copy dir to full_path");
3112 if (!_dbus_concat_dir_and_file (&full_path, &filename))
3115 if (!_dbus_string_ends_with_c_str (&full_path, ".conf"))
3119 _dbus_string_free (&full_path);
3125 parser = bus_config_load (&full_path, TRUE, NULL, &error);
3130 _dbus_string_get_const_data (&full_path),
3132 _dbus_string_free (&full_path);
3138 _dbus_string_free (&full_path);
3143 _dbus_string_free (&full_path);
3207 DBusString full_path;
3213 if (!_dbus_string_init (&full_path))
3216 if (!_dbus_string_copy (&test_directory, 0, &full_path, 0))
3217 _dbus_assert_not_reached ("couldn't copy dir to full_path");
3219 if (!_dbus_concat_dir_and_file (&full_path, &filename))
3222 equal = all_are_equiv (&full_path);
3223 _dbus_string_free (&full_path);