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

1 2 3

  /external/autotest/client/site_tests/firmware_LockedME/
firmware_LockedME.py 48 def try_to_rewrite(self, sectname):
50 logging.info('Try to write section %s...', sectname)
51 size = os.stat(sectname).st_size
55 '-i' , '%s:newdata' % (sectname),
61 '-i', '%s:%s' % (sectname, sectname),
64 raise error.TestFail('%s is writable, ME is unlocked' % sectname)
82 def check_region_inaccessible(self, sectname):
87 logging.info('%s should be all 0xff...' % sectname)
88 with open(sectname, 'rb') as f
    [all...]
  /external/llvm/test/MC/ARM/
tls-directives.s 8 @ CHECK: sectname __thread_data
12 @ CHECK: sectname __thread_vars
16 @ CHECK: sectname __thread_bss
20 @ CHECK: sectname __thread_ptr
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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...]
  /external/python/cpython2/Lib/logging/
config.py 120 sectname = "formatter_%s" % form
121 opts = cp.options(sectname)
123 fs = cp.get(sectname, "format", 1)
127 dfs = cp.get(sectname, "datefmt", 1)
132 class_name = cp.get(sectname, "class")
150 sectname = "handler_%s" % hand
151 klass = cp.get(sectname, "class")
152 opts = cp.options(sectname)
154 fmt = cp.get(sectname, "formatter")
161 args = cp.get(sectname, "args"
    [all...]
  /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.27/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
  /external/python/cpython3/Lib/
configparser.py     [all...]
  /toolchain/binutils/binutils-2.27/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);
209 name = concat (segname, ".", sectname, (char *) NULL);
254 strncpy (msect->sectname, sectname, sizeof (msect->sectname));
305 char sectname[17]; local
312 if (! obj_mach_o_get_section_names (segname, sectname, 17, 17))
419 new_seg = obj_mach_o_make_or_get_sect (segname, sectname, specified_mask
440 char sectname[17]; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ConfigParser.py 491 sectname = mo.group('header')
492 if sectname in self._sections:
493 cursect = self._sections[sectname]
494 elif sectname == DEFAULTSECT:
498 cursect['__name__'] = sectname
499 self._sections[sectname] = cursect
  /external/python/cpython2/Lib/
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/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.27/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...]
  /external/python/cpython3/Lib/logging/
config.py 116 sectname = "formatter_%s" % form
117 fs = cp.get(sectname, "format", raw=True, fallback=None)
118 dfs = cp.get(sectname, "datefmt", raw=True, fallback=None)
119 stl = cp.get(sectname, "style", raw=True, fallback='%')
121 class_name = cp[sectname].get("class")
    [all...]
  /toolchain/binutils/binutils-2.27/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...]
  /external/llvm/tools/llvm-size/
llvm-size.cpp 230 << format("%.16s", &Sec.sectname) << "): ";
232 outs() << "\tSection " << format("%.16s", &Sec.sectname) << ": ";
257 << format("%.16s", &Sec.sectname) << "): ";
259 outs() << "\tSection " << format("%.16s", &Sec.sectname) << ": ";
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
readmacho.c 593 DiSlice for the specified (segname, sectname) pairing, if
597 const HChar *segname, const HChar *sectname,
619 if (0 == VG_(strncmp)(sect.sectname, sectname,
620 sizeof(sect.sectname))) {
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
od-macho.c 357 sec->segname, sec->sectname);
370 sec->sectname, sec->segname, sec->bfdsection->name);
592 sec->segname, sec->sectname);
    [all...]
  /external/llvm/tools/obj2yaml/
macho2yaml.cpp 55 memcpy(reinterpret_cast<void *>(&TempSec.sectname[0]), &Sec.sectname[0], 16);
  /external/llvm/tools/yaml2obj/
yaml2macho.cpp 96 memcpy(reinterpret_cast<void *>(&TempSec.sectname[0]), &Sec.sectname[0], 16);

Completed in 1248 milliseconds

1 2 3