Lines Matching refs:NULL
119 NULL,
120 NULL,
187 NULL, /* seek */
188 NULL, /* cast */
189 NULL, /* stat */
190 NULL /* set_option */
214 php_stream *retstream = NULL, *stream = NULL; in _php_stream_bz2open()
215 char *path_copy = NULL; in _php_stream_bz2open()
216 BZFILE *bz_file = NULL; in _php_stream_bz2open()
222 return NULL; in _php_stream_bz2open()
226 virtual_filepath_ex(path, &path_copy, NULL TSRMLS_CC); in _php_stream_bz2open()
231 …if ((PG(safe_mode) && (!php_checkuid(path_copy, NULL, CHECKUID_CHECK_FILE_AND_DIR))) || php_check_… in _php_stream_bz2open()
232 return NULL; in _php_stream_bz2open()
241 path_copy = NULL; in _php_stream_bz2open()
243 if (bz_file == NULL) { in _php_stream_bz2open()
275 return NULL; in _php_stream_bz2open()
282 NULL, /* close */
283 NULL, /* fstat */
284 NULL, /* stat */
285 NULL, /* opendir */
287 NULL, /* unlink */
288 NULL, /* rename */
289 NULL, /* mkdir */
290 NULL /* rmdir */
295 NULL,
341 php_error_docref(NULL TSRMLS_CC, E_WARNING, "length may not be negative"); in PHP_FUNCTION()
350 php_error_docref(NULL TSRMLS_CC, E_WARNING, "could not read valid bz2 data from stream"); in PHP_FUNCTION()
375 php_stream *stream = NULL; in PHP_FUNCTION()
382 …php_error_docref(NULL TSRMLS_CC, E_WARNING, "'%s' is not a valid mode for bzopen(). Only 'w' and '… in PHP_FUNCTION()
394 php_error_docref(NULL TSRMLS_CC, E_WARNING, "filename cannot be empty"); in PHP_FUNCTION()
398 stream = php_stream_bz2open(NULL, in PHP_FUNCTION()
402 NULL); in PHP_FUNCTION()
412 …php_error_docref(NULL TSRMLS_CC, E_WARNING, "cannot use stream opened in mode '%s'", stream->mode); in PHP_FUNCTION()
415 …php_error_docref(NULL TSRMLS_CC, E_WARNING, "cannot use stream opened in mode '%s'", stream->mode); in PHP_FUNCTION()
423 …php_error_docref(NULL TSRMLS_CC, E_WARNING, "cannot read from a stream opened in write only mode"); in PHP_FUNCTION()
432 … php_error_docref(NULL TSRMLS_CC, E_WARNING, "cannot write to a stream opened in read only mode"); in PHP_FUNCTION()
449 php_error_docref(NULL TSRMLS_CC, E_WARNING, "first parameter has to be string or file-resource"); in PHP_FUNCTION()
492 char *dest = NULL; /* Destination to place the compressed data into */ in PHP_FUNCTION()
556 bzs.bzalloc = NULL; in PHP_FUNCTION()
557 bzs.bzfree = NULL; in PHP_FUNCTION()