Home
last modified time | relevance | path

Searched refs:InternalStatus (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/libcxxabi/src/
H A Dcxa_demangle.cpp387 int InternalStatus = demangle_success; in __cxa_demangle() local
394 InternalStatus = demangle_invalid_mangled_name; in __cxa_demangle()
396 InternalStatus = demangle_memory_alloc_failure; in __cxa_demangle()
407 *Status = InternalStatus; in __cxa_demangle()
408 return InternalStatus == demangle_success ? Buf : nullptr; in __cxa_demangle()
/llvm-project-15.0.7/llvm/lib/Demangle/
H A DItaniumDemangle.cpp376 int InternalStatus = demangle_success; in itaniumDemangle() local
383 InternalStatus = demangle_invalid_mangled_name; in itaniumDemangle()
385 InternalStatus = demangle_memory_alloc_failure; in itaniumDemangle()
396 *Status = InternalStatus; in itaniumDemangle()
397 return InternalStatus == demangle_success ? Buf : nullptr; in itaniumDemangle()
H A DMicrosoftDemangle.cpp2364 int InternalStatus = demangle_success; in microsoftDemangle() local
2366 InternalStatus = demangle_invalid_mangled_name; in microsoftDemangle()
2368 InternalStatus = demangle_memory_alloc_failure; in microsoftDemangle()
2378 *Status = InternalStatus; in microsoftDemangle()
2379 return InternalStatus == demangle_success ? Buf : nullptr; in microsoftDemangle()