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

  /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));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/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/i686-linux-glibc2.7-4.6/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.7-4.6/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)
  /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)) {
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
HeaderItem.java 37 * the file format magic number, represented as the
40 public static final byte[] MAGIC = new byte[] {0x64, 0x65, 0x78, 0x0A, 0x30, 0x33, 0x35, 0x00};//"dex\n035" + '\0';
63 if (MAGIC[i] != readMagic[i]) {
64 throw new RuntimeException("The magic value is not the expected value");
137 magicBuilder.append((char)MAGIC[i]);
140 out.annotate("magic: " + Utf8Utils.escapeString(magicBuilder.toString()));
141 out.write(MAGIC);
  /external/valgrind/main/coregrind/m_ume/
macho.c 57 #define MAGIC MH_MAGIC
63 #define MAGIC MH_MAGIC_64
465 if (mh.magic != MAGIC) {
466 print("bad executable (no Mach-O magic)\n");
704 vki_uint32_t magic; local
707 if (size < sizeof(magic)) {
708 print("bad executable (no Mach-O magic)\n");
711 res = VG_(pread)(fd, &magic, sizeof(magic), offset)
737 vki_uint32_t *magic = (vki_uint32_t *)hdr; local
    [all...]
  /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/valgrind/main/coregrind/m_debuginfo/
readmacho.c 66 # define MAGIC MH_MAGIC
73 # define MAGIC MH_MAGIC_64
127 if (VG_(ntohl)(fh_be->magic) == FAT_MAGIC)
132 if (mh->magic == MAGIC)
213 fh.magic = VG_(ntohl)(fh_be->magic);
215 if (fh.magic == FAT_MAGIC) {
285 if (mh->magic != MAGIC) {
    [all...]
  /libcore/luni/src/main/java/libcore/io/
DiskLruCache.java 93 static final String MAGIC = "libcore.io.DiskLruCache";
232 String magic = Streams.readAsciiLine(in); local
237 if (!MAGIC.equals(magic)
243 + magic + ", " + version + ", " + valueCountString + ", " + blank + "]");
322 writer.write(MAGIC);
  /external/proguard/src/proguard/classfile/
ClassConstants.java 32 public static final int MAGIC = 0xCAFEBABE;
  /frameworks/native/opengl/libagl/
egl.cpp 142 MAGIC = 0x31415265
145 uint32_t magic; member in struct:android::egl_surface_t
175 : magic(MAGIC), dpy(dpy), config(config), ctx(0)
183 magic = 0;
187 ALOGE_IF(magic != MAGIC, "invalid EGLSurface (%p)", this);
188 return magic == MAGIC;
    [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
SocketChannelTest.java     [all...]
  /external/mksh/src/
sh.h 375 * Make MAGIC a char that might be printed to make bugs more obvious, but
379 #define MAGIC (7) /* prefix for *?[!{,} during expand */
380 #define ISMAGIC(c) ((unsigned char)(c) == MAGIC)
783 #define C_SUBOP2 BIT(8) /* "#%" (magic, see below) */
1011 #define INT_L BIT(20) /* long integer (no-op but used as magic) */
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java 86 // In-memory Parcel magic number, used to detect attempts to unmarshall bad data
87 private static final int MAGIC = 0xBA757475; // 'BATSTATS'
5449 int magic = in.readInt(); local
    [all...]
  /external/emma/lib/
emma.jar 
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 

Completed in 8068 milliseconds