/vbox/src/libs/zlib-1.2.6/contrib/untgz/ |
H A D | untgz.c | 98 char *fname; member in struct:attr_item 206 int setfiletime (char *fname,time_t ftime) argument 234 hFile = CreateFile(fname, GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 246 return utime(fname,&settime); 253 void push_attr(struct attr_item **list,char *fname,int mode,time_t time) argument 260 item->fname = strdup(fname); 276 setfiletime(item->fname,item->time); 277 chmod(item->fname,item->mode); 371 int matchname (int arg,int argc,char **argv,char *fname) argument 394 char fname[BLOCKSIZE]; local [all...] |
/vbox/src/libs/xpcom18a4/python/ |
H A D | file.py | 246 fname = tempfile.mktemp() 248 test_file = LocalFile(fname, "w") 253 f = open(fname, "r") 257 test_file.init(fname, "r") 262 test_file = LocalFile(fname, "r") 267 if not os.path.isfile(fname): 268 raise RuntimeError, "The file '%s' does not exist, but we are explicitly testing create semantics when it does" % (fname,) 269 test_file = LocalFile(fname, "w") 273 f = open(fname, "r") 279 os.unlink(fname) [all...] |
/vbox/src/libs/liblzf-3.4/ |
H A D | lzf.c | 331 compose_name (const char *fname, char *oname) argument 337 if (strlen (fname) > PATH_MAX - 4) 339 fprintf (stderr, "%s: %s.lzf: name too long", imagename, fname); 343 strcpy (oname, fname); 348 if (strlen (fname) > PATH_MAX) 350 fprintf (stderr, "%s: %s: name too long\n", imagename, fname); 354 strcpy (oname, fname); 358 fprintf (stderr, "%s: %s: unknown suffix\n", imagename, fname); 369 run_file (const char *fname) argument 377 if (compose_name (fname, onam [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/h/ |
H A D | PBlackBox.h | 95 ParserBlackBox(char *fname) argument 104 FILE *f = fopen(fname, "r"); 107 cerr << "cannot open " << fname << "\n"; return; local
|
/vbox/src/VBox/GuestHost/OpenGL/include/ |
H A D | cr_pixeldata.h | 46 DECLEXPORT(void) crDumpNamedTGA(const char *fname, GLint w, GLint h, GLvoid *data); 47 DECLEXPORT(void) crDumpNamedTGAV(GLint w, GLint h, GLvoid *data, const char* fname, va_list va); 48 DECLEXPORT(void) crDumpNamedTGAF(GLint w, GLint h, GLvoid *data, const char* fname, ...);
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/ |
H A D | dt_program.c | 408 char *fname; local 416 fname = alloca(strlen(prp->pr_name) + 1 + i); 417 dt_header_fmt_func(fname, prp->pr_name); 420 infop->dthi_pfname, fname) < 0) 446 infop->dthi_pfname, fname, infop->dthi_pfname, fname) < 0) 459 char *mname, *fname; local 470 fname = alloca(strlen(prp->pr_name) + 1 + i); 471 dt_header_fmt_func(fname, prp->pr_name); 491 infop->dthi_pfname, fname) < 584 dtrace_program_header(dtrace_hdl_t *dtp, FILE *out, const char *fname) argument [all...] |
H A D | dt_provider.c | 516 const char *fname, const char *rname, uint32_t offset, int isenabled) 523 assert(fname != NULL); 526 if (strcmp(pip->pi_fname, fname) == 0 && 549 (void) strlcpy(pip->pi_fname, fname, sizeof (pip->pi_fname)); 595 pvp->pv_desc.dtvd_name, prp->pr_ident->di_name, fname, offset, 596 rname != NULL ? rname : fname); 515 dt_probe_define(dt_provider_t *pvp, dt_probe_t *prp, const char *fname, const char *rname, uint32_t offset, int isenabled) argument
|
H A D | dt_module.c | 836 char fname[MAXPATHLEN]; local 847 (void) snprintf(fname, sizeof (fname), 850 if ((fd = open(fname, O_RDONLY)) == -1 || fstat64(fd, &st) == -1 || 852 dt_dprintf("failed to open %s: %s\n", fname, strerror(errno)); 870 fname, elf_errmsg(elf_errno())); 885 dt_dprintf("failed to load %s: unknown ELF class\n", fname);
|
/vbox/src/VBox/Devices/PC/ipxe/contrib/rom-o-matic/ |
H A D | utils.php | 557 $fname = $config_dir . "/" . $cfgsec . ".h"; variable 559 $fp = fopen ( $fname, "wb" ); 561 die ( "Unable to open $fname file for output!" ); 587 * @param string $fname pathname of file to output string to 592 function write_file_from_string ( $fname, $ftext ) 594 $fp = fopen ( $fname, "wb" ); 596 die ( "Unable to open $fname file for output!" );
|
/vbox/src/libs/xpcom18a4/python/server/ |
H A D | module.py | 67 fname = os.path.basename(location.path) 70 print "Registering '%s' (%s)" % (reg_contractid, fname)
|
/vbox/src/VBox/GuestHost/OpenGL/util/ |
H A D | error.c | 567 const char *fname = crGetenv( "CR_DEBUG_FILE" ); local 590 if (!fname && fnamePrefix) 603 fname = &str[0]; 608 if (fname) 611 crStrcpy(debugFile, fname); 618 fname = debugFile; 619 output = fopen( fname, "w" ); 622 crError( "Couldn't open debug log %s", fname ); 641 if (!fname && !crGetenv("CR_DEBUG")
|
H A D | pixel.c | 1814 char fname[200]; local 1818 sprintf(fname, "tex%i.tga", _tnum++); 1819 crDumpNamedTGA(fname, w, h, data); 1822 void crDumpNamedTGA(const char* fname, GLint w, GLint h, GLvoid *data) argument 1827 out = fopen(fname, "w"); 1828 if (!out) crError("can't create %s!", fname); 1849 void crDumpNamedTGAV(GLint w, GLint h, GLvoid *data, const char* fname, va_list va) argument 1852 RTStrPrintfV(szName, sizeof(szName), fname, va); 1856 void crDumpNamedTGAF(GLint w, GLint h, GLvoid *data, const char* fname, ...) argument 1860 va_start(va, fname); [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
H A D | tokens.h | 153 void enum_file(char * fname); 159 void defines(char * fname); 165 void enum_def(char * fname);
|
H A D | antlr.c | 136 char *fname; local 141 fname = mystrdup(LATEXT(1)); 142 f = fopen(StripQuotes(fname), "r"); 143 if ( f==NULL ) {warn(eMsg1("cannot open token defs file '%s'", fname+1));} 145 ANTLRm(enum_file(fname+1), f, PARSE_ENUM_FILE); 3051 enum_file(char * fname) argument 3053 enum_file(fname) 3054 char *fname ; 3105 enum_def( fname ); 3114 defines( fname ); 3138 defines(char * fname) argument 3198 enum_def(char * fname) argument [all...] |
H A D | antlr.g | 666 char *fname;
671 fname = mystrdup(LATEXT(1));
672 f = fopen(StripQuotes(fname), "r");
673 if ( f==NULL ) {warn(eMsg1("cannot open token defs file '%s'", fname+1));}
675 ANTLRm(enum_file(fname+1), f, PARSE_ENUM_FILE);
2167 enum_file[char *fname]
2173 ( ( enum_def[$fname] )+
2174 | defines[$fname]
2181 defines[char *fname]
2202 warnFL(eMsg1("redefinition of token %s; ignored",t),$fname,zzlin [all...] |
/vbox/src/VBox/Installer/solaris/ |
H A D | checkinstall.sh | 152 VBOXSVC_PID=`ps -eo pid,fname | grep VBoxSVC | grep -v grep | awk '{ print $1 }'` 159 VBOXNETDHCP_PID=`ps -eo pid,fname | grep VBoxNetDHCP | grep -v grep | awk '{ print $1 }'` 166 VBOXNETNAT_PID=`ps -eo pid,fname | grep VBoxNetNAT | grep -v grep | awk '{ print $1 }'`
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/ |
H A D | dtrace.c | 374 dof_prune(const char *fname) argument 381 if ((fd = open(fname, O_RDONLY)) == -1) { 386 fatal("failed to open %s", fname); 391 fatal("failed to fstat %s", fname); 394 fatal("failed to allocate memory for %s", fname); 397 fatal("failed to read %s", fname); 402 if ((fd = open(fname, O_WRONLY | O_TRUNC)) == -1) 403 fatal("failed to open %s for writing", fname); 419 "enabling in %s\n", fname); 427 fatal("failed to write to %s", fname); 461 char *fname = g_etcfile, *tmpname; local [all...] |
/vbox/src/libs/libxml2-2.6.31/ |
H A D | regressions.py | 127 fname = errbase + filename + ext 128 expout = open(fname, 'rt') 130 print "Can't open result file %s - bypassing test" % fname 146 fname = errbase + filename + ext 147 experr = open(fname, 'rt')
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/ |
H A D | attributes.h | 128 char **fname,
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/ |
H A D | attributes.h | 128 char **fname,
|
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/ |
H A D | gendiffcode.py | 34 def gendiffcode(fname, state_name, docopy, doinvalid): 55 FILE = open(sys.argv[3]+"/"+fname, "r")
|
/vbox/src/libs/zlib-1.2.6/test/ |
H A D | example.c | 82 void test_gzio OF((const char *fname, 114 void test_gzio(fname, uncompr, uncomprLen) 115 const char *fname; /* compressed file name */ 127 file = gzopen(fname, "wb"); 144 file = gzopen(fname, "rb");
|
/vbox/src/VBox/GuestHost/OpenGL/packer/ |
H A D | packer_bbox.py | 221 fname = func_name + extSuffix
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/ |
H A D | os.h | 492 extern const char *LogInit(const char *fname, const char *backup);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/ |
H A D | os.h | 478 extern const char *LogInit(const char *fname, const char *backup);
|