Lines Matching refs:error_text

67 	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()
192 zend_string **error_text in php_stream_xport_bind() argument
202 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_bind()
207 if (error_text) { in php_stream_xport_bind()
208 *error_text = param.outputs.error_text; in php_stream_xport_bind()
222 zend_string **error_text, in php_stream_xport_connect() argument
235 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_connect()
240 if (error_text) { in php_stream_xport_connect()
241 *error_text = param.outputs.error_text; in php_stream_xport_connect()
254 PHPAPI int php_stream_xport_listen(php_stream *stream, int backlog, zend_string **error_text) in php_stream_xport_listen() argument
262 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_listen()
267 if (error_text) { in php_stream_xport_listen()
268 *error_text = param.outputs.error_text; in php_stream_xport_listen()
282 zend_string **error_text in php_stream_xport_accept() argument
294 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_accept()
307 if (error_text) { in php_stream_xport_accept()
308 *error_text = param.outputs.error_text; in php_stream_xport_accept()