Home
last modified time | relevance | path

Searched refs:cctx (Results 1 – 8 of 8) sorted by relevance

/external/openssh/
Dmux.c311 struct mux_session_confirm_ctx *cctx; in process_mux_new_session() local
317 cctx = xcalloc(1, sizeof(*cctx)); in process_mux_new_session()
318 cctx->term = NULL; in process_mux_new_session()
319 cctx->rid = rid; in process_mux_new_session()
321 cctx->env = NULL; in process_mux_new_session()
324 buffer_get_int_ret(&cctx->want_tty, m) != 0 || in process_mux_new_session()
325 buffer_get_int_ret(&cctx->want_x_fwd, m) != 0 || in process_mux_new_session()
326 buffer_get_int_ret(&cctx->want_agent_fwd, m) != 0 || in process_mux_new_session()
327 buffer_get_int_ret(&cctx->want_subsys, m) != 0 || in process_mux_new_session()
329 (cctx->term = buffer_get_string_ret(m, &len)) == NULL || in process_mux_new_session()
[all …]
Dchannels.c3628 connect_next(struct channel_connect *cctx) argument
3634 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
3635 switch (cctx->ai->ai_family) {
3638 sunaddr = (struct sockaddr_un *)cctx->ai->ai_addr;
3644 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
3654 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
3655 cctx->ai->ai_protocol)) == -1) {
3656 if (cctx->ai->ai_next == NULL)
3664 if (connect(sock, cctx->ai->ai_addr,
3665 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
[all …]
/external/lz4/lib/
Dlz4frame.h196 LZ4FLIB_API LZ4F_errorCode_t LZ4F_freeCompressionContext(LZ4F_cctx* cctx);
210 LZ4FLIB_API size_t LZ4F_compressBegin(LZ4F_cctx* cctx, void* dstBuffer, size_t dstCapacity, const L…
227 LZ4FLIB_API size_t LZ4F_compressUpdate(LZ4F_cctx* cctx, void* dstBuffer, size_t dstCapacity, const …
239 LZ4FLIB_API size_t LZ4F_flush(LZ4F_cctx* cctx, void* dstBuffer, size_t dstCapacity, const LZ4F_comp…
249 LZ4FLIB_API size_t LZ4F_compressEnd(LZ4F_cctx* cctx, void* dstBuffer, size_t dstCapacity, const LZ4…
Dlz4.c460 LZ4_stream_t_internal* const cctx, in LZ4_compress_generic() argument
474 const BYTE* const lowRefLimit = ip - cctx->dictSize; in LZ4_compress_generic()
475 const BYTE* const dictionary = cctx->dictionary; in LZ4_compress_generic()
476 const BYTE* const dictEnd = dictionary + cctx->dictSize; in LZ4_compress_generic()
498 base = (const BYTE*)source - cctx->currentOffset; in LZ4_compress_generic()
499 lowLimit = (const BYTE*)source - cctx->dictSize; in LZ4_compress_generic()
502 base = (const BYTE*)source - cctx->currentOffset; in LZ4_compress_generic()
510 LZ4_putPosition(ip, cctx->hashTable, tableType, base); in LZ4_compress_generic()
531 match = LZ4_getPositionOnHash(h, cctx->hashTable, tableType, base); in LZ4_compress_generic()
541 LZ4_putPositionOnHash(ip, h, cctx->hashTable, tableType, base); in LZ4_compress_generic()
[all …]
/external/deqp/modules/glshared/
DglsFboUtil.cpp470 static void checkAttachmentCompleteness (Checker& cctx, const Attachment& attachment, in checkAttachmentCompleteness() argument
493cctx.addFBOStatus(GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT, "Attached layer index is larger than prese… in checkAttachmentCompleteness()
498cctx.addFBOStatus(GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT, "Width and height of an image are not non-… in checkAttachmentCompleteness()
508cctx.addFBOStatus(GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT, "Attachment format is not renderable in th… in checkAttachmentCompleteness()
511cctx.addPotentialFBOStatus(GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT, "Attachment format is not require… in checkAttachmentCompleteness()
514 cctx.addFBOStatus(GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT, "Attachment format is not legal"); in checkAttachmentCompleteness()
576 const UniquePtr<Checker> cctx(m_factory.createChecker(m_renderCtx)); in validStatusCodes() local
603 cctx->addGLError(GL_INVALID_ENUM, errorDescription.c_str()); in validStatusCodes()
604 cctx->addGLError(GL_INVALID_OPERATION, errorDescription.c_str()); in validStatusCodes()
605 cctx->addGLError(GL_INVALID_VALUE, errorDescription.c_str()); in validStatusCodes()
[all …]
/external/lz4/tests/
Dframetest.c177 LZ4F_compressionContext_t cctx = NULL; in basicTests() local
416 errorCode = LZ4F_createCompressionContext(&cctx, LZ4F_VERSION); in basicTests()
421 errorCode = LZ4F_compressBegin(cctx, compressedBuffer, testSize, &prefs); in basicTests()
424 …errorCode = LZ4F_compressUpdate(cctx, op, LZ4F_compressBound(testSize, &prefs), CNBuffer, testSize… in basicTests()
427 errorCode = LZ4F_compressEnd(cctx, compressedBuffer, testSize, NULL); in basicTests()
434 errorCode = LZ4F_compressBegin(cctx, compressedBuffer, testSize, &prefs); in basicTests()
437 …errorCode = LZ4F_compressUpdate(cctx, op, LZ4F_compressBound(testSize, &prefs), CNBuffer, testSize… in basicTests()
440 errorCode = LZ4F_compressEnd(cctx, compressedBuffer, testSize, NULL); in basicTests()
447 errorCode = LZ4F_compressBegin(cctx, compressedBuffer, testSize, &prefs); in basicTests()
450 …errorCode = LZ4F_compressUpdate(cctx, op, LZ4F_compressBound(testSize, &prefs), CNBuffer, testSize… in basicTests()
[all …]
/external/mesa3d/src/egl/drivers/glx/
Degl_glx.c767 GLXContext cctx; in GLX_eglMakeCurrent() local
776 cctx = (GLX_ctx) ? GLX_ctx->context : NULL; in GLX_eglMakeCurrent()
779 ret = GLX_drv->glXMakeContextCurrent(GLX_dpy->dpy, ddraw, rdraw, cctx); in GLX_eglMakeCurrent()
781 ret = GLX_drv->glXMakeCurrent(GLX_dpy->dpy, ddraw, cctx); in GLX_eglMakeCurrent()
/external/mesa3d/src/egl/drivers/dri2/
Degl_dri2.c896 __DRIcontext *cctx; in dri2_make_current() local
908 cctx = (dri2_ctx) ? dri2_ctx->dri_context : NULL; in dri2_make_current()
915 if ((cctx == NULL && ddraw == NULL && rdraw == NULL) || in dri2_make_current()
916 dri2_dpy->core->bindContext(cctx, ddraw, rdraw)) { in dri2_make_current()