Searched defs:opaque (Results 1 - 6 of 6) sorted by relevance

/PHP_TRUNK/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_convert.h56 void *opaque; member in struct:_mbfl_convert_filter
/PHP_TRUNK/ext/bz2/
H A Dbz2_filter.c54 static void *php_bz2_alloc(void *opaque, int items, int size) argument
56 return (void *)safe_pemalloc(items, size, 0, ((php_bz2_filter_data*)opaque)->persistent);
59 static void php_bz2_free(void *opaque, void *address) argument
61 pefree((void *)address, ((php_bz2_filter_data*)opaque)->persistent);
325 data->strm.opaque = (void *) data;
/PHP_TRUNK/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) argument
1003 return onig_search((php_mb_regex_t *)opaque, (const OnigUChar *)str,
1010 static void _php_mb_free_regex(void *opaque) argument
1012 onig_free((php_mb_regex_t *)opaque);
1032 static int _php_mb_match_regex(void *opaque, const char *str, size_t str_len) argument
1034 return pcre_exec((pcre *)opaque, NULL, str, (int)str_len, 0,
1040 static void _php_mb_free_regex(void *opaque) argument
1042 pcre_free(opaque);
[all...]
/PHP_TRUNK/ext/zlib/
H A Dzlib.c41 static voidpf php_zlib_alloc(voidpf opaque, uInt items, uInt size) argument
46 static void php_zlib_free(voidpf opaque, voidpf address) argument
H A Dzlib_filter.c26 /* Passed as opaque in malloc callbacks */
41 static voidpf php_zlib_alloc(voidpf opaque, uInt items, uInt size) argument
43 return (voidpf)safe_pemalloc(items, size, 0, ((php_zlib_filter_data*)opaque)->persistent);
46 static void php_zlib_free(voidpf opaque, voidpf address) argument
48 pefree((void*)address, ((php_zlib_filter_data*)opaque)->persistent);
301 data->strm.opaque = (voidpf) data;
/PHP_TRUNK/sapi/cli/
H A Dphp_cli_server.c772 static int php_cli_server_poller_iter_on_active(php_cli_server_poller *poller, void *opaque, int(*callback)(void *, int fd, int events)) /* {{{ */ argument
810 if (SUCCESS != callback(opaque, e->fd, e->events)) {
822 if (SUCCESS != callback(opaque, fd, POLLIN)) {
827 if (SUCCESS != callback(opaque, fd, POLLOUT)) {

Completed in 14 milliseconds