Home
last modified time | relevance | path

Searched refs:hidden_text (Results 1 – 3 of 3) sorted by relevance

/openbmc/openbmc-test-automation/lib/
H A Dprint.tcl67 set hidden_text [list]
83 global hidden_text
90 if { [lsearch -exact $hidden_text $password] != -1 } { continue }
92 lappend hidden_text [escape_regex_metachars $password]
95 set password_regex [join $hidden_text |]
H A Dgen_print.py1924 hidden_text = [] variable
1941 global hidden_text
1947 if password in hidden_text:
1951 hidden_text.append(password)
1954 "(" + "|".join([re.escape(x) for x in hidden_text]) + ")"
/openbmc/openbmc-test-automation/ffdc/
H A Dffdc_collector.py1103 hidden_text = []
1104 hidden_text.append(v)
1106 "(" + "|".join([re.escape(x) for x in hidden_text]) + ")"