Searched refs:config_paths (Results 1 – 10 of 10) sorted by relevance
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
D | dependency_info_unittest.py | 24 self.assertEqual(['config_path'], empty_di.config_paths) 35 self.assertEqual(['config_path'], dep_info.config_paths) 46 self.assertEqual(['config_path'], dep_info.config_paths) 58 self.assertEqual(['config_path'], dep_info.config_paths) 96 self.assertEqual(['config_path1'], dep_info1.config_paths) 102 self.assertEqual(['config_path1', 'config_path2'], dep_info1.config_paths) 115 dep_info1.config_paths) 151 self.assertEqual(['config_path1'], dep_info1.config_paths) 157 self.assertEqual(['config_path1', 'config_path2'], dep_info1.config_paths) 171 dep_info1.config_paths)
|
D | dependency_info.py | 38 self._config_paths.extend(new_dep_info.config_paths) 46 new_dep_info.platform, self.config_paths)) 53 self.config_paths)) 111 def config_paths(self): member in DependencyInfo
|
/external/kmod/tools/ |
D | modprobe.c | 720 const char **config_paths = NULL; in do_modprobe() local 791 void *tmp = realloc(config_paths, bytes); in do_modprobe() 797 config_paths = tmp; in do_modprobe() 798 config_paths[n_config_paths] = optarg; in do_modprobe() 800 config_paths[n_config_paths] = NULL; in do_modprobe() 874 ctx = kmod_new(dirname, config_paths); in do_modprobe() 910 free(config_paths); in do_modprobe()
|
D | depmod.c | 2547 _cleanup_free_ const char **config_paths = NULL; in do_depmod() local 2578 void *tmp = realloc(config_paths, bytes); in do_depmod() 2583 config_paths = tmp; in do_depmod() 2584 config_paths[n_config_paths] = optarg; in do_depmod() 2586 config_paths[n_config_paths] = NULL; in do_depmod() 2707 err = cfg_load(&cfg, config_paths); in do_depmod()
|
/external/jsoncpp/devtools/ |
D | batchbuild.py | 252 config_paths = args[2:] 253 for config_path in config_paths: 259 for config_path in config_paths:
|
/external/kmod/libkmod/ |
D | libkmod.c | 250 const char * const *config_paths) in kmod_new() argument 272 if (config_paths == NULL) in kmod_new() 273 config_paths = default_config_paths; in kmod_new() 274 err = kmod_config_new(ctx, &ctx->config, config_paths); in kmod_new()
|
D | libkmod-config.c | 827 const char * const *config_paths) in kmod_config_new() argument 836 for (i = 0; config_paths[i] != NULL; i++) { in kmod_config_new() 837 const char *path = config_paths[i]; in kmod_config_new()
|
D | libkmod.h | 40 struct kmod_ctx *kmod_new(const char *dirname, const char * const *config_paths);
|
D | libkmod-internal.h | 124 …truct kmod_ctx *ctx, struct kmod_config **config, const char * const *config_paths) __attribute__(…
|
/external/kmod/libkmod/python/kmod/ |
D | _libkmod_h.pxd | 38 const_char_ptr dirname, const_char_const_ptr config_paths)
|