Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp103 std::string apiName; in RetrieveReportData() local
105 target.ReadCStringFromMemory(apiname_ptr, apiName, read_error); in RetrieveReportData()
111 if (apiName.substr(0, 2) == "-[") { in RetrieveReportData()
112 size_t spacePos = apiName.find(' '); in RetrieveReportData()
114 className = apiName.substr(2, spacePos - 2); in RetrieveReportData()
115 selector = apiName.substr(spacePos + 1, apiName.length() - spacePos - 2); in RetrieveReportData()
140 d->AddStringItem("api_name", apiName); in RetrieveReportData()
144 apiName + " must be used from main thread only"); in RetrieveReportData()