Lines Matching refs:NULL

120 	NULL,
121 NULL,
218 NULL, /* seek */
219 NULL, /* cast */
220 NULL, /* stat */
221 NULL /* set_option */
248 php_stream *retstream = NULL, *stream = NULL; in _php_stream_bz2open()
249 char *path_copy = NULL; in _php_stream_bz2open()
250 BZFILE *bz_file = NULL; in _php_stream_bz2open()
256 return NULL; in _php_stream_bz2open()
260 virtual_filepath_ex(path, &path_copy, NULL); in _php_stream_bz2open()
269 return NULL; in _php_stream_bz2open()
283 if (bz_file == NULL) { in _php_stream_bz2open()
315 return NULL; in _php_stream_bz2open()
322 NULL, /* close */
323 NULL, /* fstat */
324 NULL, /* stat */
325 NULL, /* opendir */
327 NULL, /* unlink */
328 NULL, /* rename */
329 NULL, /* mkdir */
330 NULL /* rmdir */
335 NULL,
382 php_error_docref(NULL, E_WARNING, "length may not be negative"); in PHP_FUNCTION()
402 php_stream *stream = NULL; in PHP_FUNCTION()
409 …php_error_docref(NULL, E_WARNING, "'%s' is not a valid mode for bzopen(). Only 'w' and 'r' are sup… in PHP_FUNCTION()
416 php_error_docref(NULL, E_WARNING, "filename cannot be empty"); in PHP_FUNCTION()
424 stream = php_stream_bz2open(NULL, Z_STRVAL_P(file), mode, REPORT_ERRORS, NULL); in PHP_FUNCTION()
434 php_error_docref(NULL, E_WARNING, "cannot use stream opened in mode '%s'", stream->mode); in PHP_FUNCTION()
437 php_error_docref(NULL, E_WARNING, "cannot use stream opened in mode '%s'", stream->mode); in PHP_FUNCTION()
445 php_error_docref(NULL, E_WARNING, "cannot read from a stream opened in write only mode"); in PHP_FUNCTION()
454 php_error_docref(NULL, E_WARNING, "cannot write to a stream opened in read only mode"); in PHP_FUNCTION()
471 php_error_docref(NULL, E_WARNING, "first parameter has to be string or file-resource"); in PHP_FUNCTION()
514 zend_string *dest = NULL; /* Destination to place the compressed data into */ in PHP_FUNCTION()
580 bzs.bzalloc = NULL; in PHP_FUNCTION()
581 bzs.bzfree = NULL; in PHP_FUNCTION()
613 php_error_docref(NULL, E_WARNING, "Decompressed size too big, max is %zd", SIZE_MAX); in PHP_FUNCTION()