Home
last modified time | relevance | path

Searched refs:NULL (Results 176 – 200 of 4090) sorted by relevance

12345678910>>...164

/PHP-7.0/ext/intl/msgformat/
H A Dmsgformat.c35 UChar* spattern = NULL; in msgfmt_ctor()
40 intl_error_reset( NULL ); in msgfmt_ctor()
47 intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR, in msgfmt_ctor()
61 spattern = NULL; in msgfmt_ctor()
133 zval* object = NULL; in PHP_FUNCTION()
134 MessageFormatter_object* mfo = NULL; in PHP_FUNCTION()
140 intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR, in PHP_FUNCTION()
160 zend_string* message = NULL; in PHP_FUNCTION()
161 zval* object = NULL; in PHP_FUNCTION()
162 MessageFormatter_object* mfo = NULL; in PHP_FUNCTION()
[all …]
/PHP-7.0/ext/intl/breakiterator/
H A Dbreakiterator_methods.cpp38 zend_throw_exception( NULL, in PHP_METHOD()
48 const char *locale_str = NULL; in _breakiter_factory()
52 intl_error_reset(NULL); in _breakiter_factory()
62 if (locale_str == NULL) { in _breakiter_factory()
67 intl_error_set_code(NULL, status); in _breakiter_factory()
71 intl_error_set_custom_msg(NULL, msg, 1); in _breakiter_factory()
117 intl_error_reset(NULL); in PHP_FUNCTION()
151 UText *ut = NULL; in PHP_FUNCTION()
412 if (bio == NULL) in PHP_FUNCTION()
420 zend_string* message = NULL; in PHP_FUNCTION()
[all …]
/PHP-7.0/ext/mbstring/libmbfl/mbfl/
H A Dmbfilter.c242 if (convd != NULL && p != NULL) { in mbfl_buffer_converter_strncat()
272 if (convd == NULL || string == NULL) { in mbfl_buffer_converter_feed2()
320 if (convd != NULL && result != NULL && convd->device.buffer != NULL) { in mbfl_buffer_converter_getbuffer()
334 if (convd == NULL || result == NULL) { in mbfl_buffer_converter_result()
345 if (convd == NULL || string == NULL || result == NULL) { in mbfl_buffer_converter_feed_result()
493 if (identd != NULL && string != NULL && string->val != NULL) { in mbfl_encoding_detector_feed()
580 if (encoding == NULL || string == NULL || result == NULL) { in mbfl_convert_encoding()
991 if (haystack == NULL || haystack->val == NULL || needle == NULL || needle->val == NULL) { in mbfl_strpos()
1313 if (encoding == NULL || string == NULL || result == NULL) { in mbfl_substr()
1469 if (string == NULL || string->val == NULL || result == NULL) { in mbfl_strcut()
[all …]
/PHP-7.0/ext/standard/tests/general_functions/
H A Dcall_user_func_array_variation_003.phpt69 'uppercase NULL' => NULL,
113 NULL
117 NULL
121 NULL
125 NULL
129 NULL
133 NULL
137 NULL
141 NULL
145 NULL
[all …]
/PHP-7.0/main/
H A Dphp_content_types.c31 …{ MULTIPART_CONTENT_TYPE, sizeof(MULTIPART_CONTENT_TYPE)-1, NULL, rf…
32 { NULL, 0, NULL, NULL }
41 if (NULL == SG(request_info).post_entry) { in SAPI_POST_READER_FUNC()
55 sapi_register_input_filter(php_default_input_filter, NULL); in php_startup_sapi_content_types()
/PHP-7.0/ext/standard/
H A Dfsock.c37 zval *zerrno = NULL, *zerrstr = NULL; in php_fsockopen_stream()
45 char *hashkey = NULL; in php_fsockopen_stream()
46 php_stream *stream = NULL; in php_fsockopen_stream()
48 char *hostname = NULL; in php_fsockopen_stream()
50 zend_string *errstr = NULL; in php_fsockopen_stream()
89 STREAM_XPORT_CLIENT | STREAM_XPORT_CONNECT, hashkey, &tv, NULL, &errstr, &err); in php_fsockopen_stream()
94 if (stream == NULL) { in php_fsockopen_stream()
95 …php_error_docref(NULL, E_WARNING, "unable to connect to %s:" ZEND_LONG_FMT " (%s)", host, port, er… in php_fsockopen_stream()
102 if (stream == NULL) { in php_fsockopen_stream()
H A Dproc_open.c105 zend_hash_init(env_hash, cnt, NULL, NULL, 0); in _php_array_to_envp()
385 return NULL; in dup_handle()
424 zval *descitem = NULL; in PHP_FUNCTION()
443 char* orig_cwd = NULL; in PHP_FUNCTION()
471 if (item != NULL) { in PHP_FUNCTION()
478 if (item != NULL) { in PHP_FUNCTION()
485 if (item != NULL) { in PHP_FUNCTION()
679 if (cwd == NULL) { in PHP_FUNCTION()
770 construct_argc_argv(command_dup, NULL, &command_num_args, NULL); in PHP_FUNCTION()
782 …child = procve(child_argv[0], PROC_DETACHED|PROC_INHERIT_CWD, NULL, &channel, NULL, NULL, 0, NULL,… in PHP_FUNCTION()
[all …]
/PHP-7.0/ext/mysqlnd/
H A Dmysqlnd_plugin.c31 static MYSQLND_STATS * mysqlnd_plugin_example_stats = NULL;
56 NULL, /* will be filled later */
63 NULL, /* methods */
74 plugin->plugin_header.plugin_stats.values = NULL; in mysqlnd_example_plugin_end()
101 …zend_hash_init(&mysqlnd_registered_plugins, 4 /* initial hash size */, NULL /* hash_func */, NULL in mysqlnd_plugin_subsystem_init()
132 return mysqlnd_plugin_register_ex(NULL); in mysqlnd_plugin_register()
144 …php_error_docref(NULL, E_WARNING, "Plugin API version mismatch while loading plugin %s. Expected %… in mysqlnd_plugin_register_ex()
158 if ((plugin = zend_hash_str_find_ptr(&mysqlnd_registered_plugins, name, strlen(name))) != NULL) { in mysqlnd_plugin_find()
161 return NULL; in mysqlnd_plugin_find()
175 …php_error_docref(NULL, E_WARNING, "mysqlnd_plugin_apply_with_argument must not remove table entrie… in mysqlnd_plugin_apply_with_argument()
/PHP-7.0/ext/xml/
H A Dcompat.c94 xmlChar **attrs = NULL; in _start_element_handler_ns()
188 attrs[z] = NULL; in _start_element_handler_ns()
373 if (ret == NULL) in _get_entity()
422 NULL, /* reference */
427 NULL, /* warning */
428 NULL, /* error */
434 NULL,
437 NULL
443 return XML_ParserCreate_MM(encoding, NULL, NULL); in XML_ParserCreate()
468 return NULL; in XML_ParserCreate_MM()
[all …]
/PHP-7.0/sapi/fpm/fpm/
H A Dfpm_env.c19 static char **fpm_env_argv = NULL;
90 if(getenv(name) != NULL) { in unsetenv()
100 environ[ct-1] = NULL; in unsetenv()
116 return NULL; in nvmatch()
131 fpm_env_argv[1] = NULL; in fpm_env_setproctitle()
203 char *first = NULL; in fpm_env_init_main()
204 char *last = NULL; in fpm_env_init_main()
228 if (first == NULL) { in fpm_env_init_main()
237 if (first == NULL) { in fpm_env_init_main()
245 if (first == NULL || last == NULL) { in fpm_env_init_main()
[all …]
/PHP-7.0/ext/ftp/
H A Dphp_ftp.c286 NULL,
287 NULL,
291 NULL,
292 NULL,
293 NULL,
948 if (outstream == NULL) { in PHP_FUNCTION()
1012 if (outstream == NULL) { in PHP_FUNCTION()
1023 ftp->stream = NULL; in PHP_FUNCTION()
1031 ftp->stream = NULL; in PHP_FUNCTION()
1067 ftp->stream = NULL; in PHP_FUNCTION()
[all …]
/PHP-7.0/ext/zip/lib/
H A Dzip_set_name.c63 …_zip_string_new((const zip_uint8_t *)name, (zip_uint16_t)strlen(name), flags, &za->error)) == NULL) in _zip_set_name()
69 str = NULL; in _zip_set_name()
72 if ((i=_zip_name_locate(za, name, 0, NULL)) >= 0 && (zip_uint64_t)i != idx) { in _zip_set_name()
91 if (!same_as_orig && e->changes == NULL) { in _zip_set_name()
92 if ((e->changes=_zip_dirent_clone(e->orig)) == NULL) { in _zip_set_name()
99 …new_name = _zip_string_get(same_as_orig ? e->orig->filename : str, NULL, 0, &za->error)) == NULL) { in _zip_set_name()
111 old_str = NULL; in _zip_set_name()
115 if ((old_name = _zip_string_get(old_str, NULL, 0, &za->error)) == NULL) { in _zip_set_name()
121 old_name = NULL; in _zip_set_name()
129 _zip_hash_delete(za->names, old_name, NULL); in _zip_set_name()
[all …]
H A Dzip_source_file.c43 if (za == NULL) in zip_source_file()
44 return NULL; in zip_source_file()
53 if (fname == NULL || length < -1) { in zip_source_file_create()
55 return NULL; in zip_source_file_create()
58 return _zip_source_file_or_p(fname, NULL, start, length, NULL, error); in zip_source_file_create()
/PHP-7.0/Zend/tests/
H A Dbug71841.phpt18 NULL
19 NULL
20 NULL
21 NULL
22 NULL
23 NULL
/PHP-7.0/ext/gd/tests/
H A Dimagecolorclosesthwb.phpt14 var_dump(imagecolorclosesthwb(NULL));
15 var_dump(imagecolorclosesthwb(NULL, NULL, NULL, NULL));
24 NULL
27 NULL
30 NULL
/PHP-7.0/ext/intl/calendar/
H A Dgregoriancalendar_methods.cpp44 zval *tz_object = NULL; in _php_intlgregcal_constructor_body()
47 char *locale = NULL; in _php_intlgregcal_constructor_body()
53 intl_error_reset(NULL); in _php_intlgregcal_constructor_body()
58 intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR, in _php_intlgregcal_constructor_body()
70 intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR, in _php_intlgregcal_constructor_body()
84 intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR, in _php_intlgregcal_constructor_body()
96 intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR, in _php_intlgregcal_constructor_body()
106 GregorianCalendar *gcal = NULL; in _php_intlgregcal_constructor_body()
112 if (tz == NULL) { in _php_intlgregcal_constructor_body()
210 intl_error_reset(NULL); in PHP_FUNCTION()
[all …]
/PHP-7.0/ext/com_dotnet/
H A Dcom_olechar.c35 OLECHAR *olestring = NULL; in php_com_string_to_olestring()
41 string_len = MultiByteToWideChar(codepage, flags, string, -1, NULL, 0); in php_com_string_to_olestring()
65 php_error_docref(NULL, E_WARNING, in php_com_string_to_olestring()
80 length = WideCharToMultiByte(codepage, 0, olestring, -1, NULL, 0, NULL, NULL); in php_com_olestring_to_string()
84 length = WideCharToMultiByte(codepage, 0, olestring, -1, string, length, NULL, NULL); in php_com_olestring_to_string()
96 php_error_docref(NULL, E_WARNING, in php_com_olestring_to_string()
/PHP-7.0/ext/intl/collator/
H A Dcollator_compare.c34 char* str1 = NULL; in PHP_FUNCTION()
35 char* str2 = NULL; in PHP_FUNCTION()
39 UChar* ustr1 = NULL; in PHP_FUNCTION()
40 UChar* ustr2 = NULL; in PHP_FUNCTION()
52 intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR, in PHP_FUNCTION()
62 intl_error_set_code( NULL, COLLATOR_ERROR_CODE( co ) ); in PHP_FUNCTION()
65 php_error_docref(NULL, E_RECOVERABLE_ERROR, "Object not initialized"); in PHP_FUNCTION()
80 intl_error_set_code( NULL, COLLATOR_ERROR_CODE( co ) ); in PHP_FUNCTION()
96 intl_error_set_code( NULL, COLLATOR_ERROR_CODE( co ) ); in PHP_FUNCTION()
/PHP-7.0/ext/pgsql/tests/
H A Dbug47199.phpt2 Bug #47199 (pg_delete fails on NULL)
15 pg_query("CREATE TABLE $tbl_name (null_field INT, not_null_field INT NOT NULL)");
22 $query = pg_delete($dbh, $tbl_name, array('null_field' => NULL,'not_null_field' => 2), PGSQL_DML_ST…
26 $query = pg_update($dbh, $tbl_name, array('null_field' => NULL, 'not_null_field' => 0), array('not_…
43 NULL
50 NULL
55 DELETE FROM "test_47199" WHERE "null_field" IS NULL AND "not_null_field"=2;
56 UPDATE "test_47199" SET "null_field"=NULL,"not_null_field"=0 WHERE "not_null_field"=1 AND "null_fie…
61 NULL
/PHP-7.0/ext/mysqli/
H A Dmysqli_warning.c75 MYSQLI_WARNING *w, *first = NULL, *prev = NULL; in php_get_warnings()
80 return NULL; in php_get_warnings()
122 MYSQLI_WARNING *w, *first = NULL, *prev = NULL; in php_get_warnings()
127 return NULL; in php_get_warnings()
209 return NULL; in mysqli_warning_message()
225 return NULL; in mysqli_warning_sqlstate()
241 return NULL; in mysqli_warning_errno()
278 php_error_docref(NULL, E_WARNING, "No warnings found");
317 PHP_ME(mysqli_warning, next, NULL, ZEND_ACC_PUBLIC)
318 {NULL, NULL, NULL}
[all …]
/PHP-7.0/ext/standard/tests/array/
H A Darray_diff_assoc_variation1.phpt108 NULL
113 NULL
118 NULL
123 NULL
128 NULL
133 NULL
138 NULL
143 NULL
148 NULL
153 NULL
[all …]
H A Darray_diff_assoc_variation2.phpt109 NULL
114 NULL
119 NULL
124 NULL
129 NULL
134 NULL
139 NULL
144 NULL
149 NULL
154 NULL
[all …]
H A Darray_diff_variation1.phpt107 NULL
111 NULL
115 NULL
119 NULL
123 NULL
127 NULL
131 NULL
135 NULL
139 NULL
143 NULL
[all …]
H A Darray_diff_variation2.phpt106 NULL
110 NULL
114 NULL
118 NULL
122 NULL
126 NULL
130 NULL
134 NULL
138 NULL
142 NULL
[all …]
/PHP-7.0/ext/standard/tests/class_object/
H A Dget_object_vars_variation_003.phpt84 NULL
89 NULL
94 NULL
99 NULL
104 NULL
109 NULL
114 NULL
119 NULL
124 NULL
129 NULL
[all …]

Completed in 70 milliseconds

12345678910>>...164