Home
last modified time | relevance | path

Searched refs:opaque (Results 1 – 18 of 18) sorted by relevance

/PHP-5.5/ext/mbstring/libmbfl/filters/
H A Dmbfilter_htmlent.c148 filter->opaque = NULL; in mbfl_filt_conv_html_enc_flush()
166 filter->opaque = mbfl_malloc(html_enc_buffer_size+1); in mbfl_filt_conv_html_dec_ctor()
172 if (filter->opaque) in mbfl_filt_conv_html_dec_dtor()
174 mbfl_free((void*)filter->opaque); in mbfl_filt_conv_html_dec_dtor()
176 filter->opaque = NULL; in mbfl_filt_conv_html_dec_dtor()
183 char *buffer = (char*)filter->opaque; in mbfl_filt_conv_html_dec()
294 buffer = (unsigned char*)filter->opaque; in mbfl_filt_conv_html_dec_flush()
H A Dmbfilter_tl_jisx0201_jisx0208.c44 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 Dmbfilter_cp5022x.c583 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-5.5/sapi/cli/tests/
H A Dphp_cli_server_007.phpt10 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-5.5/ext/xmlrpc/libxmlrpc/
H A DREADME11 This allows us to have a nicely encapsulated C api with opaque data types and private functions
/PHP-5.5/ext/bz2/
H A Dbz2_filter.c54 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-5.5/ext/zlib/
H A Dzlib_filter.c41 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()
301 data->strm.opaque = (voidpf) data; in php_zlib_filter_create()
H A Dzlib.c53 static voidpf php_zlib_alloc(voidpf opaque, uInt items, uInt size) in php_zlib_alloc() argument
58 static void php_zlib_free(voidpf opaque, voidpf address) in php_zlib_free() argument
/PHP-5.5/ext/dom/
H A Ddomimplementation.c115 if (uri != NULL && uri->opaque != NULL) { in PHP_METHOD()
116 localname = xmlStrdup(uri->opaque); in PHP_METHOD()
/PHP-5.5/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_convert.h56 void *opaque; member
H A Dmbfilter.c2019 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-5.5/ext/zip/lib/
H A Dzip_source_deflate.c260 ctx->zstr.opaque = NULL; in deflate_compress()
335 ctx->zstr.opaque = NULL; in deflate_decompress()
/PHP-5.5/
H A DREADME.NEW-OUTPUT-API121 pointer to the opaque field of the output handler context
/PHP-5.5/ext/fileinfo/libmagic/
H A Dcompress.c360 z.opaque = Z_NULL; in uncompressgzipped()
/PHP-5.5/ext/mbstring/
H A Dmbstring.c975 static int _php_mb_match_regex(void *opaque, const char *str, size_t str_len);
976 static void _php_mb_free_regex(void *opaque);
1001 static int _php_mb_match_regex(void *opaque, const char *str, size_t str_len) in _php_mb_match_regex() argument
1003 return onig_search((php_mb_regex_t *)opaque, (const OnigUChar *)str, in _php_mb_match_regex()
1010 static void _php_mb_free_regex(void *opaque) in _php_mb_free_regex() argument
1012 onig_free((php_mb_regex_t *)opaque); in _php_mb_free_regex()
1032 static int _php_mb_match_regex(void *opaque, const char *str, size_t str_len) in _php_mb_match_regex() argument
1034 return pcre_exec((pcre *)opaque, NULL, str, (int)str_len, 0, in _php_mb_match_regex()
1040 static void _php_mb_free_regex(void *opaque) in _php_mb_free_regex() argument
1042 pcre_free(opaque); in _php_mb_free_regex()
/PHP-5.5/sapi/cli/
H A Dphp_cli_server.c910 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
948 if (SUCCESS != callback(opaque, e->fd, e->events)) { in php_cli_server_poller_iter_on_active()
960 if (SUCCESS != callback(opaque, fd, POLLIN)) { in php_cli_server_poller_iter_on_active()
965 if (SUCCESS != callback(opaque, fd, POLLOUT)) { in php_cli_server_poller_iter_on_active()
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt363 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-5.5/ext/pcre/pcrelib/
H A DChangeLog5043 study_data opaque data from pcre_study()

Completed in 115 milliseconds