/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/ |
_win16.h | 138 PRUint32 magic; /* self identifier, for debug */ member in struct:_MDThread 142 PRUint32 magic; /* for debugging */ member in struct:_MDThreadStack 148 PRUint32 magic; /* for debugging */ member in struct:_MDSegment 153 PRUint32 magic; /* for debugging */ member in struct:_MDLock 158 PRUint32 magic; /* for debugging */ member in struct:_MDDir 163 PRUint32 magic; member in struct:_MDCVar
|
_win95.h | 110 PRUint32 magic; /* for debugging */ member in struct:_MDThread 121 PRUint32 magic; /* for debugging */ member in struct:_MDThreadStack 125 PRUint32 magic; /* for debugging */ member in struct:_MDSegment 135 PRUint32 magic; /* for debugging */ member in struct:_MDDir 144 PRUint32 magic; /* for debugging */ member in struct:_MDDirUTF16 149 PRUint32 magic; member in struct:_MDCVar
|
/external/chromium_org/third_party/openssl/openssl/apps/ |
passwd.c | 302 * For magic string "1", this should be compatible to the MD5-based BSD 304 * For 'magic' string "apr1", this is compatible to the MD5-based Apache 307 * 'magic' string was changed -- the laziest application of the NIH principle 310 static char *md5crypt(const char *passwd, const char *magic, const char *salt) 323 assert(strlen(magic) <= 4); /* "1" or "apr1" */ 324 strncat(out_buf, magic, 4); 328 salt_out = out_buf + 2 + strlen(magic); 336 EVP_DigestUpdate(&md, magic, strlen(magic));
|
/external/openssl/apps/ |
passwd.c | 302 * For magic string "1", this should be compatible to the MD5-based BSD 304 * For 'magic' string "apr1", this is compatible to the MD5-based Apache 307 * 'magic' string was changed -- the laziest application of the NIH principle 310 static char *md5crypt(const char *passwd, const char *magic, const char *salt) 323 assert(strlen(magic) <= 4); /* "1" or "apr1" */ 324 strncat(out_buf, magic, 4); 328 salt_out = out_buf + 2 + strlen(magic); 336 EVP_DigestUpdate(&md, magic, strlen(magic));
|
/art/runtime/ |
dex_file.cc | 65 int OpenAndReadMagic(const std::string& filename, uint32_t* magic) { 66 CHECK(magic != NULL); 72 int n = TEMP_FAILURE_RETRY(read(fd, magic, sizeof(*magic))); 73 if (n != sizeof(*magic)) { 74 PLOG(ERROR) << "Failed to find magic in '" << filename << "'"; 86 uint32_t magic; local 87 int fd = OpenAndReadMagic(filename, &magic); 91 if (IsZipMagic(magic)) { 104 if (IsDexMagic(magic)) { 118 uint32_t magic; local [all...] |
/bionic/libc/kernel/common/linux/ |
wanrouter.h | 157 unsigned magic; member in struct:wandev_conf 325 unsigned magic; member in struct:wanif_conf
|
/dalvik/dx/tests/003-magic-version-access/ |
run | 22 # Bad magic (throws an expection) 23 dx --dump --strict class-bad-magic.txt
|
/development/ndk/platforms/android-3/include/linux/ |
wanrouter.h | 138 unsigned magic; member in struct:wandev_conf 297 unsigned magic; member in struct:wanif_conf
|
/external/chromium_org/third_party/jinja2/ |
bccache.py | 47 # magic version used to only change with new jinja versions. With 2.6 78 # make sure the magic header is correct 79 magic = f.read(len(bc_magic)) 80 if magic != bc_magic:
|
/external/chromium_org/third_party/leveldatabase/src/table/ |
format.cc | 48 const uint64_t magic = ((static_cast<uint64_t>(magic_hi) << 32) | local 50 if (magic != kTableMagicNumber) { 51 return Status::InvalidArgument("not an sstable (bad magic number)");
|
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
basictypes.h | 278 if (hdr->magic == MH_MAGIC_64) { 289 if (hdr->magic == MH_MAGIC) {
|
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
basictypes.h | 278 if (hdr->magic == MH_MAGIC_64) { 289 if (hdr->magic == MH_MAGIC) {
|
/external/chromium_org/tools/gyp/test/ios/ |
gyptest-per-config-settings.py | 61 magic, length = struct.unpack('>II', data[:8]) 62 if magic != 0xfade7171 or length != len(data):
|
/external/e2fsprogs/lib/ext2fs/ |
ext2_io.h | 34 errcode_t magic; member in struct:struct_io_channel 67 errcode_t magic; member in struct:struct_io_manager
|
/external/grub/docs/ |
multiboot.h.texi | 20 /* @r{The magic number for the Multiboot header.} */ 30 /* @r{The magic number passed by a Multiboot-compliant boot loader.} */ 51 unsigned long magic;
|
/external/libppp/src/ |
lqr.c | 67 u_int32_t magic; member in struct:echolqr 80 echo.magic = htonl(lcp->want_magic); 97 lqr.magic = ntohl(lqr.magic); 101 /* Tolerate echo replies with either magic number */ 102 if (lqr.magic != 0 && lqr.magic != lcp->his_magic && 103 lqr.magic != lcp->want_magic) { 104 log_Printf(LogWARN, "%s: lqr_RecvEcho: Bad magic: expected 0x%08x," 105 " got 0x%08x\n", fp->link->name, lcp->his_magic, lqr.magic); [all...] |
/external/oprofile/daemon/ |
opd_events.c | 159 memcpy(header->magic, OPD_MAGIC, sizeof(header->magic));
|
/frameworks/native/opengl/libs/EGL/ |
egl_display.h | 94 inline bool isValid() const { return magic == '_dpy'; } 121 uint32_t magic; member in class:android::egl_display_t
|
/libcore/luni/src/main/java/libcore/util/ |
ZoneInfoDB.java | 114 String magic = new String(tzdata_version, 0, 6, StandardCharsets.US_ASCII); local 115 if (!magic.equals("tzdata") || tzdata_version[11] != 0) { 116 throw new RuntimeException("bad tzdata magic: " + Arrays.toString(tzdata_version));
|
/libcore/luni/src/test/java/tests/api/java/io/ |
ObjectInputStreamTest.java | 346 short magic = java.io.ObjectStreamConstants.STREAM_MAGIC; local 354 buffer[0] = (byte) (magic >> 8); 355 buffer[1] = (byte) magic; 413 short magic = java.io.ObjectStreamConstants.STREAM_MAGIC; local 433 // Test 2: Make the stream magic number invalid and check that 435 buffer[0] = (byte)magic; 436 buffer[1] = (byte)(magic >> 8); 449 buffer[0] = (byte)(magic >> 8); 450 buffer[1] = (byte)magic;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
wanrouter.h | 200 unsigned magic; /* magic number (for verification) */ member in struct:wandev_conf 393 unsigned magic; /* magic number */ member in struct:wanif_conf
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
wanrouter.h | 200 unsigned magic; /* magic number (for verification) */ member in struct:wandev_conf 393 unsigned magic; /* magic number */ member in struct:wanif_conf
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
wanrouter.h | 200 unsigned magic; /* magic number (for verification) */ member in struct:wandev_conf 393 unsigned magic; /* magic number */ member in struct:wanif_conf
|
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/ |
wanrouter.h | 138 unsigned magic; member in struct:wandev_conf 297 unsigned magic; member in struct:wanif_conf
|
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/ |
wanrouter.h | 138 unsigned magic; member in struct:wandev_conf 297 unsigned magic; member in struct:wanif_conf
|