Searched defs:cf_str (Results 1 - 3 of 3) sorted by relevance

/external/lldb/source/Host/macosx/cfcpp/
H A DCFCString.cpp120 CFCString::UTF8 (CFStringRef cf_str, std::string& str) argument
122 if (cf_str)
125 CFIndex max_utf8_str_len = CFStringGetLength (cf_str);
132 if (CFStringGetCString (cf_str, &str[0], str.size(), encoding))
165 CFCString::FileSystemRepresentation (CFStringRef cf_str, std::string& str) argument
167 if (cf_str)
169 CFIndex max_length = ::CFStringGetMaximumSizeOfFileSystemRepresentation (cf_str);
175 if (::CFStringGetFileSystemRepresentation (cf_str, &str[0], str.size()))
/external/lldb/tools/debugserver/source/MacOSX/
H A DCFString.cpp124 CFString::UTF8 (CFStringRef cf_str, std::string& str) argument
126 if (cf_str)
129 CFIndex max_utf8_str_len = CFStringGetLength (cf_str);
136 if (CFStringGetCString (cf_str, &str[0], str.size(), encoding))
154 CFString::FileSystemRepresentation (CFStringRef cf_str, std::string& str) argument
156 if (cf_str)
158 CFIndex max_length = ::CFStringGetMaximumSizeOfFileSystemRepresentation (cf_str);
164 if (::CFStringGetFileSystemRepresentation (cf_str, &str[0], str.size()))
/external/lldb/source/Host/macosx/
H A DSymbols.cpp582 CFStringRef cf_str; local
584 cf_str = (CFStringRef)CFDictionaryGetValue ((CFDictionaryRef) uuid_dict, CFSTR("DBGSymbolRichExecutable"));
585 if (cf_str && CFGetTypeID (cf_str) == CFStringGetTypeID ())
587 if (CFCString::FileSystemRepresentation(cf_str, str))
591 cf_str = (CFStringRef)CFDictionaryGetValue ((CFDictionaryRef) uuid_dict, CFSTR("DBGDSYMPath"));
592 if (cf_str && CFGetTypeID (cf_str) == CFStringGetTypeID ())
594 if (CFCString::FileSystemRepresentation(cf_str, str))
601 cf_str
[all...]

Completed in 1054 milliseconds