Searched refs:new_name (Results 1 – 6 of 6) sorted by relevance
/AliOS-Things-master/components/freetype/src/tools/docmaker/ |
A D | docbeauty.py | 93 new_name = filename + ".new" 97 file = open( new_name, "wt" )
|
/AliOS-Things-master/components/freetype/src/base/ |
A D | ftrfork.c | 800 char* new_name = NULL; in raccess_make_file_name() local 810 if ( FT_ALLOC( new_name, new_length + 1 ) ) in raccess_make_file_name() 816 ft_strncpy( new_name, original_name, tmp - original_name + 1 ); in raccess_make_file_name() 817 new_name[tmp - original_name + 1] = '\0'; in raccess_make_file_name() 823 new_name[0] = '\0'; in raccess_make_file_name() 826 ft_strcat( new_name, insertion ); in raccess_make_file_name() 827 ft_strcat( new_name, slash ); in raccess_make_file_name() 829 return new_name; in raccess_make_file_name()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/apps/httpd/makefsdata/ |
A D | makefsdata.c | 656 char *new_name = (char*)malloc(len + 2); in fix_filename_for_c() local 664 strcpy(new_name, qualifiedName); in fix_filename_for_c() 666 if (!is_valid_char_for_c_var(new_name[i])) { in fix_filename_for_c() 667 new_name[i] = '_'; in fix_filename_for_c() 673 if (!strcmp(f->filename_c, new_name)) { in fix_filename_for_c() 677 sprintf(&new_name[len], "%d", cnt); in fix_filename_for_c() 686 strcpy(qualifiedName, new_name); in fix_filename_for_c() 687 free(new_name); in fix_filename_for_c()
|
/AliOS-Things-master/components/SDL2/src/joystick/bsd/ |
A D | SDL_sysjoystick.c | 420 char *new_name = NULL; local 426 asprintf(&new_name, "%s @ %s", str, path); 427 if (new_name != NULL) { 429 joydevnames[numjoysticks] = new_name;
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/ |
A D | pngwutil.c | 1122 png_byte new_name[81]; /* 1 byte for the compression byte */ in png_write_iCCP() local 1150 name_len = png_check_keyword(png_ptr, name, new_name); in png_write_iCCP() 1155 new_name[++name_len] = PNG_COMPRESSION_TYPE_BASE; in png_write_iCCP() 1168 png_write_chunk_data(png_ptr, new_name, name_len); in png_write_iCCP() 1182 png_byte new_name[80]; in png_write_sPLT() local 1193 name_len = png_check_keyword(png_ptr, spalette->name, new_name); in png_write_sPLT() 1202 png_write_chunk_data(png_ptr, (png_bytep)new_name, (size_t)(name_len + 1)); in png_write_sPLT()
|
A D | CHANGES | 2265 Fixed potential memory leak of "new_name" in png_write_iCCP() (Ralph Giles)
|
Completed in 20 milliseconds