| /utopia/UTPA2-700.0.x/projects/build/scripts/ |
| H A D | kernel-doc | 377 my $file = shift; 398 print STDERR "Error(${file}:$.): duplicate section name '$name'\n"; 410 my $file = shift; 422 dump_section($file, $name, $contents); 1446 my ($prototype, $file) = @_; 1457 my $file = shift; 1480 create_parameterlist($members, ';', $file); 1481 check_sections($file, $declaration_name, "struct", $sectcheck, $struct_actual, $nested); 1497 print STDERR "Error(${file}:$.): Cannot parse struct or union!\n"; 1504 my $file = shift; [all …]
|
| H A D | get_maintainer.pl | 389 foreach my $file (@ARGV) { 390 if ($file ne "&STDIN") { 392 if ((-d $file)) { 393 $file =~ s@([^/])$@$1/@; 394 } elsif (!(-f $file)) { 395 die "$P: file '${file}' not found\n"; 399 push(@files, $file); 400 if ($file ne "MAINTAINERS" && -f $file && ($keywords || $file_emails)) { 401 open(my $f, '<', $file) 402 or die "$P: Can't open $file: $!\n"; [all …]
|
| H A D | Makefile.headersinst | 13 kbuild-file := $(srctree)/$(obj)/Kbuild 14 include $(kbuild-file) 27 install-file := $(install)/.install 28 check-file := $(install)/.check 46 unwanted-file := $(addprefix $(install)/, $(unwanted)) 51 file$(if $(word 2, $(all-files)),s)) 61 cmd_remove = rm -f $(unwanted-file) 76 __headersinst: $(subdirs) $(install-file) 79 targets += $(install-file) 80 $(install-file): scripts/headers_install.pl $(input-files) FORCE [all …]
|
| H A D | Kbuild.include | 15 # The temporary file to save gcc -MD generated dependencies must not 35 # filechk is used to check if the content of a generated file is updated. 42 # The rule defined shall write to stdout the content of the new file. 43 # The existing file will be compared with the new one. 44 # - If no file exist it is created 45 # - If the content differ the new file is used 48 # to specify a valid file as first prerequisite (often the kbuild file) 82 # Exit code chooses option. "$$TMP" is can be used as temporary file and 205 # >$< substitution to preserve $ when reloading .cmd file 221 # Execute the command and also postprocess generated .d dependencies file. [all …]
|
| H A D | checkpatch.pl | 24 my $file = 0; 73 'f|file!' => \$file, 271 $chk_signoff = 0 if ($file); 299 if ($file) { 1125 my $file = $absolute; 1130 while ($file =~ s@^[^/]*/@@) { 1131 if (-f "$root/$file") { 1142 substr($prefix, -length($file)) = ''; 1325 $prefix = "$filename:$realline: " if ($emacs && $file); 1326 $prefix = "$filename:$linenr: " if ($emacs && !$file); [all …]
|
| H A D | checkstack.pl | 113 my ($func, $file, $lastslash); 119 elsif ($line =~ m/(.*):\s*file format/) { 120 $file = $1; 121 $file =~ s/\.ko//; 122 $lastslash = rindex($file, "/"); 124 $file = substr($file, $lastslash + 1); 143 my $intro = "$addr $func [$file]:"; 160 my $intro = "$addr $func [$file]:";
|
| H A D | checkversion.pl | 14 foreach my $file (@ARGV) { 15 next if $file =~ "include/linux/version\.h"; 17 open( my $f, '<', $file ) 18 or die "Can't open $file: $!\n"; 52 print "$file: $.: need linux/version.h\n"; 57 print "$file: $iLinuxVersion linux/version.h not needed.\n"; 63 print "$file: version use is OK ($iLinuxVersion)\n"; 66 print "$file: version use is OK (none)\n";
|
| H A D | checkincludes.pl | 40 foreach my $file (@ARGV) { 41 open(my $f, '<', $file) 42 or die "Cannot open $file: $!.\n"; 59 print "$file: $filename is included more than once.\n"; 65 open($f, '>', $file) 66 or die("Cannot write to $file: $!"); 86 print "$file: removed $dups duplicate includes\n";
|
| H A D | docproc.c | 55 typedef void FILEONLY(char * file); 61 typedef void FILELINE(char * file, char * line); 181 static void adddep(char * file) { printf("\t%s", file); } in adddep() argument 182 static void adddep2(char * file, char * line) { line = line; adddep(file); } in adddep2() argument 184 static void noaction2(char * file, char * line) { file = file; line = line; } in noaction2() argument
|
| H A D | gen_initramfs_list.sh | 18 $0 [-o <file>] [-u <uid>] [-g <gid>] {-d | <cpio_source>} ... 19 -o <file> Create compressed initramfs file named <file> using 28 If <cpio_source> is a .cpio file it will be used 206 cat "$1" | while read type dir file perm ; do 208 echo "$file \\";
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/kconfig/ |
| H A D | util.c | 12 struct file *file_lookup(const char *name) in file_lookup() 14 struct file *file; in file_lookup() local 17 for (file = file_list; file; file = file->next) { in file_lookup() 18 if (!strcmp(name, file->name)) { in file_lookup() 20 return file; in file_lookup() 24 file = malloc(sizeof(*file)); in file_lookup() 25 memset(file, 0, sizeof(*file)); in file_lookup() 26 file->name = file_name; in file_lookup() 27 file->next = file_list; in file_lookup() 28 file_list = file; in file_lookup() [all …]
|
| H A D | kxgettext.c | 66 const char *file; member 70 static struct file_line *file_line__new(const char *file, int lineno) in file_line__new() argument 77 self->file = file; in file_line__new() 94 const char *file, int lineno) in message__new() argument 101 self->files = file_line__new(file, lineno); in message__new() 134 static int message__add_file_line(struct message *self, const char *file, in message__add_file_line() argument 138 struct file_line *fl = file_line__new(file, lineno); in message__add_file_line() 150 static int message__add(const char *msg, char *option, const char *file, in message__add() argument 159 rc = message__add_file_line(m, file, lineno); in message__add() 161 m = message__new(escaped, option, file, lineno); in message__add() [all …]
|
| H A D | lex.zconf.c | 316 YY_BUFFER_STATE zconf_create_buffer (FILE *file,int size ); 324 static void zconf_init_buffer (YY_BUFFER_STATE b,FILE *file ); 794 struct file *file; member 1105 current_pos.file = current_file; 1829 YY_BUFFER_STATE zconf_create_buffer (FILE * file, int size ) in zconf_create_buffer() argument 1848 zconf_init_buffer(b,file ); in zconf_create_buffer() 1876 static void zconf_init_buffer (YY_BUFFER_STATE b, FILE * file ) in zconf_init_buffer() argument 1883 b->yy_input_file = file; in zconf_init_buffer() 2370 struct file *iter; in zconf_nextfile() 2371 struct file *file = file_lookup(name); in zconf_nextfile() local [all …]
|
| H A D | expr.h | 18 struct file { struct 19 struct file *next; argument 20 struct file *parent; argument 144 struct file *file; /* what file was this property defined */ member 167 struct file *file; member 177 extern struct file *file_list; 178 extern struct file *current_file; 179 struct file *lookup_file(const char *name);
|
| H A D | lex.zconf.c_shipped | 130 /* Returned upon end-of-file. */ 156 /* Special action meaning "start processing a new file". */ 272 * just pointing zconfin at a new input file. 316 YY_BUFFER_STATE zconf_create_buffer (FILE *file,int size ); 324 static void zconf_init_buffer (YY_BUFFER_STATE b,FILE *file ); 794 struct file *file; 1044 while ( 1 ) /* loops until end-of-file is reached */ 1105 current_pos.file = current_file; 1362 /* We're scanning a new file or input source. It's 1485 * EOB_ACT_END_OF_FILE - end of file [all …]
|
| /utopia/UTPA2-700.0.x/modules/msos/utopia_adaption/utopia/ |
| H A D | utopia_dev.c | 110 static long utopia_proc_ioctl_compat(struct file *filp, unsigned int cmd, void* arg) in utopia_proc_ioctl_compat() 195 static long utopia_proc_ioctl(struct file *filp, unsigned int cmd, void* arg) in utopia_proc_ioctl() 379 static ssize_t utopia_proc_write(struct file *file, const char __user *buf, in utopia_proc_write() argument 385 static int utopia_proc_open(struct inode *inode, struct file *file) in utopia_proc_open() argument 395 file->private_data = Tmp; in utopia_proc_open() 399 static int utopia_proc_release(struct inode *inode, struct file * file) in utopia_proc_release() argument 401 UTOPIA2K_ADP *mmapData = file->private_data ; in utopia_proc_release() 489 static ssize_t mpoolinfo_proc_read(struct file *file, char __user *buf, size_t size, loff_t *ppos) in mpoolinfo_proc_read() argument 496 static int mpoolinfo_proc_open(struct inode *inode, struct file *file) in mpoolinfo_proc_open() argument 500 static int mpoolinfo_proc_release(struct inode *inode, struct file * file) in mpoolinfo_proc_release() argument [all …]
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/mod/ |
| H A D | sumversion.c | 230 static int parse_string(const char *file, unsigned long len, in parse_string() argument 235 add_char(file[0], md); in parse_string() 237 add_char(file[i], md); in parse_string() 238 if (file[i] == '"' && file[i-1] != '\\') in parse_string() 244 static int parse_comment(const char *file, unsigned long len) in parse_comment() argument 249 if (file[i-1] == '*' && file[i] == '/') in parse_comment() 258 char *file; in parse_file() local 261 file = grab_file(fname, &len); in parse_file() 262 if (!file) in parse_file() 267 if (file[i] == '\\' && (i+1 < len) && file[i+1] == '\n') { in parse_file() [all …]
|
| H A D | modpost.c | 361 char *get_next_line(unsigned long *pos, void *file, unsigned long size) in get_next_line() argument 366 signed char *p = (signed char *)file + *pos; in get_next_line() 390 void release_file(void *file, unsigned long size) in release_file() argument 392 munmap(file, size); in release_file() 1962 FILE *file; in write_if_changed() local 1965 file = fopen(fname, "r"); in write_if_changed() 1966 if (!file) in write_if_changed() 1969 if (fstat(fileno(file), &st) < 0) in write_if_changed() 1976 if (fread(tmp, 1, b->pos, file) != b->pos) in write_if_changed() 1983 fclose(file); in write_if_changed() [all …]
|
| /utopia/UTPA2-700.0.x/projects/build/ |
| H A D | bspOneUtopia.dxyfile | 3 # This file describes the settings to be used by the documentation system 18 # This tag specifies the encoding used for all characters in the config file 49 # otherwise cause performance problems for the file system. 68 # the file and class documentation (similar to JavaDoc). 87 # "The $name file" "is" "provides" "specifies" "contains" 92 "The $name file " \ 116 # path before files name in the file list and in the header files. If set 117 # to NO the shortest path that makes the file name unique will be used. 124 # the path. The tag can be used to show relative paths in the file list. 132 # the reader which header file to include in order to use a class. [all …]
|
| H A D | bsp.dxyfile | 3 # This file describes the settings to be used by the documentation system 17 # This tag specifies the encoding used for all characters in the config file 48 # otherwise cause performance problems for the file system. 67 # the file and class documentation (similar to JavaDoc). 86 # "The $name file" "is" "provides" "specifies" "contains" 91 "The $name file " \ 115 # path before files name in the file list and in the header files. If set 116 # to NO the shortest path that makes the file name unique will be used. 123 # the path. The tag can be used to show relative paths in the file list. 131 # the reader which header file to include in order to use a class. [all …]
|
| /utopia/UTPA2-700.0.x/modules/gpd/drv/gpd/ |
| H A D | zlib.h | 1175 ZEXTERN MS_U32 ZEXPORT gzsetparams OF((gzFile file, MS_U32 level, MS_U32 strategy)); 1183 ZEXTERN MS_U32 ZEXPORT gzread OF((gzFile file, voidp buf, MS_U32 len)); 1191 ZEXTERN MS_U32 ZEXPORT gzwrite OF((gzFile file, 1199 ZEXTERN MS_U32 ZEXPORTVA gzprintf OF((gzFile file, const char *format, ...)); 1212 ZEXTERN MS_U32 ZEXPORT gzputs OF((gzFile file, const char *s)); 1219 ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, MS_U32 len)); 1228 ZEXTERN MS_U32 ZEXPORT gzputc OF((gzFile file, MS_U32 c)); 1234 ZEXTERN MS_U32 ZEXPORT gzgetc OF((gzFile file)); 1240 ZEXTERN MS_U32 ZEXPORT gzungetc OF((MS_U32 c, gzFile file)); 1250 ZEXTERN MS_U32 ZEXPORT gzflush OF((gzFile file, MS_U32 flush)); [all …]
|
| /utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/bits/ |
| H A D | stab.def | 3 This file is part of the GNU C Library. 82 Supposedly the field is "path to associated .cb file". THIS VALUE 87 of the definition file. Other is non-zero if it is imported with the 109 /* Name of main source file. 117 /* Beginning of an include file. Only Sun uses this. 118 In an object file, only the name is significant. 122 /* Name of sub-source file (#include file). 130 /* End of an include file. No name. 131 This and N_BINCL act as brackets around the file's output. 132 In an object file, there is no significant data in this entry. [all …]
|
| /utopia/UTPA2-700.0.x/mxlib/ |
| H A D | drv_rule.mk | 57 DRV_OBJ = $(foreach file, $(notdir $(patsubst %.c, %.o, $(DRV_SRC))), $(OBJ_PATH)/$(file)) 59 DRV_IMPORT_OBJ = $(foreach file, $(notdir $(patsubst %.src, %.o, $(DRV_IMPORT_SRC))), $(OBJ_PATH)/$… 62 HAL_OBJ = $(foreach file, $(notdir $(patsubst %.c, %.o, $(HAL_SRC))), $(OBJ_PATH)/$(file)) 63 HAL_OBJ_S = $(foreach file, $(notdir $(patsubst %.s, %.o, $(HAL_SRC_S))), $(OBJ_PATH)/$(file)) 65 HAL_IMPORT_OBJ = $(foreach file, $(notdir $(patsubst %.src, %.o, $(HAL_IMPORT_SRC))), $(OBJ_PATH)/$…
|
| /utopia/UTPA2-700.0.x/modules/vdec_v1/drv/mvd/ |
| H A D | Makefile.mvd | 158 OBJ_S = $(foreach file, $(OBJ_S0), $(OBJPATH)/$(file) ) 159 OBJ_C = $(foreach file, $(OBJ_C0), $(OBJPATH)/$(file) ) 160 OBJ_C_H = $(foreach file, $(OBJ_C_H0), $(OBJPATH)/$(file) ) 161 OBJ_B = $(foreach file, $(OBJ_B0), $(OBJPATH)/$(file) )
|
| /utopia/UTPA2-700.0.x/projects/tools/mipsisa32-elf/EL_mips32r2_msoft-float/ |
| H A D | license of libsdtc++.txt | 4 This file is part of the GNU ISO C++ Library. This library is free 16 with this library; see the file COPYING. If not, write to the Free 20 As a special exception, you may use this file as part of a free software 22 templates or use macros or inline functions from this file, or you compile 23 this file and link it with other files to produce an executable, this 24 file does not by itself cause the resulting executable to be covered by 26 invalidate any other reasons why the executable file might be covered by
|