Home
last modified time | relevance | path

Searched refs:outbufs (Results 1 – 3 of 3) sorted by relevance

/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
Dtls_schannel.c224 SecBuffer outbufs[1]; in tls_conn_hs_clienthello() local
236 outbufs[0].pvBuffer = NULL; in tls_conn_hs_clienthello()
237 outbufs[0].BufferType = SECBUFFER_TOKEN; in tls_conn_hs_clienthello()
238 outbufs[0].cbBuffer = 0; in tls_conn_hs_clienthello()
241 outbuf.pBuffers = outbufs; in tls_conn_hs_clienthello()
262 if (outbufs[0].cbBuffer != 0 && outbufs[0].pvBuffer) { in tls_conn_hs_clienthello()
265 outbufs[0].pvBuffer, outbufs[0].cbBuffer); in tls_conn_hs_clienthello()
267 *out_len = outbufs[0].cbBuffer; in tls_conn_hs_clienthello()
271 os_memcpy(buf, outbufs[0].pvBuffer, *out_len); in tls_conn_hs_clienthello()
272 global->sspi->FreeContextBuffer(outbufs[0].pvBuffer); in tls_conn_hs_clienthello()
[all …]
/external/wpa_supplicant_8/src/crypto/
Dtls_schannel.c217 SecBuffer outbufs[1]; in tls_conn_hs_clienthello() local
229 outbufs[0].pvBuffer = NULL; in tls_conn_hs_clienthello()
230 outbufs[0].BufferType = SECBUFFER_TOKEN; in tls_conn_hs_clienthello()
231 outbufs[0].cbBuffer = 0; in tls_conn_hs_clienthello()
234 outbuf.pBuffers = outbufs; in tls_conn_hs_clienthello()
255 if (outbufs[0].cbBuffer != 0 && outbufs[0].pvBuffer) { in tls_conn_hs_clienthello()
258 outbufs[0].pvBuffer, outbufs[0].cbBuffer); in tls_conn_hs_clienthello()
260 buf = wpabuf_alloc_copy(outbufs[0].pvBuffer, in tls_conn_hs_clienthello()
261 outbufs[0].cbBuffer); in tls_conn_hs_clienthello()
264 global->sspi->FreeContextBuffer(outbufs[0].pvBuffer); in tls_conn_hs_clienthello()
[all …]
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
DTriangleCollector.java221 IntMap<VertexBuffer> outbufs = out.getBuffers(); in gatherTris() local
222 for (Entry<VertexBuffer> ent : outbufs){ in gatherTris()