/freebsd/crypto/openssl/engines/ |
H A D | e_padlock.c | 499 # define DECLARE_AES_EVP(ksize,lmode,umode) \ argument 500 static EVP_CIPHER *_hidden_aes_##ksize##_##lmode = NULL; \ 501 static const EVP_CIPHER *padlock_aes_##ksize##_##lmode(void) \ 503 if (_hidden_aes_##ksize##_##lmode == NULL \ 504 && ((_hidden_aes_##ksize##_##lmode = \ 505 EVP_CIPHER_meth_new(NID_aes_##ksize##_##lmode, \ 508 || !EVP_CIPHER_meth_set_iv_length(_hidden_aes_##ksize##_##lmode, \ 510 || !EVP_CIPHER_meth_set_flags(_hidden_aes_##ksize##_##lmode, \ 512 || !EVP_CIPHER_meth_set_init(_hidden_aes_##ksize##_##lmode, \ 514 || !EVP_CIPHER_meth_set_do_cipher(_hidden_aes_##ksize##_##lmode, \ [all …]
|
/freebsd/contrib/nvi/vi/ |
H A D | v_delete.c | 35 int lmode; in v_delete() local 37 lmode = F_ISSET(vp, VM_LMODE) ? CUT_LINEMODE : 0; in v_delete() 42 lmode | (F_ISSET(vp, VM_CUTREQ) ? CUT_NUMREQ : CUT_NUMOPT))) in v_delete() 46 if (del(sp, &vp->m_start, &vp->m_stop, lmode)) in v_delete()
|
H A D | v_itxt.c | 246 int isempty, lmode, rval; in v_change() local 280 lmode = F_ISSET(vp, VM_LMODE) ? CUT_LINEMODE : 0; in v_change() 281 if (lmode) { in v_change() 298 if (!lmode && vp->m_start.lno == vp->m_stop.lno) { in v_change() 306 &vp->m_start, &vp->m_stop, lmode)) in v_change() 328 &vp->m_start, &vp->m_stop, lmode)) in v_change() 332 if (lmode && vp->m_start.cno) { in v_change() 345 if (del(sp, &vp->m_start, &vp->m_stop, lmode)) in v_change() 349 if (lmode) { in v_change()
|
/freebsd/contrib/tcsh/ |
H A D | sh.print.c | 248 if (didfds == 0 && ioctl(unit, TIOCLGET, (ioctl_t) & lmode) == 0 && in flush() 249 lmode & LFLUSHO) { in flush() 250 lmode = LFLUSHO; in flush() 251 (void) ioctl(unit, TIOCLBIC, (ioclt_t) & lmode); in flush()
|
/freebsd/contrib/telnet/telnet/ |
H A D | sys_bsd.c | 374 int lmode; in TerminalNewMode() local 422 lmode = olmode; in TerminalNewMode() 540 lmode &= ~LCTLECH; in TerminalNewMode() 548 lmode |= LCTLECH; in TerminalNewMode() 561 lmode |= LLITOUT; in TerminalNewMode() 563 lmode &= ~LLITOUT; in TerminalNewMode() 566 lmode |= LPASS8; in TerminalNewMode() 568 lmode &= ~LPASS8; in TerminalNewMode() 660 lmode = olmode; in TerminalNewMode() 666 ioctl(tin, TIOCLSET, (char *)&lmode); in TerminalNewMode()
|
/freebsd/contrib/nvi/common/ |
H A D | delete.c | 32 del(SCR *sp, MARK *fm, MARK *tm, int lmode) in del() argument 42 if (lmode) { in del()
|
/freebsd/contrib/tnftp/src/ |
H A D | ftp.c | 671 const char *lmode; in sendrequest() local 697 lmode = "w"; in sendrequest() 761 lmode = "r+"; in sendrequest() 771 dout = dataconn(lmode); in sendrequest() 890 const char *lmode, int printnames, int ignorespecial) in recvrequest() argument 1024 fout = fopen(local, lmode); in recvrequest() 1650 dataconn(const char *lmode) in dataconn() argument 1659 return (fdopen(data, lmode)); in dataconn() 1717 return (fdopen(data, lmode)); in dataconn()
|
H A D | cmds.c | 1377 const char *lmode; in mls() local 1403 lmode = (i == 1) ? "w" : "a"; in mls() 1404 recvrequest(dolist ? "LIST" : "NLST", dest, argv[i], lmode, in mls()
|
/freebsd/crypto/heimdal/appl/ftp/ftp/ |
H A D | ftp.c | 669 sendrequest (char *cmd, char *local, char *remote, char *lmode, int printnames) in sendrequest() argument 716 fin = popen (local + 1, lmode); in sendrequest() 726 fin = fopen (local, lmode); in sendrequest() 898 char *lmode, int printnames, int local_given) in recvrequest() argument 1021 fout = fopen (local, lmode); in recvrequest() 1415 dataconn (const char *lmode) in dataconn() argument 1423 return (fdopen (data, lmode)); in dataconn() 1436 return (fdopen (data, lmode)); in dataconn()
|
/freebsd/crypto/heimdal/appl/ftp/ |
H A D | ChangeLog | 854 * ftp/ftp.c (sendrequest): lmode != rmode
|