Searched defs:binary (Results 1 - 7 of 7) sorted by relevance

/system/extras/simpleperf/
H A Drecord_test.cpp40 std::vector<char> binary = record.BinaryFormat(); local
42 ReadRecordsFromBuffer(event_attr, binary.data(), binary.size());
H A Dread_elf.cpp139 llvm::object::OwningBinary<llvm::object::Binary> binary; member in struct:BinaryRet
170 << "] is not a binary file: " << binary_or_err.getError().message();
173 ret.binary = llvm::object::OwningBinary<llvm::object::Binary>(std::move(binary_or_err.get()),
175 ret.obj = llvm::dyn_cast<llvm::object::ObjectFile>(ret.binary.getBinary());
/system/core/toolbox/upstream-netbsd/usr.bin/grep/
H A Dgrep.h10 * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
86 bool binary; member in struct:file
/system/netd/tests/
H A Dbinder_test.cpp155 static std::vector<std::string> listIptablesRule(const char *binary, const char *chainName) { argument
156 std::string command = StringPrintf("%s -w -n -L %s", binary, chainName);
160 static int iptablesRuleLineLength(const char *binary, const char *chainName) { argument
161 return listIptablesRule(binary, chainName).size();
211 static int bandwidthDataSaverEnabled(const char *binary) { argument
212 std::vector<std::string> lines = listIptablesRule(binary, "bw_data_saver");
/system/core/libbacktrace/
H A DBacktraceOffline.cpp721 BACK_LOGW("failed to create binary for %s in %s: %s", elf_file.c_str(), apk_file.c_str(),
743 llvm::object::Binary* binary = owning_binary.getBinary(); local
744 auto obj = llvm::dyn_cast<llvm::object::ObjectFile>(binary);
/system/core/logcat/
H A Dlogcat.cpp51 bool binary; member in struct:log_device_t
60 binary = b;
172 if (dev->binary) {
321 " -B, --binary Output the log in binary.\n"
579 { "binary", no_argument, NULL, 'B' },
811 bool binary = !strcmp(name, "events") || local
813 log_device_t* d = new log_device_t(name, binary);
1228 d->binary = log_msg.id() == LOG_ID_EVENTS;
/system/netd/server/
H A DBandwidthController.cpp1225 std::string getTetherStatsCommand(const char *binary) { argument
1233 return android::base::StringPrintf("%s -nvx -w -L %s", binary,
1245 for (const auto binary : {IPTABLES_PATH, IP6TABLES_PATH}) {
1246 fullCmd = getTetherStatsCommand(binary);

Completed in 429 milliseconds