Lines Matching refs:io_ctx
2250 gdIOCtx *io_ctx; in _php_image_type() local
2251 io_ctx = gdNewDynamicCtxEx(8, data, 0); in _php_image_type()
2252 if (io_ctx) { in _php_image_type()
2253 if (_php_ctx_getmbi(io_ctx) == 0 && _php_ctx_getmbi(io_ctx) >= 0) { in _php_image_type()
2254 io_ctx->gd_free(io_ctx); in _php_image_type()
2257 io_ctx->gd_free(io_ctx); in _php_image_type()
2270 gdIOCtx *io_ctx; in _php_image_create_from_string() local
2272 io_ctx = gdNewDynamicCtxEx(Z_STRLEN_P(data), Z_STRVAL_P(data), 0); in _php_image_create_from_string()
2274 if (!io_ctx) { in _php_image_create_from_string()
2278 im = (*ioctx_func_p)(io_ctx); in _php_image_create_from_string()
2281 io_ctx->gd_free(io_ctx); in _php_image_create_from_string()
2285 io_ctx->gd_free(io_ctx); in _php_image_create_from_string()
2404 gdIOCtx* io_ctx; in _php_image_create_from() local
2417 io_ctx = gdNewDynamicCtxEx(ZSTR_LEN(buff), pstr, 0); in _php_image_create_from()
2418 if (!io_ctx) { in _php_image_create_from()
2426 im = (*ioctx_func_p)(io_ctx, srcx, srcy, width, height); in _php_image_create_from()
2428 im = (*ioctx_func_p)(io_ctx); in _php_image_create_from()
2430 io_ctx->gd_free(io_ctx); in _php_image_create_from()