/PHP-7.0/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_htmlent.c | 149 filter->opaque = NULL; in mbfl_filt_conv_html_enc_flush() 167 filter->opaque = mbfl_malloc(html_enc_buffer_size+1); in mbfl_filt_conv_html_dec_ctor() 173 if (filter->opaque) in mbfl_filt_conv_html_dec_dtor() 175 mbfl_free((void*)filter->opaque); in mbfl_filt_conv_html_dec_dtor() 177 filter->opaque = NULL; in mbfl_filt_conv_html_dec_dtor() 184 char *buffer = (char*)filter->opaque; in mbfl_filt_conv_html_dec() 295 buffer = (unsigned char*)filter->opaque; in mbfl_filt_conv_html_dec_flush() 316 dest->opaque = mbfl_malloc(html_enc_buffer_size+1); in mbfl_filt_conv_html_dec_copy() 317 memcpy(dest->opaque, src->opaque, html_enc_buffer_size+1); in mbfl_filt_conv_html_dec_copy()
|
H A D | mbfilter_tl_jisx0201_jisx0208.c | 44 int mode = ((mbfl_filt_tl_jisx0201_jisx0208_param *)filt->opaque)->mode; in mbfl_filt_tl_jisx0201_jisx0208() 274 int mode = ((mbfl_filt_tl_jisx0201_jisx0208_param *)filt->opaque)->mode; in mbfl_filt_tl_jisx0201_jisx0208_flush()
|
H A D | mbfilter_cp5022x.c | 583 ctx->last.opaque = ctx; in mbfl_filt_conv_wchar_cp50220_ctor() 590 filt->opaque = ctx; in mbfl_filt_conv_wchar_cp50220_ctor() 602 *ctx = *(mbfl_filt_conv_wchar_cp50220_ctx*)src->opaque; in mbfl_filt_conv_wchar_cp50220_copy() 605 dest->opaque = ctx; in mbfl_filt_conv_wchar_cp50220_copy() 614 if (filt->opaque != NULL) { in mbfl_filt_conv_wchar_cp50220_dtor() 615 mbfl_free(filt->opaque); in mbfl_filt_conv_wchar_cp50220_dtor()
|
/PHP-7.0/sapi/cli/tests/ |
H A D | php_cli_server_007.phpt | 10 php_cli_server_start('header(\'WWW-Authenticate: Digest realm="foo",qop="auth",nonce="XXXXX",opaque… 39 WWW-Authenticate: Digest realm="foo",qop="auth",nonce="XXXXX",opaque="acbd18db4cc2f85cedef654fccc4a…
|
/PHP-7.0/ext/bz2/ |
H A D | bz2_filter.c | 54 static void *php_bz2_alloc(void *opaque, int items, int size) in php_bz2_alloc() argument 56 return (void *)safe_pemalloc(items, size, 0, ((php_bz2_filter_data*)opaque)->persistent); in php_bz2_alloc() 59 static void php_bz2_free(void *opaque, void *address) in php_bz2_free() argument 61 pefree((void *)address, ((php_bz2_filter_data*)opaque)->persistent); in php_bz2_free() 324 data->strm.opaque = (void *) data; in php_bz2_filter_create()
|
/PHP-7.0/ext/zlib/ |
H A D | zlib_filter.c | 41 static voidpf php_zlib_alloc(voidpf opaque, uInt items, uInt size) in php_zlib_alloc() argument 43 return (voidpf)safe_pemalloc(items, size, 0, ((php_zlib_filter_data*)opaque)->persistent); in php_zlib_alloc() 46 static void php_zlib_free(voidpf opaque, voidpf address) in php_zlib_free() argument 48 pefree((void*)address, ((php_zlib_filter_data*)opaque)->persistent); in php_zlib_free() 303 data->strm.opaque = (voidpf) data; in php_zlib_filter_create()
|
H A D | zlib.c | 56 static voidpf php_zlib_alloc(voidpf opaque, uInt items, uInt size) in php_zlib_alloc() argument 61 static void php_zlib_free(voidpf opaque, voidpf address) in php_zlib_free() argument
|
/PHP-7.0/ext/xmlrpc/libxmlrpc/ |
H A D | README | 11 This allows us to have a nicely encapsulated C api with opaque data types and private functions
|
/PHP-7.0/ext/dom/ |
H A D | domimplementation.c | 118 if (uri != NULL && uri->opaque != NULL) { in PHP_METHOD() 119 localname = xmlStrdup((xmlChar *) uri->opaque); in PHP_METHOD()
|
/PHP-7.0/ext/mbstring/libmbfl/mbfl/ |
H A D | mbfl_convert.h | 56 void *opaque; member
|
H A D | mbfilter.c | 2019 tl_filter->opaque = param; in mbfl_ja_jp_hantozen() 2048 if (tl_filter->opaque != NULL) { in mbfl_ja_jp_hantozen() 2049 mbfl_free(tl_filter->opaque); in mbfl_ja_jp_hantozen()
|
/PHP-7.0/ext/zip/lib/ |
H A D | zip_source_deflate.c | 289 ctx->zstr.opaque = NULL; in deflate_compress() 363 ctx->zstr.opaque = NULL; in deflate_decompress()
|
/PHP-7.0/ |
H A D | README.NEW-OUTPUT-API | 121 pointer to the opaque field of the output handler context
|
/PHP-7.0/ext/fileinfo/libmagic/ |
H A D | compress.c | 370 z.opaque = Z_NULL; in uncompressgzipped()
|
/PHP-7.0/ext/mbstring/ |
H A D | mbstring.c | 994 static int _php_mb_match_regex(void *opaque, const char *str, size_t str_len); 995 static void _php_mb_free_regex(void *opaque); 1020 static int _php_mb_match_regex(void *opaque, const char *str, size_t str_len) in _php_mb_match_regex() argument 1022 return onig_search((php_mb_regex_t *)opaque, (const OnigUChar *)str, in _php_mb_match_regex() 1029 static void _php_mb_free_regex(void *opaque) in _php_mb_free_regex() argument 1031 onig_free((php_mb_regex_t *)opaque); in _php_mb_free_regex() 1051 static int _php_mb_match_regex(void *opaque, const char *str, size_t str_len) in _php_mb_match_regex() argument 1053 return pcre_exec((pcre *)opaque, NULL, str, (int)str_len, 0, in _php_mb_match_regex() 1059 static void _php_mb_free_regex(void *opaque) in _php_mb_free_regex() argument 1061 pcre_free(opaque); in _php_mb_free_regex()
|
/PHP-7.0/sapi/cli/ |
H A D | php_cli_server.c | 787 static int php_cli_server_poller_iter_on_active(php_cli_server_poller *poller, void *opaque, int(*c… in php_cli_server_poller_iter_on_active() argument 824 if (SUCCESS != callback(opaque, e->fd, e->events)) { in php_cli_server_poller_iter_on_active() 836 if (SUCCESS != callback(opaque, fd, POLLIN)) { in php_cli_server_poller_iter_on_active() 841 if (SUCCESS != callback(opaque, fd, POLLOUT)) { in php_cli_server_poller_iter_on_active()
|
/PHP-7.0/ext/pcre/pcrelib/doc/ |
H A D | pcre.txt | 363 The types of the opaque structures that are used for compiled 16-bit 694 The types of the opaque structures that are used for compiled 32-bit 8503 opaque structure of type pcre_jit_stack, or NULL if there is an error.
|
/PHP-7.0/ext/pcre/pcrelib/ |
H A D | ChangeLog | 5043 study_data opaque data from pcre_study()
|