Searched full:my (Results 1 – 25 of 649) sorted by relevance
12345678910>>...26
/linux-6.14.4/scripts/ |
D | get_maintainer.pl | 16 my $P = $0; 17 my $V = '0.26'; 25 my $cur_path = fastgetcwd() . '/'; 26 my $lk_path = "./"; 27 my $email = 1; 28 my $email_usename = 1; 29 my $email_maintainer = 1; 30 my $email_reviewer = 1; 31 my $email_fixes = 1; 32 my $email_list = 1; [all …]
|
D | get_dvb_firmware | 50 my $sourcefile = "tt_Premium_217g.zip"; 51 my $url = "http://www.softwarepatch.pl/9999ccd06a4813cb827dbb0005071c71/$sourcefile"; 52 my $hash = "53970ec17a538945a6d8cb608a7b3899"; 53 my $outfile = "dvb-fe-sp8870.fw"; 54 my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1); 67 my $sourcefile = "Dvbt1.3.57.6.zip"; 68 my $url = "http://www.avermedia.com/software/$sourcefile"; 69 my $cabfile = "DVBT Net Ver1.3.57.6/disk1/data1.cab"; 70 my $hash = "237938d53a7f834c05c42b894ca68ac3"; 71 my $outfile = "dvb-fe-sp887x.fw"; [all …]
|
D | leaking_addresses.pl | 34 my $P = $0; 37 my @DIRS = ('/proc', '/sys'); 40 my $TIMEOUT = 10; 44 my @SUPPORTED_ARCHITECTURES = ('x86_64', 'ppc64', 'x86'); 47 my $help = 0; 48 my $debug = 0; 49 my $raw = 0; 50 my $output_raw = ""; # Write raw results to file. 51 my $input_raw = ""; # Read raw results from file instead of scanning. 52 my $suppress_dmesg = 0; # Don't show dmesg in output. [all …]
|
D | get_abi.pl | 17 my $help = 0; 18 my $hint = 0; 19 my $man = 0; 20 my $debug = 0; 21 my $enable_lineno = 0; 22 my $show_warnings = 1; 23 my $prefix="Documentation/ABI"; 24 my $sysfs_prefix="/sys"; 25 my $search_string; 28 my $dbg_what_parsing = 1; [all …]
|
D | extract-sys-certs.pl | 13 my $sysmap = ""; 20 my $vmlinux = $ARGV[0]; 21 my $keyring = $ARGV[1]; 27 my @lines = <FD>; 30 my @sections = (); 32 foreach my $line (@lines) { 36 my $seg = $1; 37 my $name = $2; 38 my $len = Math::BigInt->new("0x" . $3); 39 my $vma = Math::BigInt->new("0x" . $4); [all …]
|
D | headerdep.pl | 13 my $opt_all; 14 my @opt_include; 15 my $opt_graph; 28 my %deps = (); 29 my %linenos = (); 31 my @headers = grep { strip($_) } @ARGV; 63 my $filename = shift; 65 for my $i (@opt_include) { 66 my $stripped = $filename; 77 my $filename = shift; [all …]
|
D | kernel-doc | 59 my $errors = 0; 60 my $warnings = 0; 61 my $anon_struct_union = 0; 64 my $type_constant = '\b``([^\`]+)``\b'; 65 my $type_constant2 = '\%([-_*\w]+)'; 66 my $type_func = '(\w+)\(\)'; 67 my $type_param = '\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)'; 68 my $type_param_ref = '([\!~\*]?)\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)'; 69 my $type_fp_param = '\@(\w+)\(\)'; # Special RST handling for func ptr params 70 my $type_fp_param2 = '\@(\w+->\S+)\(\)'; # Special RST handling for structs with func ptr params [all …]
|
D | get_feat.pl | 11 my $help; 12 my $man; 13 my $debug; 14 my $arch; 15 my $feat; 16 my $enable_fname; 18 my $basename = abs_path($0); 21 my $prefix=$basename . "../Documentation/features"; 25 my $status_size = 1; 26 my $description_size = 1; [all …]
|
D | sphinx-pre-install | 8 my $prefix = "./"; 11 my $conf = $prefix . "Documentation/conf.py"; 12 my $requirement_file = $prefix . "Documentation/sphinx/requirements.txt"; 13 my $virtenv_prefix = "sphinx_"; 19 my %missing; 20 my $system_release; 21 my $need = 0; 22 my $optional = 0; 23 my $need_symlink = 0; 24 my $need_sphinx = 0; [all …]
|
D | parse-maintainers.pl | 7 my $input_file = "MAINTAINERS"; 8 my $output_file = "MAINTAINERS.new"; 9 my $output_section = "SECTION.new"; 10 my $help = 0; 11 my $order = 0; 12 my $P = $0; 62 my ($a, $b) = @_; 75 my ($a, $b) = @_; 76 my $preferred_order = 'MRLSWQBCPTFXNK'; 78 my $a1 = uc(substr($a, 0, 1)); [all …]
|
D | bootgraph.pl | 28 my $header = 0; 31 my $text = << "EOM"; 39 my $std=shift; 53 my %start; 54 my %end; 55 my %type; 56 my $done = 0; 57 my $maxtime = 0; 58 my $firsttime = 99999; 59 my $count = 0; [all …]
|
D | generate_initcall_order.pl | 14 my $nm = $ENV{'NM'} || die "$0: ERROR: NM not set?"; 15 my $objtree = $ENV{'objtree'} || '.'; 18 my $jobs = {}; # child process pid -> file handle 20 my $results = {}; # object index -> [ { level, secname }, ... ] 25 open(my $fh, "getconf _NPROCESSORS_ONLN 2>/dev/null |") 27 my $procs = <$fh>; 40 my ($index, $initcalls) = @_; 44 foreach my $counter (sort { $a <=> $b } keys(%{$initcalls})) { 45 my $level = $initcalls->{$counter}->{'level'}; 48 my $secname = $initcalls->{$counter}->{'module'} . '__' . [all …]
|
D | checkpatch.pl | 18 my $P = $0; 19 my $D = dirname(abs_path($P)); 21 my $V = '0.32'; 25 my $quiet = 0; 26 my $verbose = 0; 27 my %verbose_messages = (); 28 my %verbose_emitted = (); 29 my $tree = 1; 30 my $chk_signoff = 1; 31 my $chk_fixes_tag = 1; [all …]
|
D | markup_oops.pl | 16 my $cross_compile = ""; 17 my $vmlinux_name = ""; 18 my $modulefile = ""; 26 my $vmlinux_name = $ARGV[0]; 28 my $kerver = `uname -r`; 33 my $filename = $vmlinux_name; 37 my $target = "0"; 38 my $function; 39 my $module = ""; 40 my $func_offset = 0; [all …]
|
/linux-6.14.4/tools/testing/ktest/ |
D | ktest.pl | 16 my $VERSION = "0.2"; 20 my %opt; 21 my %repeat_tests; 22 my %repeats; 23 my %evals; 26 my %default = ( 85 my $test_log_start = 0; 87 my $ktest_config = "ktest.conf"; 88 my $version; 89 my $have_version = 0; [all …]
|
D | config-bisect.pl | 60 my $start = 0; 61 my $val = ""; 63 my $pwd = `pwd`; 65 my $tree = $pwd; 66 my $build; 68 my $output_config; 69 my $reset_bisect; 102 my ($file) = @_; 111 my ($cancel, $prompt) = @_; 113 my $ans; [all …]
|
/linux-6.14.4/arch/powerpc/crypto/ |
D | ppc-xlate.pl | 6 my $flavour = shift; 7 my $output = shift; 10 my %GLOBALS; 11 my $dotinlocallabels=($flavour=~/linux/)?1:0; 16 my $globl = sub { 17 my $junk = shift; 18 my $name = shift; 19 my $global = \$GLOBALS{$name}; 20 my $ret; 41 my $text = sub { [all …]
|
/linux-6.14.4/Documentation/driver-api/media/drivers/ccs/ |
D | mk-ccs-regs | 8 my $ccsregs = "ccs-regs.asc"; 9 my $header; 10 my $regarray; 11 my $limitc; 12 my $limith; 13 my $kernel; 14 my $help; 43 my $lh_hdr = ! defined $kernel 46 my $uint32_t = ! defined $kernel ? 'uint32_t' : 'u32'; 47 my $uint16_t = ! defined $kernel ? 'uint16_t' : 'u16'; [all …]
|
/linux-6.14.4/scripts/kconfig/ |
D | streamline_config.pl | 36 # Here's what I did with my Debian distribution. 51 my $debugprint = 0; 59 my $uname = `uname -r`; 62 my @searchconfigs = ( 103 foreach my $conf (@searchconfigs) { 104 my $file = $conf->{"file"}; 113 my $exec = $conf->{"exec"}; 117 open(my $infile, '-|', "$exec $file") || die "Failed to run $exec $file"; 118 my @x = <$infile>; 125 my @config_file = read_config; [all …]
|
/linux-6.14.4/Documentation/trace/postprocess/ |
D | trace-vmscan-postprocess.pl | 55 my %perprocesspid; 56 my %perprocess; 57 my %last_procmap; 58 my $opt_ignorepid; 59 my $opt_read_procstat; 61 my $total_wakeup_kswapd; 62 my ($total_direct_reclaim, $total_direct_nr_scanned); 63 my ($total_direct_nr_file_scanned, $total_direct_nr_anon_scanned); 64 my ($total_direct_latency, $total_kswapd_latency); 65 my ($total_direct_nr_reclaimed); [all …]
|
D | trace-pagealloc-postprocess.pl | 39 my %perprocesspid; 40 my %perprocess; 41 my $opt_ignorepid; 42 my $opt_read_procstat; 43 my $opt_prepend_parent; 46 my $sigint_report = 0; 47 my $sigint_exit = 0; 48 my $sigint_pending = 0; 49 my $sigint_received = 0; 51 my $current_time = time; [all …]
|
/linux-6.14.4/lib/ |
D | build_OID_registry | 13 my @names = (); 14 my @oids = (); 21 my $abs_srctree = abs_path($ENV{'srctree'}); 41 my $scriptname = $0; 50 my @indices = (); 51 my @lengths = (); 52 my $total_length = 0; 54 for (my $i = 0; $i <= $#names; $i++) { 55 my $name = $names[$i]; 56 my $oid = $oids[$i]; [all …]
|
/linux-6.14.4/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/ |
D | Core.pm | 24 my %trace_flags = (0x00 => "NONE", 33 my ($value) = @_; 35 my $string; 37 my $print_delim = 0; 39 foreach my $idx (sort {$a <=> $b} keys %trace_flags) { 58 my %flag_fields; 59 my %symbolic_fields; 63 my ($event_name, $field_name, $value) = @_; 65 my $string; 68 my $print_delim = 0; [all …]
|
/linux-6.14.4/scripts/dtc/ |
D | dt_to_config | 308 my $pr_flags_ref = shift; 309 my $pos = shift; 322 my $pn_arg_ref = shift; 324 my $compat = $pn_arg_ref->{compat}; 325 my $compatible_cnt = $pn_arg_ref->{compatible_cnt}; 326 my $config = $pn_arg_ref->{config}; 327 my $config_cnt = $pn_arg_ref->{config_cnt}; 328 my $driver = $pn_arg_ref->{driver}; 329 my $driver_cnt = $pn_arg_ref->{driver_cnt}; 330 my $full_node = $pn_arg_ref->{full_node}; [all …]
|
/linux-6.14.4/tools/perf/scripts/perl/ |
D | rw-by-pid.pl | 21 my %reads; 22 my %writes; 26 my ($event_name, $context, $common_cpu, $common_secs, $common_nsecs, 42 my ($event_name, $context, $common_cpu, $common_secs, $common_nsecs, 53 my ($event_name, $context, $common_cpu, $common_secs, $common_nsecs, 64 my ($event_name, $context, $common_cpu, $common_secs, $common_nsecs, 82 foreach my $pid (sort { ($reads{$b}{bytes_read} || 0) <=> 84 my $comm = $reads{$pid}{comm} || ""; 85 my $total_reads = $reads{$pid}{total_reads} || 0; 86 my $bytes_requested = $reads{$pid}{bytes_requested} || 0; [all …]
|
12345678910>>...26