HomeSort by relevance Sort by last modified time
    Searched defs:MAGIC (Results 1 - 25 of 67) sorted by null

1 2 3

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sunaudio.py 8 MAGIC = '.snd'
21 if fp.read(4) != MAGIC:
22 raise error, 'gethdr: bad magic word'
py_compile.py 13 MAGIC = imp.get_magic()
129 fc.write(MAGIC)
sre_constants.py 16 MAGIC = 20031017
240 f.write("#define SRE_MAGIC %d\n" % MAGIC)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sunaudio.py 8 MAGIC = '.snd'
21 if fp.read(4) != MAGIC:
22 raise error, 'gethdr: bad magic word'
py_compile.py 13 MAGIC = imp.get_magic()
129 fc.write(MAGIC)
sre_constants.py 16 MAGIC = 20031017
240 f.write("#define SRE_MAGIC %d\n" % MAGIC)
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
HeaderItem.java 28 * {@code non-null;} the file format magic number, represented as the
31 private static final String MAGIC = "dex\n035\0";
75 out.annotate(8, "magic: " + new CstUtf8(MAGIC).toQuoted());
87 // Write the magic number.
89 out.writeByte(MAGIC.charAt(i));
  /device/moto/shamu/
releasetools.py 9 __str__ = "bad magic value"
24 # char magic[8]; // set to BOOTLDR_MAGIC
29 MAGIC = "MBOOTV1\0"
51 magic, = struct.unpack(magic_format, data[num_imgs_size + NUM_MAX_IMAGES*img_info_size:num_imgs_size + NUM_MAX_IMAGES*img_info_size + magic_size])
52 if magic != MAGIC:
165 assert False, "bootloader.img bad magic value"
193 assert False, "radio.img bad magic value"
212 # be flashed to trigger the flex update "magic". Do not
236 assert False, "radio.img bad magic value
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
cpio.h 47 #define MAGIC "070707"
tic.h 78 #define MAGIC 0432 /* first two bytes of a compiled entry */
87 #define IS_TIC_MAGIC(p) (LOW_MSB(p) == MAGIC)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
cpio.h 47 #define MAGIC "070707"
tic.h 78 #define MAGIC 0432 /* first two bytes of a compiled entry */
87 #define IS_TIC_MAGIC(p) (LOW_MSB(p) == MAGIC)
  /external/elfutils/src/libdwfl/
gzip.c 39 # define MAGIC "\xFD" "7zXZ\0" /* XZ file format. */
52 # define MAGIC "BZh"
64 # define MAGIC "\037\213"
154 #define NOMAGIC(magic) \
155 (mapped_size <= sizeof magic || memcmp (mapped, magic, sizeof magic - 1))
158 if (NOMAGIC (MAGIC)
  /frameworks/compile/mclinker/lib/LD/
Archive.cpp 20 const char Archive::MAGIC[] = "!<arch>\n";
22 const size_t Archive::MAGIC_LEN = sizeof(Archive::MAGIC) - 1;
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
BinaryHprof.java 35 * Prefix of valid magic values from the start of a binary hprof file.
37 static String MAGIC = "JAVA PROFILE ";
40 * Returns the file's magic value as a String if found, otherwise null.
49 if (string.startsWith(MAGIC)) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
buildtools.py 27 # .pyc file (and 'PYC ' resource magic number)
28 MAGIC = imp.get_magic()
248 data = (MAGIC + '\0\0\0\0') + data
429 fc.write('\0\0\0\0') # MAGIC placeholder, written later
434 fc.write(MAGIC)
bundlebuilder.py 237 MAGIC = imp.get_magic()
255 return path, MAGIC + '\0\0\0\0' + marshal.dumps(code)
753 f.write(MAGIC)
    [all...]
  /external/valgrind/coregrind/m_ume/
macho.c 57 #define MAGIC MH_MAGIC
63 #define MAGIC MH_MAGIC_64
526 if (mh.magic != MAGIC) {
527 print("bad executable (no Mach-O magic)\n");
785 vki_uint32_t magic; local
788 if (size < sizeof(magic)) {
789 print("bad executable (no Mach-O magic)\n");
792 res = VG_(pread)(fd, &magic, sizeof(magic), offset)
818 const vki_uint32_t *magic = hdr; local
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
Archive.h 32 static const char MAGIC[]; ///< magic string
33 static const char THIN_MAGIC[]; ///< magic of thin archive
34 static const size_t MAGIC_LEN; ///< length of magic string
39 static const char MEMBER_MAGIC[]; ///< fmag field magic #
  /external/emma/core/java12/com/vladium/emma/data/
DataFactory.java 548 final int magic = raf.readInt (); local
549 if (magic != MAGIC)
692 out.writeInt (MAGIC);
805 private static final int MAGIC = 0x454D4D41; // "EMMA"
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
SpoofChecker.java 385 // Magic number for sanity checking spoof binary resource data.
386 static final int MAGIC = 0x3845fdef;
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
readmacho.c 66 # define MAGIC MH_MAGIC
73 # define MAGIC MH_MAGIC_64
119 if (VG_(ntohl)(fh_be->magic) == FAT_MAGIC)
124 if (mh->magic == MAGIC)
183 fh.magic = VG_(ntohl)(fh_be.magic);
185 if (fh.magic == FAT_MAGIC) {
263 if (mh.magic != MAGIC) {
    [all...]
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 103 static final String MAGIC = "libcore.io.DiskLruCache";
342 String magic = readAsciiLine(in); local
347 if (!MAGIC.equals(magic)
353 + magic + ", " + version + ", " + valueCountString + ", " + blank + "]");
432 writer.write(MAGIC);
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 103 static final String MAGIC = "libcore.io.DiskLruCache";
342 String magic = readAsciiLine(in); local
347 if (!MAGIC.equals(magic)
353 + magic + ", " + version + ", " + valueCountString + ", " + blank + "]");
432 writer.write(MAGIC);
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
DiskLruCache.java 103 static final String MAGIC = "libcore.io.DiskLruCache";
342 String magic = readAsciiLine(in); local
347 if (!MAGIC.equals(magic)
353 + magic + ", " + version + ", " + valueCountString + ", " + blank + "]");
432 writer.write(MAGIC);
    [all...]

Completed in 811 milliseconds

1 2 3