Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Symbol/
H A DLocateSymbolFileMacOSX.cpp338 CFStringRef cf_str; in GetModuleSpecInfoFromUUIDDictionary() local
343 if (cf_str && CFGetTypeID(cf_str) == CFStringGetTypeID()) { in GetModuleSpecInfoFromUUIDDictionary()
344 if (CFCString::FileSystemRepresentation(cf_str, str)) { in GetModuleSpecInfoFromUUIDDictionary()
349 cf_str = (CFStringRef)CFDictionaryGetValue( in GetModuleSpecInfoFromUUIDDictionary()
351 if (cf_str && CFGetTypeID(cf_str) == CFStringGetTypeID()) { in GetModuleSpecInfoFromUUIDDictionary()
352 if (CFCString::FileSystemRepresentation(cf_str, str)) { in GetModuleSpecInfoFromUUIDDictionary()
363 if (cf_str && CFGetTypeID(cf_str) == CFStringGetTypeID()) { in GetModuleSpecInfoFromUUIDDictionary()
364 if (CFCString::FileSystemRepresentation(cf_str, str)) { in GetModuleSpecInfoFromUUIDDictionary()
393 if (cf_str && CFGetTypeID(cf_str) == CFStringGetTypeID()) { in GetModuleSpecInfoFromUUIDDictionary()
471 if (cf_str && CFGetTypeID(cf_str) == CFStringGetTypeID()) { in GetModuleSpecInfoFromUUIDDictionary()
[all …]
/llvm-project-15.0.7/lldb/source/Host/macosx/cfcpp/
H A DCFCString.cpp89 const char *CFCString::UTF8(CFStringRef cf_str, std::string &str) { in UTF8() argument
90 if (cf_str) { in UTF8()
92 CFIndex max_utf8_str_len = CFStringGetLength(cf_str); in UTF8()
98 if (CFStringGetCString(cf_str, &str[0], str.size(), encoding)) { in UTF8()
126 const char *CFCString::FileSystemRepresentation(CFStringRef cf_str, in FileSystemRepresentation() argument
128 if (cf_str) { in FileSystemRepresentation()
130 ::CFStringGetMaximumSizeOfFileSystemRepresentation(cf_str); in FileSystemRepresentation()
134 if (::CFStringGetFileSystemRepresentation(cf_str, &str[0], in FileSystemRepresentation()
H A DCFCString.h19 CFCString(CFStringRef cf_str = NULL);
31 static const char *UTF8(CFStringRef cf_str, std::string &str);
32 static const char *FileSystemRepresentation(CFStringRef cf_str,
H A DCFCMutableDictionary.cpp417 CFCString cf_str(cstr, kCFStringEncodingUTF8); in AddValueCString() local
418 if (cf_str.get()) { in AddValueCString()
420 ::CFDictionaryAddValue(dict, key, cf_str.get()); in AddValueCString()
431 CFCString cf_str(cstr, kCFStringEncodingUTF8); in SetValueCString() local
432 if (cf_str.get()) { in SetValueCString()
434 ::CFDictionarySetValue(dict, key, cf_str.get()); in SetValueCString()
H A DCFCMutableArray.cpp106 CFCString cf_str(s, encoding); in AppendCStringAsCFString() local
107 ::CFArrayAppendValue(array, cf_str.get()); in AppendCStringAsCFString()
/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A DCFString.cpp93 const char *CFString::UTF8(CFStringRef cf_str, std::string &str) { in UTF8() argument
94 if (cf_str) { in UTF8()
96 CFIndex max_utf8_str_len = CFStringGetLength(cf_str); in UTF8()
102 if (CFStringGetCString(cf_str, &str[0], str.size(), encoding)) { in UTF8()
118 const char *CFString::FileSystemRepresentation(CFStringRef cf_str, in FileSystemRepresentation() argument
120 if (cf_str) { in FileSystemRepresentation()
122 ::CFStringGetMaximumSizeOfFileSystemRepresentation(cf_str); in FileSystemRepresentation()
126 if (::CFStringGetFileSystemRepresentation(cf_str, &str[0], in FileSystemRepresentation()
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,