Home
last modified time | relevance | path

Searched refs:alias (Results 176 – 182 of 182) sorted by path

12345678

/php-src/ext/zlib/tests/
H A Dgzgets_basic.phpt8 // note that gzgets is an alias to fgets. parameter checking tests will be
H A Dgzpassthru_basic.phpt8 // note that gzpassthru is an alias to fpassthru. parameter checking tests will be
H A Dgzread_basic.phpt7 // note that gzread is an alias to fread. parameter checking tests will be
/php-src/main/
H A Doutput.c464 php_output_handler_alias_ctor_t alias = NULL; in php_output_handler_create_user() local
472 …if (Z_STRLEN_P(output_handler) && (alias = php_output_handler_alias(Z_STRVAL_P(output_handler), Z_… in php_output_handler_create_user()
473 handler = alias(Z_STRVAL_P(output_handler), Z_STRLEN_P(output_handler), chunk_size, flags); in php_output_handler_create_user()
/php-src/sapi/phpdbg/
H A Dphpdbg_cmd.c580 if (command->alias && (name->len == 1)) { in phpdbg_stack_resolve()
581 if (command->alias == (*name->str)) { in phpdbg_stack_resolve()
590 if ((name->len != command->name_len && command->alias) || name->len == command->name_len) { in phpdbg_stack_resolve()
H A Dphpdbg_cmd.h94 char alias; /* Alias */ member
158 #define PHPDBG_COMMAND_D_EXP(name, tip, alias, handler, children, args, parent, flags) \ argument
159 {PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##handler, children, args, parent, flags}
161 #define PHPDBG_COMMAND_D_EX(name, tip, alias, handler, children, args, flags) \ argument
162 {PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##handler, children, args, NULL, flags}
164 #define PHPDBG_COMMAND_D(name, tip, alias, children, args, flags) \ argument
165 {PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##name, children, args, NULL, flags}
H A Dphpdbg_help.c28 #define PHPDBG_COMMAND_HELP_D(name, tip, alias, action) \ argument
181 if (c->alias == key[0]) { in get_command()
284 if (c->alias && c->alias != 'h') { in PHPDBG_HELP()
285 phpdbg_writeln(" %c %-20s %s", c->alias, c->name, c->tip); in PHPDBG_HELP()
288 for(c_sub = c->subs; c_sub->alias; c_sub++) { in PHPDBG_HELP()
289 if (c_sub->alias) { in PHPDBG_HELP()
291 c->alias, c_sub->alias, c->name, len, c_sub->name, c_sub->tip); in PHPDBG_HELP()
300 phpdbg_writeln(" %c %-20s %s\n", c->alias, c->name, c->tip); in PHPDBG_HELP()
303 for(c_sub = c->subs; c_sub->alias; c_sub++) { in PHPDBG_HELP()
304 if (c_sub->alias) { in PHPDBG_HELP()
[all …]

Completed in 21 milliseconds

12345678