Searched refs:cf_str (Results 1 - 3 of 3) sorted by last modified time

/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFileMacOSX.cpp312 CFStringRef cf_str; local
315 cf_str = (CFStringRef)CFDictionaryGetValue(
317 if (cf_str && CFGetTypeID(cf_str) == CFStringGetTypeID()) {
318 if (CFCString::FileSystemRepresentation(cf_str, str)) {
329 cf_str = (CFStringRef)CFDictionaryGetValue((CFDictionaryRef)uuid_dict,
331 if (cf_str && CFGetTypeID(cf_str) == CFStringGetTypeID()) {
332 if (CFCString::FileSystemRepresentation(cf_str, str)) {
344 cf_str
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/
H A DCFString.h22 CFString(CFStringRef cf_str = NULL);
34 static const char *UTF8(CFStringRef cf_str, std::string &str);
35 static const char *FileSystemRepresentation(CFStringRef cf_str,
H A DCFString.cpp92 const char *CFString::UTF8(CFStringRef cf_str, std::string &str) { argument
93 if (cf_str) {
95 CFIndex max_utf8_str_len = CFStringGetLength(cf_str);
101 if (CFStringGetCString(cf_str, &str[0], str.size(), encoding)) {
117 const char *CFString::FileSystemRepresentation(CFStringRef cf_str, argument
119 if (cf_str) {
121 ::CFStringGetMaximumSizeOfFileSystemRepresentation(cf_str);
125 if (::CFStringGetFileSystemRepresentation(cf_str, &str[0],

Completed in 252 milliseconds