Home
last modified time | relevance | path

Searched refs:silent (Results 1 – 25 of 29) sorted by relevance

12

/PHP-7.4/ext/fileinfo/libmagic/
H A Dfsmagic.c94 int silent = ms->flags & (MAGIC_APPLE|MAGIC_EXTENSION); in file_fsmagic() local
114 if (!mime && !silent) { in file_fsmagic()
177 } else if (silent) { in file_fsmagic()
187 } else if (silent) { in file_fsmagic()
208 } else if (silent) { in file_fsmagic()
231 } else if (silent) { in file_fsmagic()
245 if (!silent && !mime && did && ret == 0) { in file_fsmagic()
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_auth.h53 const zend_bool silent,
97 const zend_bool silent,
H A Dmysqlnd.h102 …ge_user(conn, user, passwd, db, silent) ((conn)->data)->m->change_user((conn)->data, (user), (… argument
103 …_ex(conn, user, passwd, db, silent, passwd_len) ((conn)->data)->m->change_user((conn)->data, (user… argument
H A Dmysqlnd_auth.c50 const zend_bool silent, in mysqlnd_run_authentication() argument
138 ret = mysqlnd_auth_change_user(conn, user, strlen(user), passwd, passwd_len, db, db_len, silent, in mysqlnd_run_authentication()
378 const zend_bool silent, in mysqlnd_auth_change_user() argument
425 auth_packet.silent = silent; in mysqlnd_auth_change_user()
H A Dmysqlnd_structs.h329 …hange_user)(MYSQLND_CONN_DATA * const conn, const MYSQLND_CSTRING payload, const zend_bool silent);
463 …conn, const char * user, const char * passwd, const char * db, zend_bool silent, size_t passwd_len…
498 …and, const zend_uchar * const arg, const size_t arg_len, const zend_bool silent, const zend_bool i…
499 … * const conn, const enum mysqlnd_packet_type ok_packet, const zend_bool silent, const enum php_my…
1039 const zend_bool silent,
1063 const zend_bool silent,
H A Dmysqlnd_wireprotocol.h97 zend_bool silent; member
H A Dmysqlnd_wireprotocol.c620 const unsigned int silent = packet->silent; in php_mysqlnd_auth_write() local
622 ret = conn->command->change_user(conn, payload, silent); in php_mysqlnd_auth_write()
2533 const zend_bool silent, in MYSQLND_METHOD()
2546 DBG_INF_FMT("command=%s silent=%u", mysqlnd_command_to_text[command], silent); in MYSQLND_METHOD()
2578 if (!silent && error_info->error_no != CR_SERVER_GONE_ERROR) { in MYSQLND_METHOD()
2693 const zend_bool silent, in MYSQLND_METHOD()
2705 DBG_INF_FMT("silent=%u packet=%u command=%s", silent, ok_packet, mysqlnd_command_to_text[command]); in MYSQLND_METHOD()
2719 if (!silent && error_info->error_no == CR_MALFORMED_PACKET) { in MYSQLND_METHOD()
H A Dmysqlnd_commands.c343 …change_user)(MYSQLND_CONN_DATA * const conn, const MYSQLND_CSTRING payload, const zend_bool silent) in MYSQLND_METHOD()
350 …d(conn->payload_decoder_factory, COM_CHANGE_USER, (const zend_uchar*) payload.s, payload.l, silent, in MYSQLND_METHOD()
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_utils.h91 …*input, size_t len, HashTable *parent, size_t i, phpdbg_parse_var_func callback, zend_bool silent);
92 …e_var_with_arg_func callback, phpdbg_parse_var_with_arg_func step_cb, zend_bool silent, void *arg);
H A Dphpdbg_utils.c429 …input, size_t len, HashTable *parent, size_t i, phpdbg_parse_var_func callback, zend_bool silent) { in phpdbg_parse_variable() argument
430 …nt, i, (phpdbg_parse_var_with_arg_func) phpdbg_parse_variable_arg_wrapper, NULL, silent, callback); in phpdbg_parse_variable()
433 …_var_with_arg_func callback, phpdbg_parse_var_with_arg_func step_cb, zend_bool silent, void *arg) { in phpdbg_parse_variable_with_arg() argument
504 phpdbg_parse_variable_with_arg(input, len, Z_OBJPROP_P(zv), i, callback, step_cb, silent, arg); in phpdbg_parse_variable_with_arg()
513 phpdbg_parse_variable_with_arg(input, len, Z_ARRVAL_P(zv), i, callback, step_cb, silent, arg); in phpdbg_parse_variable_with_arg()
533 if (!silent) { in phpdbg_parse_variable_with_arg()
/PHP-7.4/Zend/tests/
H A Dinclude_stat_is_quiet.phpt2 Stats executed during include path resolution should be silent
/PHP-7.4/ext/com_dotnet/
H A Dphp_com_dotnet_internal.h103 WORD flags, DISPPARAMS *disp_params, VARIANT *v, int silent, int allow_noarg);
107 WORD flags, VARIANT *v, int nargs, zval *args, int silent, int allow_noarg);
H A Dcom_com.c352 WORD flags, DISPPARAMS *disp_params, VARIANT *v, int silent, int allow_noarg) in php_com_invoke_helper() argument
361 if (silent == 0 && FAILED(hr)) { in php_com_invoke_helper()
608 WORD flags, VARIANT *v, int nargs, zval *args, int silent, int allow_noarg) in php_com_do_invoke_by_id() argument
637 hr = php_com_invoke_helper(obj, dispid, flags, &disp_params, v, silent, allow_noarg); in php_com_do_invoke_by_id()
/PHP-7.4/Zend/
H A Dzend_object_handlers.c381 … zend_get_property_offset(zend_class_entry *ce, zend_string *member, int silent, void **cache_slot… in zend_get_property_offset() argument
397 if (!silent) { in zend_get_property_offset()
442 if (!silent) { in zend_get_property_offset()
458 if (!silent) { in zend_get_property_offset()
487 …perty_info *zend_get_property_info(zend_class_entry *ce, zend_string *member, int silent) /* {{{ */ in zend_get_property_info() argument
497 if (!silent) { in zend_get_property_info()
533 if (!silent) { in zend_get_property_info()
549 if (!silent) { in zend_get_property_info()
H A Dzend_operators.c157 static void ZEND_FASTCALL _convert_scalar_to_number(zval *op, zend_bool silent, zend_bool check) /*… in _convert_scalar_to_number() argument
169 …umeric_string(ZSTR_VAL(str), ZSTR_LEN(str), &Z_LVAL_P(op), &Z_DVAL_P(op), silent ? 1 : -1)) == 0) { in _convert_scalar_to_number()
171 if (!silent) { in _convert_scalar_to_number()
220 …inline zval* _zendi_convert_scalar_to_number_ex(zval *op, zval *holder, zend_bool silent) /* {{{ */ in _zendi_convert_scalar_to_number_ex() argument
233 if (!silent) { in _zendi_convert_scalar_to_number_ex()
270 #define zendi_convert_scalar_to_number(op, holder, result, silent) \ argument
272 (((op) == result) ? (_convert_scalar_to_number((op), silent, 1), (op)) : \
273 (silent ? _zendi_convert_scalar_to_number((op), holder) : \
760 static zend_always_inline zend_long ZEND_FASTCALL _zval_get_long_func_ex(zval *op, zend_bool silent in _zval_get_long_func_ex() argument
781 …if (0 == (type = is_numeric_string(Z_STRVAL_P(op), Z_STRLEN_P(op), &lval, &dval, silent ? 1 : -1))… in _zval_get_long_func_ex()
[all …]
H A Dzend_alloc.h225 ZEND_API void shutdown_memory_manager(int silent, int full_shutdown);
249 ZEND_API void zend_mm_shutdown(zend_mm_heap *heap, int full_shutdown, int silent);
H A Dzend_object_handlers.h207 …_zend_property_info *zend_get_property_info(zend_class_entry *ce, zend_string *member, int silent);
H A Dzend_API.c4323 …y_ex(zend_class_entry *scope, zval *object, zend_string *name, zend_bool silent, zval *rv) /* {{{ … in zend_read_property_ex() argument
4331 value = Z_OBJ_HT_P(object)->read_property(object, &property, silent?BP_VAR_IS:BP_VAR_R, NULL, rv); in zend_read_property_ex()
4338 …ry *scope, zval *object, const char *name, size_t name_length, zend_bool silent, zval *rv) /* {{{ … in zend_read_property() argument
4344 value = zend_read_property_ex(scope, object, str, silent, rv); in zend_read_property()
4350 …end_read_static_property_ex(zend_class_entry *scope, zend_string *name, zend_bool silent) /* {{{ */ in zend_read_static_property_ex() argument
4356 property = zend_std_get_static_property(scope, name, silent ? BP_VAR_IS : BP_VAR_R); in zend_read_static_property_ex()
4363 …property(zend_class_entry *scope, const char *name, size_t name_length, zend_bool silent) /* {{{ */ in zend_read_static_property() argument
4366 zval *property = zend_read_static_property_ex(scope, key, silent); in zend_read_static_property()
H A Dzend_alloc.c2206 void zend_mm_shutdown(zend_mm_heap *heap, int full, int silent) argument
2214 if (silent) {
2238 if (!silent) {
2699 ZEND_API void shutdown_memory_manager(int silent, int full_shutdown) argument
2701 zend_mm_shutdown(AG(mm_heap), full_shutdown, silent);
H A Dzend_API.h357 …_property_ex(zend_class_entry *scope, zval *object, zend_string *name, zend_bool silent, zval *rv);
358 …lass_entry *scope, zval *object, const char *name, size_t name_length, zend_bool silent, zval *rv);
360 …I zval *zend_read_static_property_ex(zend_class_entry *scope, zend_string *name, zend_bool silent);
361 …d_static_property(zend_class_entry *scope, const char *name, size_t name_length, zend_bool silent);
/PHP-7.4/ext/spl/
H A Dspl_directory.c285 static int spl_filesystem_file_open(spl_filesystem_object *intern, int use_include_path, int silent in spl_filesystem_file_open() argument
2017 static int spl_filesystem_file_read(spl_filesystem_object *intern, int silent) /* {{{ */ in spl_filesystem_file_read() argument
2026 if (!silent) { in spl_filesystem_file_read()
2156 …_filesystem_file_read_line_ex(zval * this_ptr, spl_filesystem_object *intern, int silent) /* {{{ */ in spl_filesystem_file_read_line_ex() argument
2163 if (!silent) { in spl_filesystem_file_read_line_ex()
2193 return spl_filesystem_file_read(intern, silent); in spl_filesystem_file_read_line_ex()
2229 static int spl_filesystem_file_read_line(zval * this_ptr, spl_filesystem_object *intern, int silent in spl_filesystem_file_read_line() argument
2231 int ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent); in spl_filesystem_file_read_line()
2235 ret = spl_filesystem_file_read_line_ex(this_ptr, intern, silent); in spl_filesystem_file_read_line()
/PHP-7.4/build/
H A DMakefile.global20 -@$(LIBTOOL) --silent --mode=install cp $@ $(phptempdir)/$@ >/dev/null 2>&1
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_change_user_old.phpt91 /* silent protocol change if no db which requires workaround in mysqlnd/libmysql
H A Dmysqli_change_user.phpt93 /* silent protocol change if no db which requires workaround in mysqlnd/libmysql
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch1983 int silent = ms->flags & (MAGIC_APPLE|MAGIC_EXTENSION);
2045 - } else if (silent) {
2063 - } else if (silent) {
2109 - } else if (silent) {
2152 - } else if (silent) {
2191 - } else if (silent) {
2223 - } else if (silent) {

Completed in 137 milliseconds

12