Home
last modified time | relevance | path

Searched refs:ctx (Results 51 – 69 of 69) sorted by relevance

123

/PHP-5.5/sapi/milter/
H A Dphp_milter.h25 SMFICTX *ctx; member
/PHP-5.5/ext/ftp/
H A Dftp.c250 SSL_CTX *ctx = NULL; in ftp_login() local
283 if (ctx == NULL) { in ftp_login()
293 ftp->ssl_handle = SSL_new(ctx); in ftp_login()
296 SSL_CTX_free(ctx); in ftp_login()
1495 SSL_CTX *ctx; in data_accept() local
1518 if (ctx == NULL) { in data_accept()
1528 data->ssl_handle = SSL_new(ctx); in data_accept()
1531 SSL_CTX_free(ctx); in data_accept()
1564 SSL_CTX *ctx; in data_close() local
1574 SSL_CTX_free(ctx); in data_close()
[all …]
/PHP-5.5/ext/sockets/
H A Dsendrecvmsg.h24 typedef size_t (calculate_req_space)(const zval *value, ser_context *ctx);
/PHP-5.5/ext/standard/tests/http/
H A Dbug61548.phpt20 $ctx = stream_context_create($options);
28 $fd = fopen('http://127.0.0.1:12342/', 'rb', false, $ctx);
/PHP-5.5/ext/openssl/
H A Dopenssl.c747 X509V3_CTX ctx; in php_openssl_config_check_syntax() local
749 X509V3_set_ctx_test(&ctx); in php_openssl_config_check_syntax()
2581 X509V3_CTX ctx; in PHP_FUNCTION() local
4355 EVP_CIPHER_CTX ctx; in PHP_FUNCTION() local
4403 EVP_CIPHER_CTX_cleanup(&ctx); in PHP_FUNCTION()
4414 EVP_CIPHER_CTX_cleanup(&ctx); in PHP_FUNCTION()
4419 EVP_CIPHER_CTX_cleanup(&ctx); in PHP_FUNCTION()
4452 EVP_CIPHER_CTX_cleanup(&ctx); in PHP_FUNCTION()
4479 EVP_CIPHER_CTX ctx; in PHP_FUNCTION() local
4525 EVP_CIPHER_CTX_cleanup(&ctx); in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/libxml/
H A Dlibxml.c505 static void php_libxml_ctx_error_level(int level, void *ctx, const char *msg TSRMLS_DC) in php_libxml_ctx_error_level() argument
509 parser = (xmlParserCtxtPtr) ctx; in php_libxml_ctx_error_level()
529 static void php_libxml_internal_error_handler(int error_type, void *ctx, const char **msg, va_list … in php_libxml_internal_error_handler() argument
555 php_libxml_ctx_error_level(E_WARNING, ctx, LIBXML(error_buffer).c TSRMLS_CC); in php_libxml_internal_error_handler()
558 php_libxml_ctx_error_level(E_NOTICE, ctx, LIBXML(error_buffer).c TSRMLS_CC); in php_libxml_internal_error_handler()
714 PHP_LIBXML_API void php_libxml_ctx_error(void *ctx, const char *msg, ...) in php_libxml_ctx_error() argument
718 php_libxml_internal_error_handler(PHP_LIBXML_CTX_ERROR, ctx, &msg, args); in php_libxml_ctx_error()
722 PHP_LIBXML_API void php_libxml_ctx_warning(void *ctx, const char *msg, ...) in php_libxml_ctx_warning() argument
726 php_libxml_internal_error_handler(PHP_LIBXML_CTX_WARNING, ctx, &msg, args); in php_libxml_ctx_warning()
737 PHP_LIBXML_API void php_libxml_error_handler(void *ctx, const char *msg, ...) in php_libxml_error_handler() argument
[all …]
/PHP-5.5/ext/soap/
H A Dphp_sdl.h269 void sdl_set_uri_credentials(sdlCtx *ctx, char *uri TSRMLS_DC);
270 void sdl_restore_uri_credentials(sdlCtx *ctx TSRMLS_DC);
H A Dphp_xml.c72 static void soap_ignorableWhitespace(void *ctx, const xmlChar *ch, int len) in soap_ignorableWhitespace() argument
76 static void soap_Comment(void *ctx, const xmlChar *value) in soap_Comment() argument
/PHP-5.5/main/
H A Dphp_output.h110 #define PHP_OUTPUT_TSRMLS(ctx) TSRMLS_FETCH_FROM_CTX((ctx)->tsrm_ls) argument
/PHP-5.5/ext/com_dotnet/
H A Dcom_com.c44 CLSCTX ctx = CLSCTX_SERVER; in PHP_FUNCTION() local
74 ctx = CLSCTX_REMOTE_SERVER; in PHP_FUNCTION()
85 ctx = CLSCTX_REMOTE_SERVER; in PHP_FUNCTION()
112 ctx = (CLSCTX)Z_LVAL_PP(tmp); in PHP_FUNCTION()
203 res = CoCreateInstanceEx(&clsid, NULL, ctx, &info, 1, &qi); in PHP_FUNCTION()
/PHP-5.5/ext/standard/
H A Dfile.h79 PHPAPI int php_copy_file_ctx(char *src, char *dest, int src_chk, php_stream_context *ctx TSRMLS_DC);
H A Dfile.c1650 PHPAPI int php_copy_file_ctx(char *src, char *dest, int src_flg, php_stream_context *ctx TSRMLS_DC) in php_copy_file_ctx()
1656 switch (php_stream_stat_path_ex(src, 0, &src_s, ctx)) { in php_copy_file_ctx()
1671 …stream_stat_path_ex(dest, PHP_STREAM_URL_STAT_QUIET | PHP_STREAM_URL_STAT_NOCACHE, &dest_s, ctx)) { in php_copy_file_ctx()
1721 srcstream = php_stream_open_wrapper_ex(src, "rb", src_flg | REPORT_ERRORS, NULL, ctx); in php_copy_file_ctx()
1727 deststream = php_stream_open_wrapper_ex(dest, "wb", REPORT_ERRORS, NULL, ctx); in php_copy_file_ctx()
/PHP-5.5/ext/pdo_oci/
H A Doci_statement.c187 static sb4 oci_bind_input_cb(dvoid *ctx, OCIBind *bindp, ub4 iter, ub4 index, dvoid **bufpp, ub4 *a… in oci_bind_input_cb() argument
189 struct pdo_bound_param_data *param = (struct pdo_bound_param_data*)ctx; in oci_bind_input_cb()
219 static sb4 oci_bind_output_cb(dvoid *ctx, OCIBind *bindp, ub4 iter, ub4 index, dvoid **bufpp, ub4 *… in oci_bind_output_cb() argument
221 struct pdo_bound_param_data *param = (struct pdo_bound_param_data*)ctx; in oci_bind_output_cb()
/PHP-5.5/ext/curl/
H A Dinterface.c1300 static size_t curl_write(char *data, size_t size, size_t nmemb, void *ctx) in curl_write() argument
1302 php_curl *ch = (php_curl *) ctx; in curl_write()
1378 static int curl_fnmatch(void *ctx, const char *pattern, const char *string) in curl_fnmatch() argument
1380 php_curl *ch = (php_curl *) ctx; in curl_fnmatch()
1525 static size_t curl_read(char *data, size_t size, size_t nmemb, void *ctx) in curl_read() argument
1527 php_curl *ch = (php_curl *) ctx; in curl_read()
1601 static size_t curl_write_header(char *data, size_t size, size_t nmemb, void *ctx) in curl_write_header() argument
1603 php_curl *ch = (php_curl *) ctx; in curl_write_header()
1680 php_curl *ch = (php_curl *) ctx; in curl_debug()
1699 static size_t curl_passwd(void *ctx, char *prompt, char *buf, int buflen) in curl_passwd() argument
[all …]
/PHP-5.5/ext/gd/libgd/
H A Dgd.h755 void* gdDPExtractData(struct gdIOCtx* ctx, int *size);
/PHP-5.5/ext/oci8/
H A Doci8_statement.c336 sb4 php_oci_define_callback(dvoid *ctx, OCIDefine *define, ub4 iter, dvoid **bufpp, ub4 **alenpp, u… in php_oci_define_callback() argument
338 php_oci_out_column *outcol = (php_oci_out_column *)ctx; in php_oci_define_callback()
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c63420 memset(&ctx, 0, sizeof(ctx));
63424 ctx.pOut = &t;
64295 memset(&ctx, 0, sizeof(ctx));
64296 ctx.pOut = pVal;
72430 ctx.pVdbe = p;
72434 (*ctx.pFunc->xFunc)(&ctx, n, apVal); /* IMP: R-24505-23230 */
76565 ctx.pOut = &t;
76566 ctx.isError = 0;
76567 ctx.pVdbe = p;
76570 (ctx.pFunc->xStep)(&ctx, n, apVal); /* IMP: R-24505-23230 */
[all …]
/PHP-5.5/ext/gd/
H A Dgd.c2195 static int _php_ctx_getmbi(gdIOCtx *ctx) in _php_ctx_getmbi() argument
2200 i = (ctx->getC)(ctx); in _php_ctx_getmbi()
/PHP-5.5/Zend/
H A Dzend_compile.c2408 zend_compiler_context *ctx; in zend_release_labels() local
2410 zend_stack_top(&CG(context_stack), (void**)&ctx); in zend_release_labels()
2411 CG(context) = *ctx; in zend_release_labels()

Completed in 367 milliseconds

123