reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-objdump/MachODump.cpp
 3152   unsigned int Arch = info->O->getArch();
 3155       if (info->selector_name != nullptr) {
 3156         if (info->class_name != nullptr) {
 3157           info->method = std::make_unique<char[]>(
 3158               5 + strlen(info->class_name) + strlen(info->selector_name));
 3158               5 + strlen(info->class_name) + strlen(info->selector_name));
 3159           char *method = info->method.get();
 3162             strcat(method, info->class_name);
 3164             strcat(method, info->selector_name);
 3170           info->method =
 3171               std::make_unique<char[]>(9 + strlen(info->selector_name));
 3172           char *method = info->method.get();
 3180             strcat(method, info->selector_name);
 3186         info->class_name = nullptr;
 3189       if (info->selector_name != nullptr) {
 3190         info->method =
 3191             std::make_unique<char[]>(17 + strlen(info->selector_name));
 3192         char *method = info->method.get();
 3200           strcat(method, info->selector_name);
 3205         info->class_name = nullptr;