Searched refs:oname (Results 1 - 12 of 12) sorted by relevance

/external/blktrace/btt/
H A Daqd.c34 char *oname; local
42 oname = malloc(strlen(aqd_name) + strlen(str) + 32);
43 sprintf(oname, "%s_%s.dat", aqd_name, str);
44 if ((ap->fp = my_fopen(oname, "w")) == NULL) {
45 perror(oname);
48 add_file(ap->fp, oname);
H A Dbno_dump.c30 char *oname; local
36 oname = malloc(strlen(bno_dump_name) + 32);
37 sprintf(oname, "%s_%03d,%03d_%c.dat", bno_dump_name, mjr, mnr, rwc);
38 if ((fp = my_fopen(oname, "w")) == NULL)
39 perror(oname);
41 add_file(fp, oname);
H A Dlatency.c35 char oname[strlen(name) + 32]; local
40 sprintf(oname, "%s_%03d,%03d_%s.dat", name, mjr, mnr, post);
41 if ((fp = my_fopen(oname, "w")) == NULL)
42 perror(oname);
44 add_file(fp, strdup(oname));
H A Dunplug_hist.c71 char *oname = malloc(strlen(unplug_hist_name) + 32); local
73 sprintf(oname, "%s_%03d,%03d.dat", unplug_hist_name, mjr, mnr);
74 if ((fp = my_fopen(oname, "w")) != NULL) {
82 perror(oname);
84 free(oname);
H A Dplat.c32 char *oname; local
41 oname = malloc(strlen(str) + 32);
42 sprintf(oname, "%s.dat", str);
43 if ((pp->fp = my_fopen(oname, "w")) == NULL) {
44 perror(oname);
47 add_file(pp->fp, oname);
H A Dmisc.c37 char *oname; member in struct:file_info
57 if (!stat(fip->oname, &buf) && (buf.st_size == 0))
58 unlink(fip->oname);
61 free(fip->oname);
118 void add_file(FILE *fp, char *oname) argument
123 fip->oname = oname;
H A Dseek.c48 char *oname; local
52 oname = malloc(strlen(seek_name) + strlen(str) + 32);
53 sprintf(oname, "%s_%s_%c.dat", seek_name, str, rw);
54 if ((fp = my_fopen(oname, "w")) == NULL)
55 perror(oname);
57 add_file(fp, oname);
221 char *oname; local
225 oname = malloc(strlen(sps_name) + strlen(str) + 32);
226 sprintf(oname, "%s_%s.dat", sps_name, str);
227 if ((sip->sps_fp = my_fopen(oname, "
[all...]
H A Dglobals.h246 void add_file(FILE *fp, char *oname);
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dwrap_yasm.py20 def mk_tao(CPPFLAGS = "", CPP = "gcc -E", modname = '_yasm', oname = None, YASM_DIR = ".", **options):
21 if oname is None:
22 oname = modname+'.pyx'
36 unit = WorkUnit(files,modname,oname,False,mark_cb=cb,extradefs=extradefs,
/external/liblzf/
H A Dlzf.c331 compose_name (const char *fname, char *oname) argument
343 strcpy (oname, fname);
344 strcat (oname, ".lzf");
354 strcpy (oname, fname);
355 p = &oname[strlen (oname)] - 4;
356 if (p < oname || strcmp (p, ".lzf"))
374 char oname[PATH_MAX + 1]; local
377 if (compose_name (fname, oname))
410 fd2 = open_out (oname);
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dfile.c539 char **oname)
550 if (oname)
551 *oname = combine;
563 if (oname)
564 *oname = combine;
572 if (oname)
573 *oname = NULL;
538 yasm_fopen_include(const char *iname, const char *from, const char *mode, char **oname) argument
H A Dfile.h206 * All pathnames may be either absolute or relative; from, oname, and
210 * is saved into oname, and the fopen'ed FILE * is returned. If not found,
216 * \param oname full pathname of included file (may be relative). NULL
223 /*@null@*/ /*@out@*/ /*@only@*/ char **oname);

Completed in 418 milliseconds