Searched refs:new_name (Results 1 – 9 of 9) sorted by relevance
/php-src/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_attr_driver_name.phpt | 23 $new_name = $db->getAttribute(PDO::ATTR_DRIVER_NAME); 24 if ($name != $new_name) 25 printf("[002] Did we change it from '%s' to '%s'?\n", $name, $new_name);
|
/php-src/ext/zip/ |
H A D | php_zip.stub.php | 686 public function renameIndex(int $index, string $new_name): bool {} 689 public function renameName(string $name, string $new_name): bool {}
|
H A D | php_zip.c | 2642 char *new_name; local 2646 if (zend_parse_parameters(ZEND_NUM_ARGS(), "ls", &index, &new_name, &new_name_len) == FAILURE) { 2661 if (zip_file_rename(intern, index, (const char *)new_name, 0) != 0) { 2675 char *name, *new_name; local 2678 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "ss", &name, &name_len, &new_name, &new_name_len) == FA… 2691 if (zip_file_rename(intern, sb.index, (const char *)new_name, 0)) {
|
H A D | php_zip_arginfo.h | 105 ZEND_ARG_TYPE_INFO(0, new_name, IS_STRING, 0) 110 ZEND_ARG_TYPE_INFO(0, new_name, IS_STRING, 0)
|
/php-src/ext/standard/ |
H A D | file.c | 1236 char *old_name, *new_name; in PHP_FUNCTION() local 1244 Z_PARAM_PATH(new_name, new_name_len) in PHP_FUNCTION() 1261 if (wrapper != php_stream_locate_url_wrapper(new_name, NULL, 0)) { in PHP_FUNCTION() 1268 RETURN_BOOL(wrapper->wops->rename(wrapper, old_name, new_name, 0, context)); in PHP_FUNCTION()
|
/php-src/Zend/ |
H A D | zend_compile.c | 9335 zend_string *new_name, *lookup_name; in zend_compile_use() local 9338 new_name = zend_string_copy(zend_ast_get_str(new_name_ast)); in zend_compile_use() 9344 new_name = zend_string_init(unqualified_name, unqualified_name_len, 0); in zend_compile_use() 9346 new_name = zend_string_copy(old_name); in zend_compile_use() 9350 "has no effect", ZSTR_VAL(new_name)); in zend_compile_use() 9356 lookup_name = zend_string_copy(new_name); in zend_compile_use() 9358 lookup_name = zend_string_tolower(new_name); in zend_compile_use() 9363 "is a special class name", ZSTR_VAL(old_name), ZSTR_VAL(new_name), ZSTR_VAL(new_name)); in zend_compile_use() 9373 zend_check_already_in_use(type, old_name, new_name, ns_name); in zend_compile_use() 9378 zend_check_already_in_use(type, old_name, new_name, lookup_name); in zend_compile_use() [all …]
|
H A D | zend_API.c | 447 ZEND_API ZEND_COLD void zend_class_redeclaration_error_ex(int type, zend_string *new_name, zend_cla… in zend_class_redeclaration_error_ex() argument 452 ZSTR_VAL(new_name)); in zend_class_redeclaration_error_ex() 456 ZSTR_VAL(new_name), in zend_class_redeclaration_error_ex()
|
H A D | zend_API.h | 1570 ZEND_API ZEND_COLD void zend_class_redeclaration_error_ex(int type, zend_string *new_name, zend_cla…
|
/php-src/ext/opcache/jit/ |
H A D | zend_jit_ir.c | 411 char *new_name; in zend_jit_set_veneer() local 413 zend_spprintf(&new_name, 0, "%s@veneer", name); in zend_jit_set_veneer() 414 ir_disasm_add_symbol(new_name, (uint64_t)(uintptr_t)veneer, 4); in zend_jit_set_veneer() 415 efree(new_name); in zend_jit_set_veneer()
|
Completed in 217 milliseconds