Lines Matching refs:context

24 typedef void (*php_stream_notification_func)(php_stream_context *context,
41 #define php_stream_context_to_zval(context, zval) { ZVAL_RESOURCE(zval, (context)->rsrc_id); zend_l… argument
61 PHPAPI void php_stream_context_free(php_stream_context *context);
63 PHPAPI int php_stream_context_get_option(php_stream_context *context,
65 PHPAPI int php_stream_context_set_option(php_stream_context *context,
68 PHPAPI int php_stream_context_get_link(php_stream_context *context,
70 PHPAPI int php_stream_context_set_link(php_stream_context *context,
72 PHPAPI int php_stream_context_del_link(php_stream_context *context,
96 PHPAPI void php_stream_notification_notify(php_stream_context *context, int notifycode, int severit…
98 PHPAPI php_stream_context *php_stream_context_set(php_stream *stream, php_stream_context *context);
101 #define php_stream_notify_info(context, code, xmsg, xcode) do { if ((context) && (context)->notifie… argument
102 php_stream_notification_notify((context), (code), PHP_STREAM_NOTIFY_SEVERITY_INFO, \
105 #define php_stream_notify_progress(context, bsofar, bmax) do { if ((context) && (context)->notifier… argument
106 …php_stream_notification_notify((context), PHP_STREAM_NOTIFY_PROGRESS, PHP_STREAM_NOTIFY_SEVERITY_I…
109 #define php_stream_notify_progress_init(context, sofar, bmax) do { if ((context) && (context)->noti… argument
110 (context)->notifier->progress = (sofar); \
111 (context)->notifier->progress_max = (bmax); \
112 (context)->notifier->mask |= PHP_STREAM_NOTIFIER_PROGRESS; \
113 php_stream_notify_progress((context), (sofar), (bmax)); } } while (0)
115 … php_stream_notify_progress_increment(context, dsofar, dmax) do { if ((context) && (context)->noti… argument
116 (context)->notifier->progress += (dsofar); \
117 (context)->notifier->progress_max += (dmax); \
118 …php_stream_notify_progress((context), (context)->notifier->progress, (context)->notifier->progress…
120 #define php_stream_notify_file_size(context, file_size, xmsg, xcode) do { if ((context) && (context argument
121 …php_stream_notification_notify((context), PHP_STREAM_NOTIFY_FILE_SIZE_IS, PHP_STREAM_NOTIFY_SEVERI…
124 #define php_stream_notify_error(context, code, xmsg, xcode) do { if ((context) && (context)->notifi… argument
125 php_stream_notification_notify((context), (code), PHP_STREAM_NOTIFY_SEVERITY_ERR, \