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

/freebsd-10-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)
199 if (ssleay_rand_bytes(*pout, min_len, 0, 0) <= 0) {
200 OPENSSL_free(*pout);
201 *pout = NULL;
220 static size_t drbg_get_adin(DRBG_CTX *ctx, unsigned char **pout) argument
226 *pout = buf;
/freebsd-10-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-10-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:__anon7419::__anon7420
/freebsd-10-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-10-stable/crypto/openssl/engines/vendor_defns/
H A Dcswift.h228 SW_LARGENUMBER pout[],
/freebsd-10-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-10-stable/crypto/openssh/
H A Dsshconnect.c191 int pin[2], pout[2]; local
199 if (pipe(pin) < 0 || pipe(pout) < 0)
221 close(pout[0]);
222 if (dup2(pout[1], 1) < 0)
225 close(pout[1]);
249 close(pout[1]);
255 packet_set_connection(pout[0], pin[1]);
H A Dscp.c234 int pin[2], pout[2], reserved[2]; local
252 if (pipe(pout) < 0)
268 close(pout[0]);
270 dup2(pout[1], 1);
272 close(pout[1]);
292 close(pout[1]);
293 *fdin = pout[0];
H A Dsession.c464 int pin[2], pout[2], perr[2]; local
474 if (pipe(pout) < 0) {
485 close(pout[0]);
486 close(pout[1]);
518 close(pout[0]);
519 close(pout[1]);
554 close(pout[0]);
555 if (dup2(pout[1], 1) < 0)
557 close(pout[1]);
616 close(pout[
[all...]
H A Dsftp.c2170 int pin[2], pout[2]; local
2172 if ((pipe(pin) == -1) || (pipe(pout) == -1))
2175 *out = pout[1];
2176 c_in = pout[0];
/freebsd-10-stable/usr.sbin/ppp/
H A Dcommand.c526 unsigned long long oin, oout, pin, pout; local
541 pout = bundle->ncp.ipcp.throughput.PacketsOut;
546 pout += bundle->ncp.ipv6cp.throughput.PacketsOut;
593 nargv[arg] = substull(nargv[arg], "PACKETSOUT", pout);

Completed in 221 milliseconds