Searched refs:cmd (Results 1 – 7 of 7) sorted by relevance
/mbedtls-latest/tests/scripts/ |
D | generate_tls13_compat_tests.py | 109 def cmd(self): member in TLSProgram 141 def cmd(self): member in OpenSSLBase 142 ret = super().cmd() 182 def cmd(self): member in OpenSSLServ 183 ret = super().cmd() 254 def cmd(self): member in GnuTLSBase 255 ret = super().cmd() 337 def cmd(self): member in MbedTLSBase 338 ret = super().cmd() 398 def cmd(self): member in MbedTLSServ [all …]
|
D | generate_server9_bad_saltlen.py | 71 cmd = OPENSSL_RSA_PSS_CERT_COMMAND.format(**kwargs) 72 der_bytes = subprocess.check_output(cmd, shell=True) 75 cmd = OPENSSL_RSA_PSS_DGST_COMMAND.format(**kwargs) 77 der_bytes = subprocess.check_output(cmd,
|
D | psa_collect_statuses.py | 54 cmd = [psa_constant_names, 'status'] + values 55 output = subprocess.check_output(cmd).decode('ascii')
|
D | test_config_script.py | 114 cmd = [os.path.abspath(options.script), 118 status = subprocess.call(cmd + args,
|
D | depends.py | 97 def log_command(cmd): argument 100 log_line(' '.join(cmd), prefix='+')
|
D | components-configuration-crypto.sh | 2677 cmd="${compile_cmd} ${clang_args}" 2678 echo "${target}: ${source_file}; $cmd ${source_file}" >> ${makefile}
|
/mbedtls-latest/scripts/ |
D | code_style.py | 101 cmd = ["git", "log", since + "..HEAD", "--ignore-submodules", 103 output = subprocess.check_output(cmd, universal_newlines=True) 106 cmd = ["git", "-C", "framework", "log", since + "..HEAD", 108 output = subprocess.check_output(cmd, universal_newlines=True, 114 cmd = ["git", "diff", "--name-only", "--"] + src_files 115 output = subprocess.check_output(cmd, universal_newlines=True) 118 cmd = ["git", "-C", "framework", "diff", "--name-only", "--"] + \ 120 output = subprocess.check_output(cmd, universal_newlines=True,
|