Home
last modified time | relevance | path

Searched refs:pout (Results 1 – 21 of 21) sorted by relevance

/external/openssl/crypto/rand/
Drand_lib.c194 static size_t drbg_get_entropy(DRBG_CTX *ctx, unsigned char **pout, in drbg_get_entropy() argument
199 *pout = OPENSSL_malloc(min_len); in drbg_get_entropy()
200 if (!*pout) in drbg_get_entropy()
202 if (RAND_SSLeay()->bytes(*pout, min_len) <= 0) in drbg_get_entropy()
204 OPENSSL_free(*pout); in drbg_get_entropy()
205 *pout = NULL; in drbg_get_entropy()
224 static size_t drbg_get_adin(DRBG_CTX *ctx, unsigned char **pout) in drbg_get_adin() argument
230 *pout = buf; in drbg_get_adin()
/external/chromium_org/third_party/openssl/openssl/crypto/rand/
Drand_lib.c194 static size_t drbg_get_entropy(DRBG_CTX *ctx, unsigned char **pout, in drbg_get_entropy() argument
199 *pout = OPENSSL_malloc(min_len); in drbg_get_entropy()
200 if (!*pout) in drbg_get_entropy()
202 if (RAND_SSLeay()->bytes(*pout, min_len) <= 0) in drbg_get_entropy()
204 OPENSSL_free(*pout); in drbg_get_entropy()
205 *pout = NULL; in drbg_get_entropy()
224 static size_t drbg_get_adin(DRBG_CTX *ctx, unsigned char **pout) in drbg_get_adin() argument
230 *pout = buf; in drbg_get_adin()
/external/chromium_org/third_party/libjingle/source/talk/xmllite/
Dxmlprinter.cc42 XmlPrinterImpl(std::ostream* pout, XmlnsStack* ns_stack);
53 void XmlPrinter::PrintXml(std::ostream* pout, const XmlElement* element) { in PrintXml() argument
55 PrintXml(pout, element, &ns_stack); in PrintXml()
58 void XmlPrinter::PrintXml(std::ostream* pout, const XmlElement* element, in PrintXml() argument
60 XmlPrinterImpl printer(pout, ns_stack); in PrintXml()
64 XmlPrinterImpl::XmlPrinterImpl(std::ostream* pout, XmlnsStack* ns_stack) in XmlPrinterImpl() argument
65 : pout_(pout), in XmlPrinterImpl()
Dxmlprinter.h41 static void PrintXml(std::ostream* pout, const XmlElement* pelt);
43 static void PrintXml(std::ostream* pout, const XmlElement* pelt,
/external/chromium/third_party/libjingle/source/talk/xmllite/
Dxmlprinter.cc41 XmlPrinterImpl(std::ostream * pout,
54 XmlPrinter::PrintXml(std::ostream * pout, const XmlElement * element) { in PrintXml() argument
55 PrintXml(pout, element, NULL, 0); in PrintXml()
59 XmlPrinter::PrintXml(std::ostream * pout, const XmlElement * element, in PrintXml() argument
61 XmlPrinterImpl printer(pout, xmlns, xmlnsCount); in PrintXml()
65 XmlPrinterImpl::XmlPrinterImpl(std::ostream * pout, in XmlPrinterImpl() argument
67 pout_(pout), in XmlPrinterImpl()
Dxmlprinter.h41 static void PrintXml(std::ostream * pout, const XmlElement * pelt);
43 static void PrintXml(std::ostream * pout, const XmlElement * pelt,
Dxmlelement.cc500 std::ostream * pout, std::string xmlns[], int xmlnsCount) const { in Print() argument
501 XmlPrinter::PrintXml(pout, this, xmlns, xmlnsCount); in Print()
Dxmlelement.h220 void Print(std::ostream * pout, std::string xmlns[], int xmlnsCount) const;
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
DGZIPOutputStreamTest.java165 PipedOutputStream pout = new PipedOutputStream(); in testFlush() local
166 PipedInputStream pin = new PipedInputStream(pout); in testFlush()
167 GZIPOutputStream out = new GZIPOutputStream(pout); in testFlush()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
DPipedInputStreamTest.java42 public PWriter(PipedOutputStream pout, int nbytes) { in PWriter() argument
43 pos = pout; in PWriter()
119 PipedOutputStream pout = new PipedOutputStream(pin); in test_available() local
124 pout.write(i); in test_available()
DStreamTokenizerTest.java181 PipedOutputStream pout = new PipedOutputStream(pin); in test_nextToken() local
182 pout.write("hello\n\r\r".getBytes("UTF-8")); in test_nextToken()
191 pout.close(); in test_nextToken()
DObjectInputStreamTest.java938 PipedOutputStream pout = new PipedOutputStream(); in test_readClassDescriptor_1() local
939 PipedInputStream pin = new PipedInputStream(pout); in test_readClassDescriptor_1()
940 ObjectOutputStream out = new ObjectOutputStream(pout); in test_readClassDescriptor_1()
1071 PipedOutputStream pout = new PipedOutputStream(); in test_readObject_replacedClassDescriptor() local
1072 PipedInputStream pin = new PipedInputStream(pout); in test_readObject_replacedClassDescriptor()
1073 ObjectOutputStream oout = new TestObjectOutputStream(pout, objs); in test_readObject_replacedClassDescriptor()
/external/openssh/
Dsshconnect.c88 int pin[2], pout[2]; in ssh_proxy_connect() local
111 if (pipe(pin) < 0 || pipe(pout) < 0) in ssh_proxy_connect()
131 close(pout[0]); in ssh_proxy_connect()
132 if (dup2(pout[1], 1) < 0) in ssh_proxy_connect()
135 close(pout[1]); in ssh_proxy_connect()
159 close(pout[1]); in ssh_proxy_connect()
165 packet_set_connection(pout[0], pin[1]); in ssh_proxy_connect()
Dscp.c231 int pin[2], pout[2], reserved[2]; in do_cmd() local
249 if (pipe(pout) < 0) in do_cmd()
265 close(pout[0]); in do_cmd()
267 dup2(pout[1], 1); in do_cmd()
269 close(pout[1]); in do_cmd()
289 close(pout[1]); in do_cmd()
290 *fdin = pout[0]; in do_cmd()
Dsession.c453 int pin[2], pout[2], perr[2]; in do_exec_no_pty() local
463 if (pipe(pout) < 0) { in do_exec_no_pty()
474 close(pout[0]); in do_exec_no_pty()
475 close(pout[1]); in do_exec_no_pty()
507 close(pout[0]); in do_exec_no_pty()
508 close(pout[1]); in do_exec_no_pty()
543 close(pout[0]); in do_exec_no_pty()
544 if (dup2(pout[1], 1) < 0) in do_exec_no_pty()
546 close(pout[1]); in do_exec_no_pty()
605 close(pout[1]); in do_exec_no_pty()
[all …]
Dsftp.c2012 int pin[2], pout[2]; in connect_to_server() local
2014 if ((pipe(pin) == -1) || (pipe(pout) == -1)) in connect_to_server()
2017 *out = pout[1]; in connect_to_server()
2018 c_in = pout[0]; in connect_to_server()
/external/dropbear/
Dscp.c171 int pin[2], pout[2], reserved[2]; in do_cmd() local
188 if (pipe(pout) < 0) in do_cmd()
215 close(pout[0]); in do_cmd()
217 dup2(pout[1], 1); in do_cmd()
219 close(pout[1]); in do_cmd()
258 close(pout[1]); in do_cmd()
259 *fdin = pout[0]; in do_cmd()
/external/chromium_org/third_party/libxml/src/
Dregressions.py153 pin, pout, perr = os.popen3(cmd)
172 th1 = thread.start_new_thread(readPfile, (pout, outfile, th1Flag))
/external/llvm/test/Transforms/SimplifyCFG/
D2008-07-13-InfLoopMiscompile.ll32 …%pout = tail call i32 (i8*, ...)* @printf( i8* noalias getelementptr ([4 x i8]* @.str, i32 0, i32…
/external/libppp/src/
Dcommand.c523 unsigned long long oin, oout, pin, pout; in command_Expand() local
538 pout = bundle->ncp.ipcp.throughput.PacketsOut; in command_Expand()
543 pout += bundle->ncp.ipv6cp.throughput.PacketsOut; in command_Expand()
590 nargv[arg] = substull(nargv[arg], "PACKETSOUT", pout); in command_Expand()
/external/chromium_org/third_party/sqlite/src/test/
Dfts1porter.test15604 pout pout