HomeSort by relevance Sort by last modified time
    Searched full:oname (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /external/blktrace/btt/
aqd.c 34 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);
bno_dump.c 30 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);
plat.c 32 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);
latency.c 35 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));
unplug_hist.c 71 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);
misc.c 37 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)
123 fip->oname = oname;
seek.c 48 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, "w")) == NULL
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug139.go 16 bug139.go:7: fatal error: naddr: ONAME class x 5
  /prebuilts/go/linux-x86/test/fixedbugs/
bug139.go 16 bug139.go:7: fatal error: naddr: ONAME class x 5
  /external/syslinux/utils/
pxelinux-options 425 $oname = shift(@ARGV);
433 $onum = option_number($oname);
435 print STDERR "$0: unknown option name: $oname\n";
442 print STDERR "$0: unable to parse data for option $oname\n";
451 $oname = shift(@ARGV);
459 $onum = option_number($oname);
461 print STDERR "$0: unknown option name: $oname\n";
468 print STDERR "$0: unable to parse data for option $oname\n";
477 $oname = shift(@ARGV);
479 if (!defined($oname)) {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
gen.go 21 return n.Op == ONAME && (n.Class() == PPARAM || n.Class() == PPARAMOUT) && n.Name.Param.Heapaddr != nil
27 return n.Op == ONAME && n.Class() == PAUTOHEAP && n.Name.Param.Stackcopy != nil
syntax.go 19 // node with Op=ONAME for a given instance of a variable x.
38 // ONAME, OTYPE, OPACK, OLABEL, some OLITERAL
45 // - ONAME nodes that refer to local variables use it to identify their stack frame position.
65 if n == nil || n.Op != ONAME {
212 case ONAME, OLITERAL, OTYPE:
220 return n.Op == ONAME && n.Left != nil && n.Left.Op == OTYPE && n.Right != nil && n.Right.Op == ONAME
231 // Name holds Node fields used only by named nodes (ONAME, OTYPE, OPACK, OLABEL, some OLITERAL).
237 Param *Param // additional fields for ONAME, OTYPE
239 Vargen int32 // unique name for ONAME within a function. Function outputs are numbered starting at one
    [all...]
obj.go 184 if n.Op != ONAME {
260 case ONAME:
374 if nam.Op != ONAME {
417 if nam.Op != ONAME {
466 if nr.Left.Op != ONAME {
472 case ONAME:
dcl.go 107 } else if n.Op == ONAME && ctxt == PAUTO && !strings.Contains(s.Name, "·") {
138 if n == nil || n.Sym == nil || (n.Op != ONAME && n.Op != ONONAME) || t == nil {
142 n.Op = ONAME
159 v.Op = ONAME
182 v.Op = ONAME
279 if Curfn != nil && n.Op == ONAME && n.Name.Funcdepth > 0 && n.Name.Funcdepth != funcdepth {
315 case ONAME,
422 n.Left.Op = ONAME
437 n.Left.Op = ONAME
462 n.Left.Op = ONAME
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
gen.go 21 return n.Op == ONAME && (n.Class() == PPARAM || n.Class() == PPARAMOUT) && n.Name.Param.Heapaddr != nil
27 return n.Op == ONAME && n.Class() == PAUTOHEAP && n.Name.Param.Stackcopy != nil
syntax.go 19 // node with Op=ONAME for a given instance of a variable x.
38 // ONAME, OTYPE, OPACK, OLABEL, some OLITERAL
45 // - ONAME nodes that refer to local variables use it to identify their stack frame position.
65 if n == nil || n.Op != ONAME {
212 case ONAME, OLITERAL, OTYPE:
220 return n.Op == ONAME && n.Left != nil && n.Left.Op == OTYPE && n.Right != nil && n.Right.Op == ONAME
231 // Name holds Node fields used only by named nodes (ONAME, OTYPE, OPACK, OLABEL, some OLITERAL).
237 Param *Param // additional fields for ONAME, OTYPE
239 Vargen int32 // unique name for ONAME within a function. Function outputs are numbered starting at one
    [all...]
obj.go 184 if n.Op != ONAME {
260 case ONAME:
374 if nam.Op != ONAME {
417 if nam.Op != ONAME {
466 if nr.Left.Op != ONAME {
472 case ONAME:
dcl.go 107 } else if n.Op == ONAME && ctxt == PAUTO && !strings.Contains(s.Name, "·") {
138 if n == nil || n.Sym == nil || (n.Op != ONAME && n.Op != ONONAME) || t == nil {
142 n.Op = ONAME
159 v.Op = ONAME
182 v.Op = ONAME
279 if Curfn != nil && n.Op == ONAME && n.Name.Funcdepth > 0 && n.Name.Funcdepth != funcdepth {
315 case ONAME,
422 n.Left.Op = ONAME
437 n.Left.Op = ONAME
462 n.Left.Op = ONAME
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
location.go 36 // part or all of a PPARAM, PPARAMOUT, or PAUTO ONAME node.
55 N GCNode // an ONAME *gc.Node representing a stack location.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
location.go 36 // part or all of a PPARAM, PPARAMOUT, or PAUTO ONAME node.
55 N GCNode // an ONAME *gc.Node representing a stack location.
  /toolchain/binutils/binutils-2.27/ld/emultempl/
spuelf.em 231 const char *oname = in->name;
235 if (!lang_output_section_find (oname))
238 char *p = strchr (oname + 1, '.');
241 size_t len = p - oname;
242 p = memcpy (xmalloc (len + 1), oname, len);
248 oname = os->name;
250 oname = ".text";
254 spu_place_special_section (in, NULL, oname);
488 char *oname;
510 fd = new_tmp_file (&oname);
    [all...]
  /toolchain/binutils/binutils-2.27/ld/
pe-dll.c 1887 char *oname; local
1976 char *oname; local
2093 char *oname; local
2308 char *oname; local
2349 char *oname; local
2441 char *oname; local
2499 char *oname; local
2579 char *oname; local
2874 const char *oname; member in struct:key_value
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-scripts/
sysroot-prefix.exp 105 set oname "tmpdir/$onamebase.o"
108 if ![ld_assemble_flags $as $gasopt $srcdir/$subdir/$sname $oname] {
114 ![ar_simple_create $ar "" tmpdir/sysroot/tmp/ldtest-xyzzy/lib$libnamebase.a $oname] } {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/types/
sym.go 28 Def *Node // definition: ONAME OTYPE OPACK or OLITERAL
  /prebuilts/go/linux-x86/src/cmd/compile/internal/types/
sym.go 28 Def *Node // definition: ONAME OTYPE OPACK or OLITERAL

Completed in 591 milliseconds

1 2 3 4