Lines Matching refs:io_ctx
1373 gdIOCtx *io_ctx; in _php_image_type() local
1374 io_ctx = gdNewDynamicCtxEx(8, ZSTR_VAL(data), 0); in _php_image_type()
1375 if (io_ctx) { in _php_image_type()
1376 if (_php_ctx_getmbi(io_ctx) == 0 && _php_ctx_getmbi(io_ctx) >= 0) { in _php_image_type()
1377 io_ctx->gd_free(io_ctx); in _php_image_type()
1380 io_ctx->gd_free(io_ctx); in _php_image_type()
1392 gdIOCtx *io_ctx; in _php_image_create_from_string() local
1394 io_ctx = gdNewDynamicCtxEx(ZSTR_LEN(data), ZSTR_VAL(data), 0); in _php_image_create_from_string()
1396 if (!io_ctx) { in _php_image_create_from_string()
1400 im = (*ioctx_func_p)(io_ctx); in _php_image_create_from_string()
1403 io_ctx->gd_free(io_ctx); in _php_image_create_from_string()
1407 io_ctx->gd_free(io_ctx); in _php_image_create_from_string()
1540 gdIOCtx* io_ctx; in _php_image_create_from() local
1553 io_ctx = gdNewDynamicCtxEx(ZSTR_LEN(buff), pstr, 0); in _php_image_create_from()
1554 if (!io_ctx) { in _php_image_create_from()
1562 im = gdImageCreateFromGd2PartCtx(io_ctx, srcx, srcy, width, height); in _php_image_create_from()
1564 im = (*ioctx_func_p)(io_ctx); in _php_image_create_from()
1566 io_ctx->gd_free(io_ctx); in _php_image_create_from()