Home
last modified time | relevance | path

Searched refs:binary (Results 1 – 25 of 2120) sorted by relevance

12345678910>>...85

/external/compiler-rt/lib/asan/scripts/
Dasan_symbolize.py38 def symbolize(self, addr, binary, offset): argument
73 def symbolize(self, addr, binary, offset): argument
79 symbolizer_input = '%s %s' % (binary, offset)
110 def __init__(self, binary): argument
112 self.binary = binary
119 cmd += ['-e', self.binary]
125 def symbolize(self, addr, binary, offset): argument
127 if self.binary != binary:
141 def __init__(self, addr, binary): argument
143 self.binary = binary
[all …]
Dsymbolize.py67 binary = match.group(4)
71 if binary.startswith('/'):
72 binary = binary[1:]
73 binary = os.path.join(binary_prefix, binary)
75 load_addr = android_get_load_address(binary)
78 if not pipes.has_key(binary):
79 pipes[binary] = subprocess.Popen(["addr2line", "-i", "-f", "-e", binary],
81 p = pipes[binary]
/external/webkit/Tools/wx/packaging/debian/
Drules43 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-li…
/external/chromium/sdch/open-vcdiff/packages/deb/
Drules82 binary-indep: build install
86 binary-arch: build install
117 binary: binary-indep binary-arch target
118 .PHONY: build clean binary-indep binary-arch binary install
/external/open-vcdiff/packages/deb/
Drules82 binary-indep: build install
86 binary-arch: build install
117 binary: binary-indep binary-arch target
118 .PHONY: build clean binary-indep binary-arch binary install
Dcontrol37 Depends: libvcdcom0 (= ${binary:Version}), ${misc:Depends}
46 Depends: libvcddec0 (= ${binary:Version}), libvcdcom-dev (= ${binary:Version}),
56 Depends: libvcdenc0 (= ${binary:Version}), libvcdcom-dev (= ${binary:Version}),
/external/dropbear/
DMULTI1 Multi-binary compilation
5 can create a single binary. This will save disk space by avoiding repeated
9 To compile the multi-binary, first "make clean" (if you've compiled
14 To use the binary, symlink it from the desired executable:
24 "make install" doesn't currently work for multi-binary configuration, though
/external/dropbear/debian/
Drules94 binary-indep:
96 binary-arch: install dropbear.deb
103 binary: binary-arch binary-indep target
105 .PHONY: patch build clean install binary-indep binary-arch binary
/external/oprofile/libpp/
Dfilename_spec.cpp36 string const & binary) const in match()
44 if (binary.empty()) in match()
51 return rhs.lib_image == binary; in match()
55 return rhs.image == binary; in match()
/external/chromium-trace/trace-viewer/examples/stream_server/handlers/
Dstream_wsh.py92 request.ws_stream.send_message(msg, binary=False)
94 request.ws_stream.send_message(msg, binary=False)
96 request.ws_stream.send_message(msg, binary=False)
98 request.ws_stream.send_message(msg, binary=False)
100 request.ws_stream.send_message(msg, binary=False)
102 request.ws_stream.send_message(msg, binary=False)
/external/chromium/chrome/browser/extensions/
Dextension_browser_actions_api.cc48 BinaryValue* binary = NULL; in RunBrowserAction() local
49 EXTENSION_FUNCTION_VALIDATE(details_->GetBinary("imageData", &binary)); in RunBrowserAction()
50 IPC::Message bitmap_pickle(binary->GetBuffer(), binary->GetSize()); in RunBrowserAction()
/external/chromium/base/
Dvalues_unittest.cc97 scoped_ptr<BinaryValue> binary(BinaryValue::Create(buffer, 0)); in TEST_F() local
98 ASSERT_FALSE(binary.get()); in TEST_F()
103 binary.reset(BinaryValue::Create(buffer, 0)); in TEST_F()
104 ASSERT_TRUE(binary.get()); in TEST_F()
105 ASSERT_TRUE(binary->GetBuffer()); in TEST_F()
106 ASSERT_EQ(buffer, binary->GetBuffer()); in TEST_F()
107 ASSERT_EQ(0U, binary->GetSize()); in TEST_F()
111 binary.reset(BinaryValue::Create(buffer, 15)); in TEST_F()
112 ASSERT_TRUE(binary.get()); in TEST_F()
113 ASSERT_TRUE(binary->GetBuffer()); in TEST_F()
[all …]
/external/e2fsprogs/debian/attic/libs/
Drules68 binary-indep: build
71 binary-arch: build
180 binary: binary-indep binary-arch
182 .PHONY: binary binary-arch binary-indep clean checkroot
/external/stlport/src/details/
Dfstream_stdio.cpp189 case ios_base::out | ios_base::binary: in _M_open()
190 case ios_base::out | ios_base::trunc | ios_base::binary: in _M_open()
198 case ios_base::out | ios_base::app | ios_base::binary: in _M_open()
206 case ios_base::in | ios_base::binary: in _M_open()
214 case ios_base::in | ios_base::out | ios_base::binary: in _M_open()
222 case ios_base::in | ios_base::out | ios_base::trunc | ios_base::binary: in _M_open()
/external/oprofile/daemon/
Dopd_mangling.c145 char const * binary; in opd_open_sample_file() local
183 binary = find_cookie(sf->cookie); in opd_open_sample_file()
185 binary = sf->kernel->name; in opd_open_sample_file()
197 binary ? op_get_mtime(binary) : 0); in opd_open_sample_file()
/external/llvm/docs/tutorial/
DLangImpl6.rst51 binary operators. An example of this is:
63 def binary> 10 (LHS RHS)
67 def binary| 5 (LHS RHS)
76 def binary= 9 (LHS RHS)
84 implementing support for user-defined binary operators and adding unary
90 Adding support for user-defined binary operators is pretty simple with
91 our current framework. We'll first add support for the unary/binary
106 if (IdentifierStr == "binary") return tok_binary;
110 This just adds lexer support for the unary and binary keywords, like we
112 about our current AST, is that we represent binary operators with full
[all …]
DOCamlLangImpl6.rst51 binary operators. An example of this is:
63 def binary> 10 (LHS RHS)
67 def binary| 5 (LHS RHS)
76 def binary= 9 (LHS RHS)
84 implementing support for user-defined binary operators and adding unary
90 Adding support for user-defined binary operators is pretty simple with
91 our current framework. We'll first add support for the unary/binary
107 | "binary" -> [< 'Token.Binary; stream >]
110 This just adds lexer support for the unary and binary keywords, like we
112 thing about our current AST, is that we represent binary operators with
[all …]
/external/webkit/Source/WebCore/platform/win/
DSSLKeyGeneratorWin.cpp80 Vector<char> binary(dwEncodedLength); in signedPublicKeyAndChallengeString() local
81 …QUEST_TO_BE_SIGNED, &requestInfo, &signAlgo, 0, reinterpret_cast<LPBYTE>(binary.data()), &dwEncode… in signedPublicKeyAndChallengeString()
84 keyString = base64Encode(binary); in signedPublicKeyAndChallengeString()
/external/chromium/chrome/browser/ui/webui/options/
Dadvanced_options_utils_gtk.cc33 std::string binary; member
53 commands[i].binary = bin_path.value(); in SearchPATH()
80 argv.push_back(command.binary); in StartProxyConfigUtil()
86 LOG(ERROR) << "StartProxyConfigUtil failed to start " << command.binary; in StartProxyConfigUtil()
/external/ipsec-tools/src/racoon/
DNOTICE4 Redistribution and use in source and binary forms, with or without
9 2. Redistributions in binary form must reproduce the above copyright
33 Redistribution and use in source and binary forms, with or without
38 2. Redistributions in binary form must reproduce the above copyright
62 Redistribution and use in source and binary forms, with or without
67 2. Redistributions in binary form must reproduce the above copyright
91 Redistribution and use in source and binary forms, with or without
96 2. Redistributions in binary form must reproduce the above copyright
119 Redistribution and use in source and binary forms, with or without
124 2. Redistributions in binary form must reproduce the above copyright
[all …]
/external/jmonkeyengine/
DNOTICE6 * Redistribution and use in source and binary forms, with or without
13 * * Redistributions in binary form must reproduce the above copyright
38 * Redistribution and use in source and binary forms, with or without
45 * * Redistributions in binary form must reproduce the above copyright
70 * Redistribution and use in source and binary forms, with or without
77 * * Redistributions in binary form must reproduce the above copyright
102 * Redistribution and use in source and binary forms, with or without
109 * * Redistributions in binary form must reproduce the above copyright
135 * Redistribution and use in source and binary forms, with or without
142 * * Redistributions in binary form must reproduce the above copyright
[all …]
/external/ipsec-tools/
DNOTICE4 Redistribution and use in source and binary forms, with or without
9 2. Redistributions in binary form must reproduce the above copyright
33 Redistribution and use in source and binary forms, with or without
38 2. Redistributions in binary form must reproduce the above copyright
62 Redistribution and use in source and binary forms, with or without
67 2. Redistributions in binary form must reproduce the above copyright
91 Redistribution and use in source and binary forms, with or without
96 2. Redistributions in binary form must reproduce the above copyright
119 Redistribution and use in source and binary forms, with or without
124 2. Redistributions in binary form must reproduce the above copyright
[all …]
/external/bison/
DPACKAGING1 Packaging hints for binary package distributors
5 in distributions of binary packages the installed files should
18 The 'bison-runtime' binary package is much smaller than the 'bison'
19 binary package. It should be included in any distribution that
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
Decho_wsh.py47 request.ws_stream.send_message(line, binary=False)
51 request.ws_stream.send_message(line, binary=True)
/external/clang/test/SemaCXX/
Dnull_in_arithmetic_ops.cpp31 expected-error {{invalid operands to binary expression ('long' and 'void (^)()')}} \ in f()
32 expected-error {{invalid operands to binary expression ('void (^)()' and 'long')}} in f()
34 expected-error {{invalid operands to binary expression ('long' and 'void (X::*)()')}} \ in f()
35 expected-error {{invalid operands to binary expression ('void (X::*)()' and 'long')}} in f()

12345678910>>...85