/aosp12/frameworks/native/libs/binder/include/binder/ |
H A D | TextOutput.h | 29 class TextOutput 67 typedef TextOutput& (*TextOutputManipFunc)(TextOutput&); 69 TextOutput& endl(TextOutput& to); 70 TextOutput& indent(TextOutput& to); 71 TextOutput& dedent(TextOutput& to); 74 TextOutput& operator<<(TextOutput& to, const T& val) 97 TextOutput& operator<<(TextOutput& to, const TypeCode& val); 127 inline TextOutput& operator<<(TextOutput& to, 157 inline TextOutput& endl(TextOutput& to) in endl() 163 inline TextOutput& indent(TextOutput& to) in indent() [all …]
|
H A D | Parcel.h | 55 class TextOutput; variable 528 void print(TextOutput& to, uint32_t flags = 0) const; 1396 inline TextOutput& operator<<(TextOutput& to, const Parcel& parcel)
|
/aosp12/system/libhwbinder/ |
H A D | TextOutput.h | 31 class TextOutput 57 typedef TextOutput& (*TextOutputManipFunc)(TextOutput&); 59 TextOutput& endl(TextOutput& to); 60 TextOutput& indent(TextOutput& to); 61 TextOutput& dedent(TextOutput& to); 64 TextOutput& operator<<(TextOutput& to, const T& val) 87 TextOutput& operator<<(TextOutput& to, const TypeCode& val); 117 inline TextOutput& operator<<(TextOutput& to, 147 inline TextOutput& endl(TextOutput& to) in endl() 153 inline TextOutput& indent(TextOutput& to) in indent() [all …]
|
H A D | TextOutput.cpp | 33 TextOutput::TextOutput() { in TextOutput() function in android::hardware::TextOutput 36 TextOutput::~TextOutput() { in ~TextOutput() 43 ((TextOutput*)cookie)->print(txt, strlen(txt)); in textOutputPrinter() 46 TextOutput& operator<<(TextOutput& to, const TypeCode& val) in operator <<() 65 TextOutput& operator<<(TextOutput& to, const HexDump& val) in operator <<()
|
H A D | Static.cpp | 51 TextOutput& alog(gLogTextOutput);
|
H A D | BufferedTextOutput.h | 29 class BufferedTextOutput : public TextOutput
|
H A D | Android.bp | 67 "TextOutput.cpp",
|
H A D | IPCThreadState.cpp | 125 static const void* printBinderTransactionData(TextOutput& out, const void* data) in printBinderTransactionData() 144 static const void* printReturnCommand(TextOutput& out, const void* _cmd) in printReturnCommand() 205 static const void* printCommand(TextOutput& out, const void* _cmd) in printCommand()
|
H A D | Parcel.cpp | 1649 void Parcel::print(TextOutput& to, uint32_t /*flags*/) const in print()
|
/aosp12/frameworks/native/libs/binder/tests/ |
H A D | binderTextOutputTest.cpp | 58 TEST(TextOutput, HandlesStdEndl) { in TEST() argument 65 TEST(TextOutput, HandlesCEndl) { in TEST() argument 83 TEST(TextOutput, HandleString) { in TEST() argument 87 TEST(TextOutput, HandleNum) { in TEST() argument 91 TEST(TextOutput, HandleBool) { in TEST() argument 95 TEST(TextOutput, HandleChar) { in TEST() argument 99 TEST(TextOutput, HandleParcel) { in TEST() argument 104 TEST(TextOutput, HandleHexDump) { in TEST() argument 116 TEST(TextOutput, HandleTypeCode) { in TEST() argument 121 TEST(TextOutput, HandleCookie) { in TEST() argument [all …]
|
/aosp12/frameworks/native/libs/binder/ |
H A D | TextOutput.cpp | 32 TextOutput::TextOutput() { in TextOutput() function in android::TextOutput 35 TextOutput::~TextOutput() { in ~TextOutput() 42 ((TextOutput*)cookie)->print(txt, strlen(txt)); in textOutputPrinter() 45 TextOutput& operator<<(TextOutput& to, const TypeCode& val) in operator <<() 64 TextOutput& operator<<(TextOutput& to, const HexDump& val) in operator <<()
|
H A D | Static.cpp | 67 TextOutput& alog(*new LogTextOutput()); 68 TextOutput& aout(*new FdTextOutput(STDOUT_FILENO)); 69 TextOutput& aerr(*new FdTextOutput(STDERR_FILENO));
|
H A D | IPCThreadState.cpp | 128 static const void* printBinderTransactionData(TextOutput& out, const void* data) in printBinderTransactionData() 147 static const void* printReturnCommand(TextOutput& out, const void* _cmd) in printReturnCommand() 208 static const void* printCommand(TextOutput& out, const void* _cmd) in printCommand() 696 TextOutput::Bundle _b(alog); in transact() 744 TextOutput::Bundle _b(alog); in transact() 1004 TextOutput::Bundle _b(alog); in talkWithDriver() 1067 TextOutput::Bundle _b(alog); in talkWithDriver() 1255 TextOutput::Bundle _b(alog); in executeCommand() 1321 TextOutput::Bundle _b(alog); in executeCommand()
|
H A D | BufferedTextOutput.h | 27 class BufferedTextOutput : public TextOutput
|
H A D | Android.bp | 121 "TextOutput.cpp",
|
H A D | Parcel.cpp | 2160 void Parcel::print(TextOutput& to, uint32_t /*flags*/) const in print()
|
/aosp12/frameworks/rs/cpp/util/ |
H A D | StrongPointer.h | 31 class TextOutput; variable 32 TextOutput& printStrongPointer(TextOutput& to, const void* val); 116 TextOutput& operator<<(TextOutput& to, const sp<T>& val); 213 inline TextOutput& operator<<(TextOutput& to, const sp<T>& val)
|
H A D | RefBase.h | 34 class TextOutput; variable 35 TextOutput& printWeakPointer(TextOutput& to, const void* val); 289 TextOutput& operator<<(TextOutput& to, const wp<T>& val); 450 inline TextOutput& operator<<(TextOutput& to, const wp<T>& val)
|
/aosp12/frameworks/native/cmds/cmd/ |
H A D | cmd.h | 29 int cmdMain(const std::vector<std::string_view>& argv, android::TextOutput& outputLog, 30 android::TextOutput& errorLog, int in, int out, int err, RunMode runMode);
|
H A D | cmd.cpp | 64 TextOutput& mErrorLog; 67 MyShellCallback(TextOutput& errorLog) : mErrorLog(errorLog) {} in MyShellCallback() 167 int cmdMain(const std::vector<std::string_view>& argv, TextOutput& outputLog, TextOutput& errorLog, in cmdMain()
|
/aosp12/system/libhwbinder/include/hwbinder/ |
H A D | Parcel.h | 52 class TextOutput; variable 263 void print(TextOutput& to, uint32_t flags = 0) const; 315 inline TextOutput& operator<<(TextOutput& to, const Parcel& parcel)
|
/aosp12/packages/modules/adb/daemon/ |
H A D | abb.cpp | 31 class AdbFdTextOutput : public android::TextOutput {
|
/aosp12/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer2/ |
H A D | MpegTsPlayerV2.java | 42 import com.google.android.exoplayer2.text.TextOutput; 59 TextOutput,
|
/aosp12/frameworks/native/include/binder/ |
H A D | Parcel.h | 55 class TextOutput; variable 528 void print(TextOutput& to, uint32_t flags = 0) const; 1396 inline TextOutput& operator<<(TextOutput& to, const Parcel& parcel)
|