/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/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/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_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);
|
H A D | dt_proc.c | 261 dt_proc_bpmain(dtrace_hdl_t *dtp, dt_proc_t *dpr, const char *fname) argument 263 dt_dprintf("pid %d: breakpoint at %s()\n", (int)dpr->dpr_pid, fname);
|
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_cc.c | 1967 char fname[PATH_MAX]; local 1998 (void) snprintf(fname, sizeof (fname), 2001 if ((fp = fopen(fname, "r")) == NULL) { 2003 fname, strerror(errno)); 2007 dtp->dt_filetag = fname; 2008 if (dt_lib_depend_add(dtp, &dtp->dt_lib_dep, fname) != 0) 2022 fname, dtrace_errmsg(dtp, dtrace_errno(dtp)));
|
/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/GuestHost/OpenGL/state_tracker/ |
H A D | state_teximage.c | 46 char fname[200]; local 52 sprintf(fname, "tex%i.tga", _tnum++); 53 out = fopen(fname, "w"); 54 if (!out) crError("can't create %s!", 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/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/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
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...] |
/vbox/src/VBox/HostServices/SharedOpenGL/crserverlib/ |
H A D | server_misc.c | 415 char fname[200]; local 426 sprintf(fname, "copy_blit%i_copy_%i.tga", blitnum, copynum); 427 crDumpNamedTGA(fname, w, h, img); 1127 char fname[200]; local 1182 sprintf(fname, "blit%iA_src.tga", blitnum); 1183 crDumpNamedTGA(fname, vp[2], vp[3], img); 1187 sprintf(fname, "blit%iB_dst.tga", blitnum); 1188 crDumpNamedTGA(fname, dstw, dsth, img); 1253 sprintf(fname, "blit%iC_res.tga", blitnum); 1254 crDumpNamedTGA(fname, dst [all...] |
/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/VBox/Main/webservice/jaxlibs/ |
H A D | activation.jar | ... .MimeTypeFile extends java.lang.Object {
private String fname private java.util.Hashtable type_hash public void " href ... |