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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/auxprogs/
dump_insn_ppc.sh 3 objdump -b binary -m powerpc -EB -D \
  /system/core/fastboot/
signfile.sh 9 openssl dgst -passin pass:"$3" -binary -sha1 -sign $1.pem $2 > $2.sign
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 50 binary = match.group(3)
53 if not pipes.has_key(binary):
54 pipes[binary] = subprocess.Popen(["addr2line", "-f", "-e", binary],
56 p = pipes[binary]
71 def get_macho_filetype(binary):
72 if not filetypes.has_key(binary):
73 otool_pipe = subprocess.Popen(["otool", "-Vh", binary],
78 filetypes[binary] = t
80 return filetypes[binary]
    [all...]
symbolize.py 58 binary = match.group(3)
62 if binary.startswith('/'):
63 binary = binary[1:]
64 binary = os.path.join(binary_prefix, binary)
66 load_addr = android_get_load_address(binary)
69 if not pipes.has_key(binary):
70 pipes[binary] = subprocess.Popen(["addr2line", "-f", "-e", binary],
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryClassObject.java 5 * Redistribution and use in source and binary forms, with or without
12 * * Redistributions in binary form must reproduce the above copyright
33 package com.jme3.export.binary;
BinaryIdContentPair.java 5 * Redistribution and use in source and binary forms, with or without
12 * * Redistributions in binary form must reproduce the above copyright
33 package com.jme3.export.binary;
  /bionic/libc/netbsd/inet/
nsap_addr.c 51 inet_nsap_addr(const char *ascii, u_char *binary, int maxlen) {
56 assert(binary != NULL);
75 *binary++ = (nib << 4) | xtob(c);
90 inet_nsap_ntoa(int binlen, const u_char *binary, char *ascii) {
96 assert(binary != NULL);
112 nib = (u_int32_t)*binary >> 4;
114 nib = *binary++ & 0x0f;
  /external/chromium/sdch/open-vcdiff/packages/deb/
rules 82 binary-indep: build install
86 binary-arch: build install
117 binary: binary-indep binary-arch
118 .PHONY: build clean binary-indep binary-arch binary install
  /bionic/libc/private/
__dso_handle.S 5 * Redistribution and use in source and binary forms, with or without
10 * * Redistributions in binary form must reproduce the above copyright
30 # C++ constructors and destructors in the binary.
__dso_handle_so.S 5 * Redistribution and use in source and binary forms, with or without
10 * * Redistributions in binary form must reproduce the above copyright
30 # C++ constructors and destructors in the binary.
  /build/core/
host_executable.mk 16 include $(BUILD_SYSTEM)/binary.mk
raw_executable.mk 5 include $(BUILD_SYSTEM)/binary.mk
25 $(hide) $(TARGET_OBJCOPY) -O binary $(PRIVATE_ELF_FILE) $@
host_static_library.mk 23 include $(BUILD_SYSTEM)/binary.mk
host_shared_library.mk 29 include $(BUILD_SYSTEM)/binary.mk
static_library.mk 21 include $(BUILD_SYSTEM)/binary.mk
  /development/ndk/platforms/android-9/arch-mips/src/
__dso_handle.S 5 * Redistribution and use in source and binary forms, with or without
10 * * Redistributions in binary form must reproduce the above copyright
30 # C++ constructors and destructors in the binary.
  /external/oprofile/libpp/
filename_spec.cpp 36 string const & binary) const
44 if (binary.empty())
47 // PP:3.3 if binary is not empty we must match either the
51 return rhs.lib_image == binary;
55 return rhs.image == binary;
filename_spec.h 34 * @param extra extra binary image location
45 * @param extra extra binary image location
55 * @param binary if binary is non-empty, and matches
56 * the binary or lib name, use it rather than the
67 std::string const & binary) const;
  /external/webkit/Tools/wx/packaging/debian/
rules 43 binary-indep:
57 binary-arch:
74 binary: binary-indep binary-arch
75 .PHONY: build clean binary-indep binary-arch binary install install-nover install-prereq install-libs
  /development/testrunner/test_defs/
native_test.py 128 is no binary corresponding to the source file. We need to filter
139 binary = os.path.basename(f)
140 binary = os.path.splitext(binary)[0]
141 full_path = os.path.join(path, binary)
143 binaries.append(binary)
146 def _RunHostCommand(self, binary, valgrind=False):
149 Runs the host binary and returns the exit code.
156 binary: basename of the file to be run. It is expected to be under
163 full_path = os.path.join(android_build.GetHostBin(), binary)
    [all...]
  /ndk/tests/build/import-install/path1/
Android.mk 2 # by the main project's binary. Note that it imports
  /ndk/tests/build/import-install/path2/
Android.mk 2 # by 'libpath1', and hence by the project's main binary
  /development/ide/emacs/
android-common.el 135 (defun android-find-host-bin (binary)
136 "Return the full path to the host BINARY.
138 Try first to locate BINARY in the out/host tree. Fallback using
142 (android-host) "/bin/" binary)))
145 (error (concat binary " is missing."))))
146 (executable-find binary)))
  /external/chromium/chrome/browser/extensions/
extension_browser_actions_api.cc 48 BinaryValue* binary = NULL; local
49 EXTENSION_FUNCTION_VALIDATE(details_->GetBinary("imageData", &binary));
50 IPC::Message bitmap_pickle(binary->GetBuffer(), binary->GetSize());
  /external/webkit/Source/WebCore/platform/win/
SSLKeyGeneratorWin.cpp 80 Vector<char> binary(dwEncodedLength);
81 if (!CryptSignAndEncodeCertificate(hContext, AT_KEYEXCHANGE, X509_ASN_ENCODING, X509_KEYGEN_REQUEST_TO_BE_SIGNED, &requestInfo, &signAlgo, 0, reinterpret_cast<LPBYTE>(binary.data()), &dwEncodedLength))
84 keyString = base64Encode(binary);

Completed in 2302 milliseconds

1 2 3 4 5 6 7 8 91011>>