HomeSort by relevance Sort by last modified time
    Searched refs:sectname (Results 1 - 25 of 29) sorted by null

1 2

  /external/autotest/client/site_tests/firmware_LockedME/
firmware_LockedME.py 36 def try_to_rewrite(self, sectname):
38 logging.info('Try to write section %s...', sectname)
39 size = os.stat(sectname).st_size
43 '-i' , '%s:newdata' % (sectname),
49 '-i', '%s:%s' % (sectname, sectname),
52 raise error.TestFail('%s is writable, ME is unlocked' % sectname)
  /prebuilts/gdb/darwin-x86/lib/python2.7/logging/
config.py 113 sectname = "formatter_%s" % form
114 opts = cp.options(sectname)
116 fs = cp.get(sectname, "format", 1)
120 dfs = cp.get(sectname, "datefmt", 1)
125 class_name = cp.get(sectname, "class")
143 sectname = "handler_%s" % hand
144 klass = cp.get(sectname, "class")
145 opts = cp.options(sectname)
147 fmt = cp.get(sectname, "formatter")
154 args = cp.get(sectname, "args"
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/logging/
config.py 113 sectname = "formatter_%s" % form
114 opts = cp.options(sectname)
116 fs = cp.get(sectname, "format", 1)
120 dfs = cp.get(sectname, "datefmt", 1)
125 class_name = cp.get(sectname, "class")
143 sectname = "handler_%s" % hand
144 klass = cp.get(sectname, "class")
145 opts = cp.options(sectname)
147 fmt = cp.get(sectname, "formatter")
154 args = cp.get(sectname, "args"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
config.py 113 sectname = "formatter_%s" % form
114 opts = cp.options(sectname)
116 fs = cp.get(sectname, "format", 1)
120 dfs = cp.get(sectname, "datefmt", 1)
125 class_name = cp.get(sectname, "class")
143 sectname = "handler_%s" % hand
144 klass = cp.get(sectname, "class")
145 opts = cp.options(sectname)
147 fmt = cp.get(sectname, "formatter")
154 args = cp.get(sectname, "args"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
config.py 113 sectname = "formatter_%s" % form
114 opts = cp.options(sectname)
116 fs = cp.get(sectname, "format", 1)
120 dfs = cp.get(sectname, "datefmt", 1)
125 class_name = cp.get(sectname, "class")
143 sectname = "handler_%s" % hand
144 klass = cp.get(sectname, "class")
145 opts = cp.options(sectname)
147 fmt = cp.get(sectname, "formatter")
154 args = cp.get(sectname, "args"
    [all...]
  /toolchain/binutils/binutils-2.25/include/mach-o/
external.h 43 unsigned char sectname[16]; /* Section name. */ member in struct:mach_o_section_32_external
61 unsigned char sectname[16]; /* Section name. */ member in struct:mach_o_section_64_external
  /toolchain/binutils/binutils-2.25/gas/config/
obj-macho.c 168 obj_mach_o_make_or_get_sect (char * segname, char * sectname,
182 xlat = bfd_mach_o_section_data_for_mach_sect (stdoutput, segname, sectname);
196 segname, sectname);
210 size_t sectlen = strlen (sectname);
216 memcpy (n + seglen + 1, sectname, sectlen);
263 strncpy (msect->sectname, sectname, sizeof (msect->sectname));
314 char sectname[17]; local
321 if (! obj_mach_o_get_section_names (segname, sectname, 17, 17)
449 char sectname[17]; local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ConfigParser.py 499 sectname = mo.group('header')
500 if sectname in self._sections:
501 cursect = self._sections[sectname]
502 elif sectname == DEFAULTSECT:
506 cursect['__name__'] = sectname
507 self._sections[sectname] = cursect
  /prebuilts/gdb/linux-x86/lib/python2.7/
ConfigParser.py 499 sectname = mo.group('header')
500 if sectname in self._sections:
501 cursect = self._sections[sectname]
502 elif sectname == DEFAULTSECT:
506 cursect['__name__'] = sectname
507 self._sections[sectname] = cursect
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ConfigParser.py 499 sectname = mo.group('header')
500 if sectname in self._sections:
501 cursect = self._sections[sectname]
502 elif sectname == DEFAULTSECT:
506 cursect['__name__'] = sectname
507 self._sections[sectname] = cursect
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ConfigParser.py 499 sectname = mo.group('header')
500 if sectname in self._sections:
501 cursect = self._sections[sectname]
502 elif sectname == DEFAULTSECT:
506 cursect['__name__'] = sectname
507 self._sections[sectname] = cursect
  /toolchain/binutils/binutils-2.25/libiberty/
simple-object-mach-o.c 134 unsigned char sectname[16]; /* Section name. */ member in struct:mach_o_section_32
151 unsigned char sectname[16]; /* Section name. */ member in struct:mach_o_section_64
448 sectname_offset = offsetof (struct mach_o_section_32, sectname);
458 sectname_offset = offsetof (struct mach_o_section_64, sectname);
964 strncpy ((char *) hdr + offsetof (struct mach_o_section_32, sectname),
989 strncpy ((char *) hdr + offsetof (struct mach_o_section_64, sectname),
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
mach-o.c 299 const char *sectname)
310 if (strncmp (sec->mach_o_name, sectname,
318 if (strncmp (sec->mach_o_name, sectname,
370 SEGNAME and SECTNAME are 16 byte arrays (they do not need to be NUL-
447 memset (section->sectname, 0, BFD_MACH_O_SECTNAME_SIZE + 1);
454 strcpy (section->sectname, xlat->mach_o_name);
478 memcpy (section->sectname, dot + 1, seclen);
479 section->sectname[seclen] = 0;
494 memcpy (section->sectname, name, len);
495 section->sectname[len] = 0
    [all...]
mach-o.h 61 char sectname[BFD_MACH_O_SECTNAME_SIZE + 1]; /* Always NUL padded. */ member in struct:bfd_mach_o_section
  /external/llvm/tools/llvm-size/
llvm-size.cpp 144 << format("%.16s", &Sec.sectname) << "): ";
146 outs() << "\tSection " << format("%.16s", &Sec.sectname) << ": ";
170 << format("%.16s", &Sec.sectname) << "): ";
172 outs() << "\tSection " << format("%.16s", &Sec.sectname) << ": ";
  /external/valgrind/coregrind/m_debuginfo/
readmacho.c 592 DiSlice for the specified (segname, sectname) pairing, if
596 const HChar *segname, const HChar *sectname,
618 if (0 == VG_(strncmp(sect.sectname, sectname,
619 sizeof(sect.sectname)))) {
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
od-macho.c 350 sec->segname, sec->sectname);
363 sec->sectname, sec->segname, sec->bfdsection->name);
585 sec->segname, sec->sectname);
    [all...]
  /external/v8/src/
gdb-jit.cc 199 char sectname[16]; member in struct:v8::internal::MachOSectionHeader
249 memset(header->sectname, 0, sizeof(header->sectname));
251 DCHECK(strlen(name_) < sizeof(header->sectname));
253 strncpy(header->sectname, name_, sizeof(header->sectname));
    [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 277 StringRef SectName;
278 Section.getName(SectName);
380 << Sec.sectname << ") "
386 << Sec.sectname << ") " << count << " entries";
408 << Sec.sectname << ") "
414 << Sec.sectname << ") " << count << " entries";
837 StringRef SectName;
838 Sect->getName(SectName);
841 outs() << SegmentName << ":" << SectName << ":";
    [all...]
  /external/llvm/include/llvm/Support/
MachO.h 589 char sectname[16]; member in struct:llvm::MachO::section
603 char sectname[16]; member in struct:llvm::MachO::section_64
    [all...]
  /external/jemalloc/bin/
jeprof.in     [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 36 char sectname[16]; member in struct:__anon18068::section_base
    [all...]
  /external/skia/third_party/yasm/config/android/
Makefile     [all...]
  /external/skia/third_party/yasm/config/chromeos/
Makefile     [all...]
  /external/skia/third_party/yasm/config/ios/
Makefile     [all...]

Completed in 1288 milliseconds

1 2