Searched refs:filename (Results 1 - 25 of 79) sorted by relevance

1234

/barrelfish-master/lib/posixcompat/
H A Dremove.c14 int remove(const char *filename) argument
19 ret = unlink(filename);
23 return rmdir(filename);
H A Dutime.c13 int utime(const char *filename, const struct utimbuf *times) argument
/barrelfish-master/lib/tommath/
H A Dgen.pl9 foreach my $filename (glob "bn*.c") {
10 open( SRC, "<$filename" ) or die "Couldn't open $filename for reading: $!";
11 print OUT "/* Start: $filename */\n";
13 print OUT "\n/* End: $filename */\n\n";
14 close SRC or die "Error closing $filename after reading: $!";
H A Ddep.pl13 foreach my $filename (glob "bn*.c") {
14 my $define = $filename;
16 print "Processing $filename\n";
18 # convert filename to upper case so we can use it as a define
25 open(SRC, "<$filename");
47 unlink($filename);
48 rename("tmp", $filename);
54 foreach my $filename (glob "bn*.c") {
55 open(SRC, "<$filename") or die "Can't open source file!\n";
57 # convert filename t
[all...]
H A Dpretty.build16 foreach my $filename (glob "*.c") {
23 foreach my $filename (glob "*.c") {
42 my $tmp = $filename;
48 open( SRC, "<$filename" ) or die "Couldn't open $filename for reading: $!";
50 close SRC or die "Error closing $filename after reading: $!";
/barrelfish-master/tools/demo/Aquarium/
H A DDialogs.cs32 /// <param name="filename">Out parameter filename chosen by user</param>
36 out string filename, bool addAll)
38 filename = null;
50 filename = dlg.FileName;
61 /// <param name="filename">Out parameter filename chosen by user</param>
65 out string filename, bool addAll)
67 filename = null;
78 filename
35 OpenThese(string extension, string filter, out string filename, bool addAll) argument
64 SaveThese(string extension, string filter, out string filename, bool addAll) argument
91 OpenThese(string extension, string filter, out string filename) argument
105 SaveThese(string extension, string filter, out string filename) argument
[all...]
/barrelfish-master/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/jdotview/
H A DFileWatcher.java33 String filename; field in class:FileWatcher
38 public FileWatcher(String filename, long SLEEPTIME) { argument
40 this.filename=filename;
41 this.file = new File(filename);
62 actionPerformed(new ActionEvent( this, 0, filename));
H A DJDotView.java44 String filename = "-";
49 filename=args[0];
52 viewer.view(filename);
58 void view(String filename) { argument
59 frame = new Frame("ECLiPSe graph viewer : "+filename);
60 final GraphVizPanel panel = new GraphVizPanel(filename, SLEEPTIME);
H A DGraphVizPanel.java40 String filename; field in class:GraphVizPanel
50 public GraphVizPanel(final String filename, long SLEEPTIME) { argument
51 this.filename = filename;
53 fw = new FileWatcher(filename, SLEEPTIME);
132 setGraph(loadGraph(filename));
140 public Graph loadGraph(String filename) throws FileNotFoundException { argument
142 input = new FileInputStream(filename);
186 if (JOptionPane.YES_OPTION == JOptionPane.showConfirmDialog(null,"Delete temporary file \""+ filename +"\"")) {
187 new File(filename)
[all...]
/barrelfish-master/include/linenoise/
H A Dlinenoise.h58 int linenoiseHistorySave(const char *filename);
59 int linenoiseHistoryLoad(const char *filename);
/barrelfish-master/lib/openssl-1.0.0d/engines/ccgost/
H A Dgostsum.c18 int hash_file(gost_hash_ctx *ctx,char *filename,char *sum,int mode);
20 int get_line(FILE *f,char *hash,char *filename);
77 char inhash[65],calcsum[65],filename[PATH_MAX]; local
88 while (get_line(check_file,inhash,filename))
90 if (!hash_file(&ctx,filename,calcsum,open_mode))
99 fprintf(stderr,"%s\tOK\n",filename);
106 fprintf(stderr,"%s\tFAILED\n",filename);
111 argv[0],filename);
149 int hash_file(gost_hash_ctx *ctx,char *filename,char *sum,int mode) argument
152 if ((fd=open(filename,mod
188 get_line(FILE *f,char *hash,char *filename) argument
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/dso/
H A Ddso_beos.c84 static char *beos_name_converter(DSO *dso, const char *filename);
117 char *filename = DSO_convert_filename(dso, NULL); local
119 if(filename == NULL)
124 id = load_add_on(filename);
128 ERR_add_error_data(3, "filename(", filename, ")");
137 dso->loaded_filename = filename;
141 if(filename != NULL)
142 OPENSSL_free(filename);
236 static char *beos_name_converter(DSO *dso, const char *filename) argument
[all...]
H A Ddso_lib.c167 if(dso->filename != NULL)
168 OPENSSL_free(dso->filename);
194 DSO *DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags) argument
218 if(ret->filename != NULL)
223 /* filename can only be NULL if we were passed a dso that already has
225 if(filename != NULL)
226 if(!DSO_set_filename(ret, filename))
231 filename = ret->filename;
232 if(filename
365 DSO_set_filename(DSO *dso, const char *filename) argument
413 DSO_convert_filename(DSO *dso, const char *filename) argument
[all...]
H A Ddso_dl.c86 static char *dl_name_converter(DSO *dso, const char *filename);
127 * platform-independant filename and try once with that. */
128 char *filename= DSO_convert_filename(dso, NULL); local
130 if(filename == NULL)
135 ptr = shl_load(filename, BIND_IMMEDIATE |
140 ERR_add_error_data(4, "filename(", filename, "): ",
149 /* Success, stick the converted filename we've loaded under into the DSO
151 dso->loaded_filename = filename;
155 if(filename !
324 dl_name_converter(DSO *dso, const char *filename) argument
[all...]
H A Ddso_win32.c128 static char *win32_name_converter(DSO *dso, const char *filename);
170 char *filename = DSO_convert_filename(dso, NULL); local
172 if(filename == NULL)
177 h = LoadLibraryA(filename);
181 ERR_add_error_data(3, "filename(", filename, ")");
197 dso->loaded_filename = filename;
201 if(filename != NULL)
202 OPENSSL_free(filename);
312 static struct file_st *win32_splitter(DSO *dso, const char *filename, argument
630 win32_name_converter(DSO *dso, const char *filename) argument
[all...]
H A Ddso_dlfcn.c106 static char *dlfcn_name_converter(DSO *dso, const char *filename);
169 char *filename = DSO_convert_filename(dso, NULL); local
172 if(filename == NULL)
182 ptr = dlopen(filename, flags);
186 ERR_add_error_data(4, "filename(", filename, "): ", dlerror());
195 dso->loaded_filename = filename;
199 if(filename != NULL)
200 OPENSSL_free(filename);
369 static char *dlfcn_name_converter(DSO *dso, const char *filename) argument
[all...]
H A Ddso_vms.c92 static char *vms_name_converter(DSO *dso, const char *filename);
124 char filename[FILENAME_MAX+1]; member in struct:dso_internal_st
125 /* This contains whatever is not in filename, if needed.
141 char *filename = DSO_convert_filename(dso, NULL); local
145 if(filename == NULL)
169 sp1 = strrchr(filename, ']');
170 sp2 = strrchr(filename, '>');
173 if (sp1 == NULL) sp1 = strrchr(filename, ':');
175 sp1 = filename;
189 || (sp1 - filename)
496 vms_name_converter(DSO *dso, const char *filename) argument
[all...]
/barrelfish-master/lib/openssl-1.0.0d/test/
H A Dcms-examples.pl104 my ( $filename, $data );
117 $filename = $1;
121 $filename = "$exdir/$filename";
122 if ( $filename =~ /\.bin$/ || $filename =~ /\.eml$/ ) {
124 open OUT, ">$filename";
128 push @cleanup, $filename;
130 elsif ( $filename =~ /\.cer$/ ) {
131 write_pem( $filename, "CERTIFICAT
[all...]
H A Dpkits-test.pl86 # can be converted into the filename to test.
803 my $filename = $title;
805 $filename =~ tr/ -//d;
806 $filename = "Signed${filename}.eml";
807 if ( !-f "$pkitsdir/$filename" ) {
808 print "\"$filename\" not found\n";
815 $cmd .= "-in $pkitsdir/$filename -policy anyPolicy";
829 print "Filename: $pkitsdir/$filename\n";
840 my $filename
[all...]
/barrelfish-master/lib/libc/locale/
H A Dldpart.c59 char filename[PATH_MAX]; local
85 strcpy(filename, _PathLocale);
86 strcat(filename, "/");
87 strcat(filename, name);
88 strcat(filename, "/");
89 strcat(filename, category_filename);
90 if ((fd = _open(filename, O_RDONLY | O_CLOEXEC)) < 0)
/barrelfish-master/include/
H A Ddlfcn.h57 void *dlopen(const char *filename, int flags);
/barrelfish-master/lib/openssl-1.0.0d/apps/
H A Dwinrand.c56 /* Usage: winrand [filename]
59 * random data to filename or .rnd
67 const char *filename; variable
79 filename = RAND_file_name(buffer, sizeof buffer);
81 filename = cmdline;
83 RAND_load_file(filename, -1);
141 if (RAND_write_file(filename) <= 0)
/barrelfish-master/lib/lua/src/
H A Dloadlib.c330 static int readable (const char *filename) { argument
331 FILE *f = fopen(filename, "r"); /* try to open file */
358 const char *filename = luaL_gsub(L, lua_tostring(L, -1), local
361 if (readable(filename)) /* does file exist and is readable? */
362 return filename; /* return that file name */
363 lua_pushfstring(L, "\n\tno file " LUA_QS, filename);
398 static int checkload (lua_State *L, int stat, const char *filename) { argument
400 lua_pushstring(L, filename); /* will be 2nd argument to module */
406 lua_tostring(L, 1), filename, lua_tostring(L, -1));
411 const char *filename; local
419 loadfunc(lua_State *L, const char *filename, const char *modname) argument
439 const char *filename = findfile(L, name, "cpath", LUA_CSUBSEP); local
446 const char *filename; local
[all...]
/barrelfish-master/lib/openssl-1.0.0d/demos/easy_tls/
H A Deasy-tls.h26 int tls_rand_seed_from_file(const char *filename, size_t n, void *apparg);
/barrelfish-master/lib/openssl-1.0.0d/util/
H A Dmkrc.pl21 $filename = $ARGV[0]; $filename =~ /(.*)\.([^.]+)$/;
55 VALUE "OriginalFilename", "$filename\\0"

Completed in 89 milliseconds

1234