Lines Matching refs:context
22 typedef void (*php_stream_notification_func)(php_stream_context *context,
39 #define php_stream_context_to_zval(context, zval) { ZVAL_RES(zval, (context)->res); GC_ADDREF((cont… argument
58 PHPAPI void php_stream_context_free(php_stream_context *context);
60 PHPAPI zval *php_stream_context_get_option(php_stream_context *context,
62 PHPAPI int php_stream_context_set_option(php_stream_context *context,
86 PHPAPI void php_stream_notification_notify(php_stream_context *context, int notifycode, int severit…
88 PHPAPI php_stream_context *php_stream_context_set(php_stream *stream, php_stream_context *context);
91 #define php_stream_notify_info(context, code, xmsg, xcode) do { if ((context) && (context)->notifie… argument
92 php_stream_notification_notify((context), (code), PHP_STREAM_NOTIFY_SEVERITY_INFO, \
95 #define php_stream_notify_progress(context, bsofar, bmax) do { if ((context) && (context)->notifier… argument
96 …php_stream_notification_notify((context), PHP_STREAM_NOTIFY_PROGRESS, PHP_STREAM_NOTIFY_SEVERITY_I…
99 #define php_stream_notify_progress_init(context, sofar, bmax) do { if ((context) && (context)->noti… argument
100 (context)->notifier->progress = (sofar); \
101 (context)->notifier->progress_max = (bmax); \
102 (context)->notifier->mask |= PHP_STREAM_NOTIFIER_PROGRESS; \
103 php_stream_notify_progress((context), (sofar), (bmax)); } } while (0)
105 … php_stream_notify_progress_increment(context, dsofar, dmax) do { if ((context) && (context)->noti… argument
106 (context)->notifier->progress += (dsofar); \
107 (context)->notifier->progress_max += (dmax); \
108 …php_stream_notify_progress((context), (context)->notifier->progress, (context)->notifier->progress…
110 #define php_stream_notify_file_size(context, file_size, xmsg, xcode) do { if ((context) && (context… argument
111 …php_stream_notification_notify((context), PHP_STREAM_NOTIFY_FILE_SIZE_IS, PHP_STREAM_NOTIFY_SEVERI…
114 #define php_stream_notify_error(context, code, xmsg, xcode) do { if ((context) && (context)->notifi… argument
115 php_stream_notification_notify((context), (code), PHP_STREAM_NOTIFY_SEVERITY_ERR, \