Lines Matching refs:intern
174 -int s_calculate_timeout (php_zmq_device_object *intern TSRMLS_DC)
175 +int s_calculate_timeout (php_zmq_device_object *intern)
179 @@ -131,7 +131,7 @@ int s_calculate_timeout (php_zmq_device_object *intern TSRMLS_DC)
183 -zend_bool php_zmq_device (php_zmq_device_object *intern TSRMLS_DC)
184 +zend_bool php_zmq_device (php_zmq_device_object *intern)
188 @@ -186,7 +186,7 @@ zend_bool php_zmq_device (php_zmq_device_object *intern TSRMLS_DC)
192 - int timeout = s_calculate_timeout (intern TSRMLS_CC);
193 + int timeout = s_calculate_timeout (intern);
197 @@ -205,7 +205,7 @@ zend_bool php_zmq_device (php_zmq_device_object *intern TSRMLS_DC)
198 if (intern->timer_cb.initialized && intern->timer_cb.timeout > 0) {
200 if (intern->timer_cb.scheduled_at <= current_ts) {
201 - if (!s_invoke_device_cb (&intern->timer_cb, current_ts TSRMLS_CC)) {
202 + if (!s_invoke_device_cb (&intern->timer_cb, current_ts)) {
206 @@ -217,7 +217,7 @@ zend_bool php_zmq_device (php_zmq_device_object *intern TSRMLS_DC)
208 if ((current_ts - last_message_received) >= intern->idle_cb.timeout &&
209 intern->idle_cb.scheduled_at <= current_ts) {
210 - if (!s_invoke_device_cb (&intern->idle_cb, current_ts TSRMLS_CC)) {
211 + if (!s_invoke_device_cb (&intern->idle_cb, current_ts)) {