Lines Matching refs:error_text
66 zend_string *error_text = NULL; in _php_stream_xport_create() local
147 timeout, &error_text, error_code)) { in _php_stream_xport_create()
149 ERR_RETURN(error_string, error_text, "connect() failed: %s"); in _php_stream_xport_create()
158 if (0 != php_stream_xport_bind(stream, name, namelen, &error_text)) { in _php_stream_xport_create()
159 ERR_RETURN(error_string, error_text, "bind() failed: %s"); in _php_stream_xport_create()
169 if (0 != php_stream_xport_listen(stream, backlog, &error_text)) { in _php_stream_xport_create()
170 ERR_RETURN(error_string, error_text, "listen() failed: %s"); in _php_stream_xport_create()
203 zend_string **error_text in php_stream_xport_bind() argument
213 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_bind()
218 if (error_text) { in php_stream_xport_bind()
219 *error_text = param.outputs.error_text; in php_stream_xport_bind()
233 zend_string **error_text, in php_stream_xport_connect() argument
246 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_connect()
251 if (error_text) { in php_stream_xport_connect()
252 *error_text = param.outputs.error_text; in php_stream_xport_connect()
265 PHPAPI int php_stream_xport_listen(php_stream *stream, int backlog, zend_string **error_text) in php_stream_xport_listen() argument
273 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_listen()
278 if (error_text) { in php_stream_xport_listen()
279 *error_text = param.outputs.error_text; in php_stream_xport_listen()
293 zend_string **error_text in php_stream_xport_accept() argument
305 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_accept()
318 if (error_text) { in php_stream_xport_accept()
319 *error_text = param.outputs.error_text; in php_stream_xport_accept()