Searched refs:ExpandableString (Results 1 – 6 of 6) sorted by relevance
/aosp12/libnativehelper/ |
H A D | ExpandableString.h | 26 struct ExpandableString { struct 32 void ExpandableStringInitialize(struct ExpandableString* s); 35 void ExpandableStringRelease(struct ExpandableString* s); 39 bool ExpandableStringAppend(struct ExpandableString* s, const char* text); 43 bool ExpandableStringAssign(struct ExpandableString*s, const char* text);
|
H A D | ExpandableString.c | 23 void ExpandableStringInitialize(struct ExpandableString *s) { in ExpandableStringInitialize() 27 void ExpandableStringRelease(struct ExpandableString* s) { in ExpandableStringRelease() 32 bool ExpandableStringAppend(struct ExpandableString* s, const char* text) { in ExpandableStringAppend() 45 bool ExpandableStringAssign(struct ExpandableString* s, const char* text) { in ExpandableStringAssign()
|
H A D | JNIHelp.c | 65 static bool AppendJString(JNIEnv* env, jstring text, struct ExpandableString* dst) { in AppendJString() 80 static bool GetExceptionSummary(JNIEnv* env, jthrowable thrown, struct ExpandableString* dst) { in GetExceptionSummary() 150 static bool GetStackTrace(JNIEnv* env, jthrowable thrown, struct ExpandableString* dst) { in GetStackTrace() 188 static void GetStackTraceOrSummary(JNIEnv* env, jthrowable thrown, struct ExpandableString* dst) { in GetStackTraceOrSummary() 228 struct ExpandableString summary; in DiscardPendingException() 337 struct ExpandableString summary; in jniRegisterNativeMethods() 350 struct ExpandableString summary; in jniLogException()
|
H A D | Android.bp | 108 "ExpandableString.c", 181 "ExpandableString.c",
|
/aosp12/libnativehelper/include/nativehelper/ |
H A D | JNIHelp.h | 52 struct [[maybe_unused]] ExpandableString { struct 57 [[maybe_unused]] static void ExpandableStringInitialize(struct ExpandableString* s) { in ExpandableStringInitialize() argument 61 [[maybe_unused]] static void ExpandableStringRelease(struct ExpandableString* s) { in ExpandableStringRelease() 66 [[maybe_unused]] static bool ExpandableStringAppend(struct ExpandableString* s, const char* text) { in ExpandableStringAppend() 113 struct ExpandableString* dst) { in AppendJString() 129 struct ExpandableString* dst) { in GetExceptionSummary() 200 struct ExpandableString* dst) { in GetStackTrace() 239 struct ExpandableString* dst) { in GetStackTraceOrSummary() 279 struct ExpandableString summary; in DiscardPendingException() 378 struct ExpandableString summary; in jniRegisterNativeMethods() [all …]
|
/aosp12/libnativehelper/tests/ |
H A D | ExpandableString_test.cpp | 26 TEST(ExpandableString, InitializeAppendRelease) { in TEST() argument 28 struct ExpandableString s; in TEST() 40 TEST(ExpandableString, InitializeWriteRelease) { in TEST() argument 44 struct ExpandableString s; in TEST() 64 struct ExpandableString expandableString;
|