Searched refs:pout (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/crypto/openssl/crypto/rand/
H A Drand_lib.c191 static size_t drbg_get_entropy(DRBG_CTX *ctx, unsigned char **pout, argument
196 *pout = OPENSSL_malloc(min_len);
197 if (!*pout)
201 if (ssleay_rand_bytes_from_system(*pout, min_len) <= 0) {
202 OPENSSL_free(*pout);
203 *pout = NULL;
209 static size_t drbg_get_nonce(DRBG_CTX *ctx, unsigned char **pout, argument
214 *pout = OPENSSL_malloc(min_len);
215 if (!*pout)
217 if (ssleay_rand_bytes(*pout, min_le
238 drbg_get_adin(DRBG_CTX *ctx, unsigned char **pout) argument
[all...]
/freebsd-11-stable/release/picobsd/tinyware/msh/
H A Dsh3.c43 _PROTOTYPE(static int forkexec, (struct op *t, int *pin, int *pout, int act, char **wp, int *pforked ));
77 execute(t, pin, pout, act)
79 int *pin, *pout;
99 rv = forkexec(t, pin, pout, act, wp, &child);
112 rv = execute(t->right, pv, pout, 0);
116 (void) execute(t->left, pin, pout, 0);
117 rv = execute(t->right, pin, pout, 0);
144 exit(execute(t->left, pin, pout, FEXEC));
150 rv = execute(t->left, pin, pout, 0);
152 rv = execute(t1, pin, pout,
[all...]
H A Dsh.h268 _PROTOTYPE(int execute , (struct op *t , int *pin , int *pout , int act ));
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-raid.h115 uint64_t pout : 1; /**< Indicates whether the P pipe is used by this instruction. member in struct:__anon8737::__anon8738
/freebsd-11-stable/crypto/heimdal/appl/rcp/
H A Drcp.c716 int pin[2], pout[2], reserved[2]; local
729 if (pipe(pout) < 0) {
745 close(pout[0]);
747 dup2(pout[1], 1);
749 close(pout[1]);
786 close(pout[1]);
787 *fdin = pout[0];
/freebsd-11-stable/crypto/openssl/engines/vendor_defns/
H A Dcswift.h228 SW_LARGENUMBER pout[],
/freebsd-11-stable/contrib/gdb/gdb/
H A Dnto-tdep.c153 nto_parse_redirection (char *pargv[], char **pin, char **pout, char **perr) argument
200 *pout = out;
/freebsd-11-stable/crypto/openssh/
H A Dsshconnect.c190 int pin[2], pout[2]; local
198 if (pipe(pin) < 0 || pipe(pout) < 0)
220 close(pout[0]);
221 if (dup2(pout[1], 1) < 0)
224 close(pout[1]);
248 close(pout[1]);
254 packet_set_connection(pout[0], pin[1]);
H A Dscp.c233 int pin[2], pout[2], reserved[2]; local
251 if (pipe(pout) < 0)
267 close(pout[0]);
269 dup2(pout[1], 1);
271 close(pout[1]);
291 close(pout[1]);
292 *fdin = pout[0];
H A Dsession.c300 int pin[2], pout[2], perr[2]; local
310 if (pipe(pout) < 0) {
321 close(pout[0]);
322 close(pout[1]);
354 close(pout[0]);
355 close(pout[1]);
390 close(pout[0]);
391 if (dup2(pout[1], 1) < 0)
393 close(pout[1]);
452 close(pout[
[all...]
H A Dsftp.c2189 int pin[2], pout[2]; local
2191 if ((pipe(pin) == -1) || (pipe(pout) == -1))
2194 *out = pout[1];
2195 c_in = pout[0];
/freebsd-11-stable/crypto/openssl/crypto/cms/
H A Dcms_kari.c239 static int cms_kek_cipher(unsigned char **pout, size_t *poutlen, argument
266 *pout = out;
/freebsd-11-stable/usr.sbin/ppp/
H A Dcommand.c528 unsigned long long oin, oout, pin, pout; local
543 pout = bundle->ncp.ipcp.throughput.PacketsOut;
548 pout += bundle->ncp.ipv6cp.throughput.PacketsOut;
595 nargv[arg] = substull(nargv[arg], "PACKETSOUT", pout);

Completed in 216 milliseconds