Searched refs:config_paths (Results 1 - 9 of 9) sorted by relevance
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
H A D | dependency_info.py | 38 self._config_paths.extend(new_dep_info.config_paths) 46 new_dep_info.platform, self.config_paths)) 52 'config_paths: %s.' % (self.dependency, self.platform, 53 self.config_paths)) 111 def config_paths(self): member in class:DependencyInfo
|
H A 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) [all...] |
/external/jsoncpp/devtools/ |
H A 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/ |
H A D | libkmod.c | 234 * @config_paths: ordered array of paths (directories or files) where 250 const char * const *config_paths) 272 if (config_paths == NULL) 273 config_paths = default_config_paths; 274 err = kmod_config_new(ctx, &ctx->config, config_paths); 249 kmod_new(const char *dirname, const char * const *config_paths) argument
|
H A D | libkmod.h | 40 struct kmod_ctx *kmod_new(const char *dirname, const char * const *config_paths);
|
H A D | libkmod-internal.h | 124 int kmod_config_new(struct kmod_ctx *ctx, struct kmod_config **config, const char * const *config_paths) __attribute__((nonnull(1, 2,3)));
|
H A D | libkmod-config.c | 827 const char * const *config_paths) 836 for (i = 0; config_paths[i] != NULL; i++) { 837 const char *path = config_paths[i]; 826 kmod_config_new(struct kmod_ctx *ctx, struct kmod_config **p_config, const char * const *config_paths) argument
|
/external/kmod/libkmod/python/kmod/ |
H A D | _libkmod_h.pxd | 38 const_char_ptr dirname, const_char_const_ptr config_paths)
|
/external/kmod/tools/ |
H A D | depmod.c | 2547 _cleanup_free_ const char **config_paths = NULL; local 2578 void *tmp = realloc(config_paths, bytes); 2583 config_paths = tmp; 2584 config_paths[n_config_paths] = optarg; 2586 config_paths[n_config_paths] = NULL; 2707 err = cfg_load(&cfg, config_paths);
|
Completed in 163 milliseconds