Lines Matching refs:module
536 foreach my $module (keys %{$global_deps_hash_backup{$_}}) {
537 … if (defined ${$global_deps_hash_backup{$_}}{$module} && (!defined $build_is_finished{$module})) {
538 $single_module_dep_hash{$module}++;
552 my $module = shift;
553 return $build_list_paths{$module} if (defined $build_list_paths{$module});
554 my @possible_dirs = ($module, $module. '.lnk', $module. '.link');
555 return $build_list_paths{$module} if (defined $build_list_paths{$module});
562 $build_list_paths{$module} = $possible_build_list_path;
566 print_error("There's no build list for $module");
569 $dead_parents{$module}++;
570 …$build_list_paths{$module} = correct_path(retrieve_build_list($module)) if (!defined $build_list_p…
571 return $build_list_paths{$module};
582 while (my $module = pop(@unresolved_parents)) {
583 next if (defined $$deps_hash{$module});
585 foreach (get_parents_array($module)) {
592 $$deps_hash{$module} = \%parents_deps_hash;
594 if (!defined($$deps_hash{$parent}) && (!defined $exclude_branches{$module})) {
645 foreach my $module (keys %$deps_hash) {
646 foreach (keys %{$$deps_hash{$module}}) {
648 ${$$reversed{$_}}{$module}++
650 my %single_module_dep_hash = ($module => 1);
694 foreach my $module (keys %dead_parents, keys %skip_modules) {
695 remove_from_dependencies($module, \%global_deps_hash);
696 delete ($global_deps_hash{$module}) if (defined $global_deps_hash{$module});
756 my $module = shift;
757 return if (defined $dead_parents{$module});
758 $html_info{$module} = { 'DIRS' => [],
829 my $module = shift;
830 my $build_list_path = get_build_list_path($module);
840 $build_lists_hash{$module} = $xml_list;
844 $build_lists_hash{$module} = \@build_lst;
848 $dead_parents{$module}++;
855 my $module = shift;
856 store_build_list_content($module);
857 my $build_list_ref = $build_lists_hash{$module};
905 my ($module, $build_list_object, $dependencies_hash) = @_;
908 $path_hash{$dir} = $module_paths{$module};
923 my ($module, $module_dep_hash) = @_;
924 if (defined $module_deps_hash_backup{$module}) {
925 backup_deps_hash($module_deps_hash_backup{$module}, $module_dep_hash);
927 get_deps_hash($module, $module_dep_hash);
930 $module_deps_hash_backup{$module} = \%values_hash;
1041 my ($dependencies_hash, $module, $job) = @_;
1043 $job = "$module $job";
1056 my ($dependencies_hash, $module, $job) = @_;
1060 $$dependencies_hash{"$module $job"} = \%deps_hash;
1214 my ($deps_hash_ref, $module) = @_;
1216 my $module_path = $module_paths{$module} if (defined $module);
1230 if (defined $module) {
1244 if ($log_name eq "$module $custom_job") {
1247 if ($log_name eq "$module $pre_custom_job") {
1250 if ($log_name eq "$module $post_custom_job") {
1255 $log_name = $module if ($log_name =~ /^\.+$/);
1261 …LOG_PATH => '../' . $source_config->get_module_repository($module) . "/$module/$ENV{INPATH}/misc/l…
1262 … LONG_LOG_PATH => correct_path($module_paths{$module} . "/$ENV{INPATH}/misc/logs/$log_name"),
1333 my $module = shift;
1334 if (defined $weights_hash{$module}) {
1335 return $weights_hash{$module};
1337 if (defined $reversed_dependencies{$module}) {
1338 return scalar keys %{$reversed_dependencies{$module}};
1801 my $module = $module_by_hash{$folders_hashes{$child_nick}};
2033 my $module = $`;
2038 announce_module($module);
2042 $error_code = run_job($job, $module_paths{$module}, $module_job);
2046 $error_code = run_job($job, $module_paths{$module}, $module_job);
2125 foreach my $module (sort @modules) {
2126 if (!defined $module_paths{$module}) {
2127 $modules_types{$module} = 'img';
2130 if (( $module_paths{$module} =~ /\.lnk$/) || ($module_paths{$module} =~ /\.link$/)
2131 || (!defined $active_modules{$module})) {
2132 $modules_types{$module} = 'lnk';
2135 $modules_types{$module} = 'mod';
2174 my $module = shift;
2175 if ($modules_types{$module} eq 'mod') {
2176 clear_module($module);
2179 …if ($modules_types{$module} eq 'lnk' && (File::Basename::basename($module_paths{$module}) ne $modu…
2180 … if(rename($module_paths{$module}, File::Basename::dirname($module_paths{$module}) ."/$module")) {
2181 $module_paths{$module} = File::Basename::dirname($module_paths{$module}) ."/$module";
2182 clear_module($module);
2184 print_error("Cannot rename link to $module. Please rename it manually");
2193 my $module = shift;
2194 print "Removing module's $module output trees...\n";
2196 opendir DIRHANDLE, $module_paths{$module};
2201 my $dir = correct_path($module_paths{$module}.'/'.$_);
2254 my $module = shift;
2262 $solver_inc_dir .= "/$module";
2264 $dead_parents{$module}++;
2265 print "Fetching dependencies for module $module from solver...";
2306 foreach my $module (keys %incompatibles) {
2307 if (!defined $$deps_hash{$module}) {
2308 print_error("The module $initial_module is independent from $module\n");
2310 $incompatibles{$module} = $$deps_hash{$module};
2311 delete $$deps_hash{$module};
2547 foreach my $module (sort @modules_built) {
2548 if (chdir($module_paths{$module})) {
2549 print "Removing delivered from module $module\n";
2556 …push(@warnings, "Could not remove delivered files from the module $module. Your build can become i…
3174 my $module = shift;
3175 my $module_info_hash = $html_info{$module};
3246 my $module = $module_by_hash{$deps_hash};
3247 my $module_info_hash = $html_info{$module};
3256 $modules_with_errors{$module}++;
3551 my $module = shift;
3552 my $bridgemakefile = $source_config->get_module_path($module) . "/prj/makefile.mk";