| /TwlSDK-5.1.0/build/buildtools/nitro/ |
| D | sdk_indent.pl | 21 foreach $filename (@ARGV) { 22 print STDERR "processing $filename\n"; 23 open INFILE, "$filename" or die "cannot open infile $filename\n"; 72 open OUTFILE2, ">$filename" or die "cannot open outfile $filename\n";
|
| /TwlSDK-5.1.0/build/buildtools/twl/ |
| D | sdk_indent.pl | 21 foreach $filename (@ARGV) { 22 print STDERR "processing $filename\n"; 23 open INFILE, "$filename" or die "cannot open infile $filename\n"; 72 open OUTFILE2, ">$filename" or die "cannot open outfile $filename\n";
|
| /TwlSDK-5.1.0/build/tools/bin2obj/ |
| D | section.c | 19 static s32 read_datasec(Object * obj, const char *filename); 40 const char *filename, BOOL writable, u32 align) in add_datasec() argument 50 if (0 > (n = read_datasec(obj, filename))) in add_datasec() 74 symbol_begin = create_symbol_string(filename, symbol_format_begin); in add_datasec() 75 symbol_end = create_symbol_string(filename, symbol_format_end); in add_datasec() 94 static s32 read_datasec(Object * obj, const char *filename) in read_datasec() argument 105 if (stat(filename, &st) || !S_ISREG(st.st_mode) || st.st_size < 0 in read_datasec() 106 || NULL == (fp = fopen(filename, "rb"))) in read_datasec() 108 fprintf(stderr, "Error: Cannot open file %s.\n", filename); in read_datasec() 123 fprintf(stderr, "Error: Cannot read file %s.\n", filename); in read_datasec()
|
| D | bin2obj.h | 61 char *create_symbol_string(const char *filename, const char *symbol_format); 76 BOOL output_object(const Object * obj, const char *filename); 80 const char *filename, BOOL writable, u32 align);
|
| D | output.c | 31 BOOL output_object(const Object * obj, const char *filename) in output_object() argument 41 if (NULL == (fp = fopen(filename, "wb"))) in output_object() 43 fprintf(stderr, "Error: Cannot open file %s.\n", filename); in output_object()
|
| /TwlSDK-5.1.0/build/tools/defval/ |
| D | set_defval.c | 139 BOOL add_dvalue_from_file(const char *filename) in add_dvalue_from_file() argument 146 if (filename[0] == '-' && filename[1] == '\0') in add_dvalue_from_file() 150 else if (NULL == (fp = fopen(filename, "r"))) in add_dvalue_from_file() 152 fprintf(stderr, "Cannot open file \"%s\".\n", filename); in add_dvalue_from_file()
|
| D | misc.c | 168 FILE *Fopen(const char *filename, const char *mode) in Fopen() argument 172 DebugPrintf("filename=[%s] mode=[%s]\n", filename, mode); in Fopen() 174 if ('-' == filename[0] && '\0' == filename[1]) in Fopen() 180 if (NULL == (fp = fopen(filename, mode))) in Fopen() 182 fprintf(stderr, "Error: cannot open %s\n", filename); in Fopen()
|
| D | defval.h | 43 BOOL add_dvalue_from_file(const char *filename);
|
| D | misc.h | 42 FILE *Fopen(const char *filename, const char *mode);
|
| /TwlSDK-5.1.0/build/tools/makelcf.TWL/ |
| D | makelcf.h | 158 BOOL PropertySetOverlayDefs(const char *filename); 159 BOOL PropertySetOverlayTable(const char *filename); 160 BOOL PropertySetLtdoverlayDefs(const char *filename); 161 BOOL PropertySetLtdoverlayTable(const char *filename); 170 int ParseSpecFile(const char *filename); 215 int ParseTlcfFile(const char *filename); 216 int CreateLcfFile(const char *filename);
|
| D | defval.c | 41 BOOL AddDefValFromFile(char *filename) in AddDefValFromFile() argument 48 if (filename[0] == '-' && filename[1] == '\0') in AddDefValFromFile() 52 else if (NULL == (fp = fopen(filename, "rb"))) in AddDefValFromFile() 54 fprintf(stderr, "Cannot open file \"%s\".\n", filename); in AddDefValFromFile()
|
| D | defval.h | 22 BOOL AddDefValFromFile(char *filename);
|
| /TwlSDK-5.1.0/build/tools/defval/test/ |
| D | goodresult1.txt | 5 FILENAME:r=d:/home/test/filename 7 FILENAME:t=filename.txt
|
| D | goodresult3.txt | 5 FILENAME:r=d:/home/test/filename 7 FILENAME:t=filename.txt
|
| D | Makefile | 29 $(DEFVAL) -DOUTPUT=$@ -DFILENAME=d:/home/test/filename.txt $< $@ 35 $(DEFVAL) -Mlocal.def -DOUTPUT=$@ -DFILENAME=d:/home/test/filename.txt $< $@
|
| /TwlSDK-5.1.0/build/tools/makelcf/ |
| D | makelcf.h | 262 BOOL PropertySetOverlayDefs(const char *filename); 263 BOOL PropertySetOverlayTable(const char *filename); 270 int ParseSpecFile(const char *filename); 310 int ParseTlcfFile(const char *filename); 311 int CreateLcfFile(const char *filename);
|
| D | defval.c | 78 BOOL AddDefValFromFile(char *filename) in AddDefValFromFile() argument 85 if (filename[0] == '-' && filename[1] == '\0') in AddDefValFromFile() 89 else if (NULL == (fp = fopen(filename, "rb"))) in AddDefValFromFile() 91 fprintf(stderr, "Cannot open file \"%s\".\n", filename); in AddDefValFromFile()
|
| D | defval.h | 44 BOOL AddDefValFromFile(char *filename);
|
| D | spec.l | 301 int ParseSpecFile( const char* filename ) 306 if ( NULL == ( fp = fopen( filename, "r" ) ) ) 308 fprintf( stderr, "makelcf: cannot open %s\n", filename );
|
| /TwlSDK-5.1.0/build/demos/snd/seq/src/ |
| D | main.c | 45 void FileLoad(void *buf, const char *filename); 127 void FileLoad(void *buf, const char *filename) in FileLoad() argument 133 (void)FS_OpenFileEx(&file, filename, FS_FILEMODE_R); in FileLoad()
|
| /TwlSDK-5.1.0/build/demos/gx/UnitTours/DEMOLib/src/ |
| D | DEMOWave.c | 77 int DEMOReadWave(char* dst, const char *filename) in DEMOReadWave() argument 88 if (!FS_OpenFileEx(&strm->file, filename, FS_FILEMODE_R)) in DEMOReadWave() 90 OS_Panic("Error: failed to open file %s\n", filename); in DEMOReadWave()
|
| /TwlSDK-5.1.0/build/demos.TWL/camera/simpleShoot-1/include/ |
| D | wave.h | 23 int InitWave(char* dst, const char *filename);
|
| /TwlSDK-5.1.0/build/demos/gx/UnitTours/DEMOLib/include/ |
| D | DEMOWave.h | 35 int DEMOReadWave(char* dst, const char *filename);
|
| /TwlSDK-5.1.0/build/buildsetup/ioreg/ |
| D | header_generator_ioreg.pl | 588 foreach $filename (@ARGV) { 592 open INPUTFILE, "$filename" or die "ERROR: Cannot open file \'$filename\'\n"; 612 my $output_filename = $filename; 624 my $master_filename = $filename;
|
| D | header_generator_ioreg.TWL.pl | 588 foreach $filename (@ARGV) { 592 open INPUTFILE, "$filename" or die "ERROR: Cannot open file \'$filename\'\n"; 612 my $output_filename = $filename; 624 my $master_filename = $filename;
|