Lines Matching refs:error_text

65 	zend_string *error_text = NULL;  in _php_stream_xport_create()  local
146 timeout, &error_text, error_code)) { in _php_stream_xport_create()
148 ERR_RETURN(error_string, error_text, "connect() failed: %s"); in _php_stream_xport_create()
157 if (0 != php_stream_xport_bind(stream, name, namelen, &error_text)) { in _php_stream_xport_create()
158 ERR_RETURN(error_string, error_text, "bind() failed: %s"); in _php_stream_xport_create()
174 if (0 != php_stream_xport_listen(stream, backlog, &error_text)) { in _php_stream_xport_create()
175 ERR_RETURN(error_string, error_text, "listen() failed: %s"); in _php_stream_xport_create()
199 zend_string **error_text in php_stream_xport_bind() argument
209 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_bind()
214 if (error_text) { in php_stream_xport_bind()
215 *error_text = param.outputs.error_text; in php_stream_xport_bind()
229 zend_string **error_text, in php_stream_xport_connect() argument
242 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_connect()
247 if (error_text) { in php_stream_xport_connect()
248 *error_text = param.outputs.error_text; in php_stream_xport_connect()
261 PHPAPI int php_stream_xport_listen(php_stream *stream, int backlog, zend_string **error_text) in php_stream_xport_listen() argument
269 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_listen()
274 if (error_text) { in php_stream_xport_listen()
275 *error_text = param.outputs.error_text; in php_stream_xport_listen()
289 zend_string **error_text in php_stream_xport_accept() argument
301 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_accept()
314 if (error_text) { in php_stream_xport_accept()
315 *error_text = param.outputs.error_text; in php_stream_xport_accept()