Home
last modified time | relevance | path

Searched refs:cmd (Results 1 – 18 of 18) sorted by relevance

/lib/mbedtls/external/mbedtls/tests/scripts/
A Dgenerate_tls13_compat_tests.py109 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
398 def cmd(self): member in MbedTLSServ
502 cmd = prefix.join(cmd)
[all …]
A Dgenerate_server9_bad_saltlen.py71 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,
A Dpsa_collect_statuses.py54 cmd = [psa_constant_names, 'status'] + values
55 output = subprocess.check_output(cmd).decode('ascii')
A Dtest_config_script.py114 cmd = [os.path.abspath(options.script),
118 status = subprocess.call(cmd + args,
A Ddepends.py97 def log_command(cmd): argument
100 log_line(' '.join(cmd), prefix='+')
A Dall.sh4510 cmd="${compile_cmd} ${clang_args}"
4511 echo "${target}: ${source_file}; $cmd ${source_file}" >> ${makefile}
/lib/mbedtls/external/mbedtls/scripts/mbedtls_dev/
A Dc_build_helper.py93 cmd = [cc]
95 proc = subprocess.Popen(cmd,
101 cmd += ['-I' + dir for dir in include_dirs]
106 cmd += ['-Fe' + exe_filename, '-Fo' + obj_filename]
108 cmd += ['-o' + exe_filename]
110 subprocess.check_call(cmd + [c_filename])
/lib/lwip/lwip/src/include/lwip/
A Dsockets.h588 int fcntl(int s, int cmd, ...);
625 int lwip_ioctl(int s, long cmd, void *argp);
626 int lwip_fcntl(int s, int cmd, int val);
675 #define ioctlsocket(s,cmd,argp) lwip_ioctl(s,cmd,argp) argument
693 #define fcntl(s,cmd,val) lwip_fcntl(s,cmd,val) argument
695 #define ioctl(s,cmd,argp) lwip_ioctl(s,cmd,argp) argument
/lib/mbedtls/external/mbedtls/scripts/
A Dcode_style.py80 cmd = ["git", "log", since + "..HEAD", "--name-only", "--pretty=", "--"] + src_files
81 output = subprocess.check_output(cmd, universal_newlines=True)
84 cmd = ["git", "diff", "--name-only", "--"] + src_files
85 output = subprocess.check_output(cmd, universal_newlines=True)
/lib/efi_selftest/
A Defi_selftest_tcg2.c681 u8 cmd[TPM2_CMD_BUF_SIZE] = { in get_manufacturer_id() local
693 ret = tcg2->submit_command(tcg2, 22, cmd, in get_manufacturer_id()
721 u8 cmd[TPM2_CMD_BUF_SIZE] = { in get_manufacturer_id_buffer_small() local
732 ret = tcg2->submit_command(tcg2, 22, cmd, 1, resp); in get_manufacturer_id_buffer_small()
748 u8 cmd[TPM2_CMD_BUF_SIZE] = { in read_pcr() local
762 cmd[17 + pcr_sel_idx] = pcr_sel_bit; in read_pcr()
763 ret = tcg2->submit_command(tcg2, cmd_len, cmd, in read_pcr()
/lib/lwip/lwip/contrib/ports/win32/example_app/
A DMakefile42 cmd /c del /q *.o $(LWIPLIBCOMMON) $(APPLIB) test.exe *.s .depend* *.map
49 $(CCDEP) $(CFLAGS) -MM $^ > .depend || cmd /c del .depend
/lib/lwip/lwip/src/include/netif/ppp/
A Dpppapi.h94 u8_t cmd; member
129 err_t pppapi_ioctl(ppp_pcb *pcb, u8_t cmd, void *arg);
A Dppp.h679 err_t ppp_ioctl(ppp_pcb *pcb, u8_t cmd, void *arg);
/lib/lwip/lwip/contrib/ports/unix/posixlib/include/posix/
A Dsockets.h117 int lwip_ioctl(int s, long cmd, void *argp);
118 int lwip_fcntl(int s, int cmd, int val);
/lib/lwip/lwip/src/netif/ppp/
A Dpppapi.c405 return ppp_ioctl(msg->msg.ppp, msg->msg.msg.ioctl.cmd, msg->msg.msg.ioctl.arg); in pppapi_do_ppp_ioctl()
413 pppapi_ioctl(ppp_pcb *pcb, u8_t cmd, void *arg) in pppapi_ioctl() argument
420 PPPAPI_VAR_REF(msg).msg.msg.ioctl.cmd = cmd; in pppapi_ioctl()
A Dppp.c417 ppp_ioctl(ppp_pcb *pcb, u8_t cmd, void *arg) in ppp_ioctl() argument
424 switch(cmd) { in ppp_ioctl()
/lib/lwip/lwip/src/api/
A Dsockets.c3788 lwip_ioctl(int s, long cmd, void *argp) in lwip_ioctl() argument
3800 switch (cmd) { in lwip_ioctl()
3869 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_ioctl(%d, UNIMPL: 0x%lx, %p)\n", s, cmd, argp)); in lwip_ioctl()
3881 lwip_fcntl(int s, int cmd, int val) in lwip_fcntl() argument
3891 switch (cmd) { in lwip_fcntl()
3941 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_fcntl(%d, UNIMPL: %d, %d)\n", s, cmd, val)); in lwip_fcntl()
3951 fcntl(int s, int cmd, ...) in fcntl() argument
3956 va_start(ap, cmd); in fcntl()
3959 return lwip_fcntl(s, cmd, val); in fcntl()
/lib/
A DMakefile171 $(call cmd,build_OID_registry)

Completed in 63 milliseconds