Lines Matching refs:error_text

66 	zend_string *error_text = NULL;  in _php_stream_xport_create()  local
145 timeout, &error_text, error_code)) { in _php_stream_xport_create()
147 ERR_RETURN(error_string, error_text, "connect() failed: %s"); in _php_stream_xport_create()
156 if (0 != php_stream_xport_bind(stream, name, namelen, &error_text)) { in _php_stream_xport_create()
157 ERR_RETURN(error_string, error_text, "bind() failed: %s"); in _php_stream_xport_create()
167 if (0 != php_stream_xport_listen(stream, backlog, &error_text)) { in _php_stream_xport_create()
168 ERR_RETURN(error_string, error_text, "listen() failed: %s"); in _php_stream_xport_create()
201 zend_string **error_text in php_stream_xport_bind() argument
211 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_bind()
216 if (error_text) { in php_stream_xport_bind()
217 *error_text = param.outputs.error_text; in php_stream_xport_bind()
231 zend_string **error_text, in php_stream_xport_connect() argument
244 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_connect()
249 if (error_text) { in php_stream_xport_connect()
250 *error_text = param.outputs.error_text; in php_stream_xport_connect()
263 PHPAPI int php_stream_xport_listen(php_stream *stream, int backlog, zend_string **error_text) in php_stream_xport_listen() argument
271 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_listen()
276 if (error_text) { in php_stream_xport_listen()
277 *error_text = param.outputs.error_text; in php_stream_xport_listen()
291 zend_string **error_text in php_stream_xport_accept() argument
303 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_accept()
316 if (error_text) { in php_stream_xport_accept()
317 *error_text = param.outputs.error_text; in php_stream_xport_accept()