Searched refs:os (Results 1 - 25 of 29) sorted by relevance

12

/hardware/interfaces/audio/2.0/vts/functional/utility/
H A DPrettyPrintAudioTypes.h24 inline void printUnderlyingValue(Enum value, ::std::ostream* os) { argument
25 *os << std::hex << " (0x" << static_cast<std::underlying_type_t<Enum>>(value) << ")";
35 inline void PrintTo(const Result& result, ::std::ostream* os) { argument
36 *os << toString(result);
37 detail::printUnderlyingValue(result, os);
44 inline void PrintTo(const AudioConfig& config, ::std::ostream* os) { argument
45 *os << toString(config);
48 inline void PrintTo(const AudioDevice& device, ::std::ostream* os) { argument
49 *os << toString(device);
50 detail::printUnderlyingValue(device, os);
53 PrintTo(const AudioChannelMask& channelMask, ::std::ostream* os) argument
[all...]
/hardware/interfaces/keymaster/3.0/vts/functional/
H A Dkey_param_output.cpp27 ::std::ostream& operator<<(::std::ostream& os, const hidl_vec<KeyParameter>& set) { argument
29 os << "(Empty)" << ::std::endl;
31 os << "\n";
33 os << set[i] << ::std::endl;
35 return os;
38 ::std::ostream& operator<<(::std::ostream& os, ErrorCode value) { argument
39 return os << (int)value;
42 ::std::ostream& operator<<(::std::ostream& os, Digest value) { argument
43 return os << stringify(value);
46 ::std::ostream& operator<<(::std::ostream& os, Algorith argument
50 operator <<(::std::ostream& os, BlockMode value) argument
54 operator <<(::std::ostream& os, PaddingMode value) argument
58 operator <<(::std::ostream& os, KeyOrigin value) argument
62 operator <<(::std::ostream& os, KeyPurpose value) argument
66 operator <<(::std::ostream& os, EcCurve value) argument
70 operator <<(::std::ostream& os, const KeyParameter& param) argument
123 operator <<(::std::ostream& os, const KeyCharacteristics& chars) argument
[all...]
H A Dkey_param_output.h29 ::std::ostream& operator<<(::std::ostream& os, const NullOr<ValueT>& value) { argument
31 os << "(value not present)";
33 os << value.value();
35 return os;
38 ::std::ostream& operator<<(::std::ostream& os, const hidl_vec<KeyParameter>& set);
39 ::std::ostream& operator<<(::std::ostream& os, BlockMode value);
40 ::std::ostream& operator<<(::std::ostream& os, Digest value);
41 ::std::ostream& operator<<(::std::ostream& os, EcCurve value);
42 ::std::ostream& operator<<(::std::ostream& os, ErrorCode value);
43 ::std::ostream& operator<<(::std::ostream& os, PaddingMod
[all...]
/hardware/interfaces/tests/pointer/1.0/default/lib/
H A DPointerHelper.cpp30 std::ostringstream os; local
32 os << &g.nodes[i] << " = " << g.nodes[i].data << ", ";
33 ALOGI("%s Nodes: [%s]", prefix, os.str().c_str());
34 os.str("");
35 os.clear();
37 os << g.edges[i].left << " -> " << g.edges[i].right << ", ";
38 ALOGI("%s Edges: [%s]", prefix, os.str().c_str());
/hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
H A DHidTree.cpp39 void HidTreeNode::outputRecursive(std::ostream &os, int level) const { argument
40 insertIndentation(os, level);
41 os << "Node data: " << mData
45 child->outputRecursive(os, level + 1);
58 void HidTreeNode::insertIndentation(std::ostream &os, int level) const { argument
60 std::fill_n(std::ostreambuf_iterator<char>(os), level, indentCharacter);
98 std::ostream& operator<<(std::ostream& os, const HidTreeNode& n) { argument
99 n.outputRecursive(os, 0);
100 return os;
108 void HidReportNode::outputRecursive(std::ostream &os, in argument
[all...]
H A DHidItem.cpp118 std::ostream& operator<<(std::ostream &os, const HidUtil::HidItem &h) { argument
119 os << "offset: " << h.offset << ", size: " << h.byteSize
122 os << "[empty]";
124 os << h.data.size() << " byte(s) {";
126 os << (int) i << ", ";
128 os << "}";
130 return os;
H A DHidTree.h29 friend std::ostream& operator<<(std::ostream& os, const HidTreeNode& n);
67 void insertIndentation(std::ostream &os, int level) const;
70 virtual void outputRecursive(std::ostream& os, int level) const;
94 virtual void outputRecursive(std::ostream &os, int level) const override;
99 std::ostream& operator<<(std::ostream& os, const HidTreeNode& n);
H A DHidReport.cpp124 std::ostream& operator<<(std::ostream& os, const HidReport& h) { argument
125 os << h.getStringType() << ", "
130 os << "logMin: " << range.first << ", "
134 os << "phy===log, ";
137 os << "phyMin: " << range.first << ", "
142 os << "map: (" << std::hex;
144 os << i << ",";
146 os << "), " << std::dec;
149 os << "exponent: " << h.getExponentString() << ", "
152 os << "constan
[all...]
H A DHidItem.h39 friend std::ostream& operator<<(std::ostream &os, const HidItem &h);
51 std::ostream& operator<<(std::ostream &os, const HidUtil::HidItem &h);
H A DHidReport.h34 friend std::ostream& operator<<(std::ostream& os, const HidReport& h);
98 std::ostream& operator<<(std::ostream& os, const HidReport& h);
H A DHidParser.cpp284 std::ostream& operator<<(std::ostream &os, const HidParser::DigestVector &digests) { argument
286 os << "Usage: 0x" << std::hex << i.fullUsage << std::dec
289 os << reportTypeToString(packet.type) << " id: " << packet.id
299 os << " " << report.bitOffset << " size: " << report.bitSize
314 os << LOG_ENDL;
316 os << LOG_ENDL;
317 return os;
H A DStreamIoUtil.h139 void hexdumpToStream(std::ostream &os, const ForwardIterator &first, const ForwardIterator &last) { argument
159 os << ss.str() << LOG_ENDL;
172 os << ss.str() << LOG_ENDL;
H A DTriState.h224 friend std::ostream& operator <<(std::ostream &os, const TriState<T> &v) {
226 os << v.mValue;
228 os << "[not set]";
230 return os;
H A DHidParser.h175 std::ostream& operator<<(std::ostream &os, const HidParser::DigestVector &digest2);
/hardware/interfaces/dumpstate/1.0/default/
H A DDumpstateDevice.cpp25 using android::os::dumpstate::DumpFileToFd;
26 using android::os::dumpstate::RunCommandToFd;
/hardware/intel/common/utils/ituxd/src/com/intel/thermal/
H A DituxdApp.java21 import android.os.SystemProperties;
H A DThermalService.java27 import android.os.Handler;
28 import android.os.IBinder;
29 import android.os.Looper;
30 import android.os.Message;
31 import android.os.Process;
32 import android.os.SystemProperties;
33 import android.os.UserHandle;
H A DThermalUtils.java20 import android.os.SystemProperties;
H A DVirtualThermalZone.java19 import android.os.UEventObserver;
/hardware/qcom/display/msm8996/libgralloc1/
H A Dgr_device_impl.cpp185 std::ostringstream os; local
186 os << "-------------------------------" << std::endl;
187 os << "QTI gralloc dump:" << std::endl;
188 os << "-------------------------------" << std::endl;
190 dev->buf_mgr_->Dump(&os);
191 os << "-------------------------------" << std::endl;
192 auto copied = os.str().copy(out_buffer, std::min(os.str().size(), max_dump_size), 0);
H A Dgr_buf_mgr.cpp829 gralloc1_error_t BufferManager::Dump(std::ostringstream *os) { argument
833 *os << "handle id: " << std::setw(4) << hnd->id;
834 *os << " fd: " << std::setw(3) << hnd->fd;
835 *os << " fd_meta: " << std::setw(3) << hnd->fd_metadata;
836 *os << " wxh: " << std::setw(4) << hnd->width <<" x " << std::setw(4) << hnd->height;
837 *os << " uwxuh: " << std::setw(4) << hnd->unaligned_width << " x ";
838 *os << std::setw(4) << hnd->unaligned_height;
839 *os << " size: " << std::setw(9) << hnd->size;
840 *os << std::hex << std::setfill('0');
841 *os << " priv_flag
[all...]
H A Dgr_buf_mgr.h51 gralloc1_error_t Dump(std::ostringstream *os);
/hardware/qcom/display/msm8998/libgralloc1/
H A Dgr_device_impl.cpp185 std::ostringstream os; local
187 os << "-------------------------------" << std::endl;
188 os << "QTI gralloc dump:" << std::endl;
189 os << "-------------------------------" << std::endl;
190 auto copy_size = os.str().size() < *out_size ? os.str().size() : *out_size;
191 std::copy_n(out_buffer, copy_size, os.str().begin());
/hardware/qcom/display/msm8996/sdm/libs/hwc2/
H A Dhwc_display.cpp1642 std::ostringstream os; local
1643 os << "-------------------------------" << std::endl;
1644 os << "HWC2 LayerDump display_id: " << id_ << std::endl;
1648 os << "-------------------------------" << std::endl;
1649 os << "layer_id: " << layer->GetId() << std::endl;
1650 os << "\tz: " << layer->GetZ() << std::endl;
1651 os << "\tclient(SF) composition: " <<
1653 os << "\tdevice(SDM) composition: " <<
1655 os << "\tplane_alpha: " << std::to_string(sdm_layer->plane_alpha).c_str() << std::endl;
1656 os << "\tforma
[all...]
/hardware/qcom/display/msm8998/sdm/libs/hwc2/
H A Dhwc_display.cpp1596 std::ostringstream os; local
1597 os << "-------------------------------" << std::endl;
1598 os << "HWC2 LayerDump display_id: " << id_ << std::endl;
1602 os << "-------------------------------" << std::endl;
1603 os << "layer_id: " << layer->GetId() << std::endl;
1604 os << "\tz: " << layer->GetZ() << std::endl;
1605 os << "\tclient(SF) composition: " <<
1607 os << "\tdevice(SDM) composition: " <<
1609 os << "\tplane_alpha: " << std::to_string(sdm_layer->plane_alpha).c_str() << std::endl;
1610 os << "\tforma
[all...]

Completed in 374 milliseconds

12