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()
198 zend_string **error_text in php_stream_xport_bind() argument
208 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_bind()
213 if (error_text) { in php_stream_xport_bind()
214 *error_text = param.outputs.error_text; in php_stream_xport_bind()
228 zend_string **error_text, in php_stream_xport_connect() argument
241 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_connect()
246 if (error_text) { in php_stream_xport_connect()
247 *error_text = param.outputs.error_text; in php_stream_xport_connect()
260 PHPAPI int php_stream_xport_listen(php_stream *stream, int backlog, zend_string **error_text) in php_stream_xport_listen() argument
268 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_listen()
273 if (error_text) { in php_stream_xport_listen()
274 *error_text = param.outputs.error_text; in php_stream_xport_listen()
288 zend_string **error_text in php_stream_xport_accept() argument
300 param.want_errortext = error_text ? 1 : 0; in php_stream_xport_accept()
313 if (error_text) { in php_stream_xport_accept()
314 *error_text = param.outputs.error_text; in php_stream_xport_accept()