Searched refs:toString (Results 1 - 25 of 51) sorted by relevance

123

/system/netd/libnetdutils/
H A DSocket.cpp25 StatusOr<std::string> toString(const in6_addr& addr) { function in namespace:android::netdutils
H A DStatus.cpp36 std::string toString(const Status& status) { function in namespace:android::netdutils
H A DSlice.cpp34 std::string toString(const Slice s) { function in namespace:android::netdutils
/system/netd/libnetdutils/include/netdutils/
H A DSocket.h39 StatusOr<std::string> toString(const in6_addr& addr);
H A DStatus.h85 std::string toString(const Status& status);
/system/tools/hidl/c2hal/
H A DExpression.cpp92 virtual std::string toString(StringHelper::Case atomCase) { function in struct:android::ParenthesizedExpression
93 return "(" + mInner->toString(atomCase) + ")";
120 virtual std::string toString(StringHelper::Case atomCase) { function in struct:android::AtomExpression
144 virtual std::string toString(StringHelper::Case atomCase) { function in struct:android::UnaryExpression
145 return mOp + mRhs->toString(atomCase);
167 virtual std::string toString(StringHelper::Case atomCase) { function in struct:android::BinaryExpression
168 return mLhs->toString(atomCase) + " " + mOp + " " + mRhs->toString(atomCase);
192 virtual std::string toString(StringHelper::Case atomCase) { function in struct:android::TernaryExpression
193 return mLhs->toString(atomCas
215 virtual std::string toString(StringHelper::Case atomCase) { function in struct:android::ArraySubscript
242 virtual std::string toString(StringHelper::Case atomCase) { function in struct:android::FunctionCall
[all...]
H A DEnumVarDeclaration.cpp47 out << " = " << mExpression->toString(StringHelper::kUpperSnakeCase);
/system/tools/aidl/tests/java_app/src/android/aidl/tests/
H A DNullableTests.java45 "null parameter, but got " + ex.toString());
61 "but got " + ex.toString());
78 "but got " + ex.toString());
97 ex.toString());
H A DTestServiceClient.java185 mLog.log(ex.toString());
348 mLog.log(ex.toString());
371 mLog.log(ex.toString());
394 mLog.log(ex.toString());
410 mLog.log(input.toString() + " != " + out_param.toString());
414 mLog.log(input.toString() + " != " + returned.toString());
438 mLog.log(input[i].toString() + " != " +
439 reversed[k].toString());
[all...]
H A DSimpleParcelable.java59 public String toString() { method in class:SimpleParcelable
/system/netd/server/
H A DUidRanges.h38 std::string toString() const;
H A DNetwork.h54 std::string toString() const;
H A DWakeupController.cpp65 prefix = toString(take(payload, payload.size() - 1));
112 ALOGE("%s", toString(s).c_str());
H A DNetwork.cpp58 std::string Network::toString() const { function in class:android::net::Network
/system/core/include/utils/
H A DCallStack.h58 String8 toString(const char* prefix = 0) const;
H A DProcessCallStack.h52 String8 toString(const char* prefix = 0) const;
/system/core/libutils/include/utils/
H A DCallStack.h58 String8 toString(const char* prefix = 0) const;
H A DProcessCallStack.h52 String8 toString(const char* prefix = 0) const;
/system/timezone/distro/core/src/main/com/android/timezone/distro/
H A DStagedDistroOperation.java72 public String toString() { method in class:StagedDistroOperation
/system/tools/aidl/tests/
H A Dsimple_parcelable.cpp50 std::string SimpleParcelable::toString() const { function in class:android::aidl::tests::SimpleParcelable
H A Dsimple_parcelable.h51 std::string toString() const;
/system/libhidl/base/include/hidl/
H A DHidlSupport.h833 ///////////////////// toString functions
835 std::string toString(const void *t);
837 // toString alias for numeric types
839 inline std::string toString(T t) { function in namespace:android
868 return std::string{"["} + toString(SIZE1) + "]";
873 return std::string{"["} + toString(SIZE1) + "]" + arraySizeToString<SIZE2, SIZES...>();
877 std::string toString(details::const_accessor<T, SIZE1> a) { function in namespace:android::details
883 using android::hardware::toString;
890 os += toString(a[i]);
897 std::string toString(detail function in namespace:android::details
903 inline std::string toString(const void *t) { function in namespace:android
908 inline std::string toString(const hidl_string &hs) { function in namespace:android
913 inline std::string toString(const hidl_handle &hs) { function in namespace:android
917 inline std::string toString(const hidl_memory &mem) { function in namespace:android
923 inline std::string toString(const sp<hidl_death_recipient> &dr) { function in namespace:android
929 std::string toString(const hidl_vec<T> &a) { function in namespace:android
937 std::string toString(const hidl_array<T, SIZE1> &a) { function in namespace:android
943 std::string toString(const hidl_array<T, SIZE1, SIZE2, SIZES...> &a) { function in namespace:android
[all...]
H A DMQDescriptor.h262 std::string toString(const MQDescriptor<T, flavor> &q) { function in namespace:android::hardware
271 + toString(q.grantors().size()) + " grantor(s), "
272 + "size = " + toString(q.getSize())
273 + ", .handle = " + toString(q.handle())
274 + ", .quantum = " + toString(q.getQuantum()) + "}";
/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
H A DHidlTestJava.java586 Expect(e.toString(),
596 e.multidimArray[i][j] = Integer.toString(i) + Integer.toString(j);
600 Expect(e.toString(),
605 Expect(IBaz.BitField.toString(IBaz.BitField.VALL), "VALL");
606 Expect(IBaz.BitField.toString((byte)(IBaz.BitField.V0 | IBaz.BitField.V2)), "0x5");
611 Expect(proxy.toString(), IBaz.kInterfaceName + "@Proxy");
628 throw new RuntimeException("Failed at call #" + Integer.toString(i), ex);
662 Log.d(TAG, "Baz someOtherBaseMethod " + foo.toString());
667 Log.d(TAG, "Baz someMethodWithFooArrays " + fooInput.toString());
[all...]
/system/core/libutils/
H A DCallStack.cpp64 String8 CallStack::toString(const char* prefix) const { function in class:android::CallStack

Completed in 310 milliseconds

123