HomeSort by relevance Sort by last modified time
    Searched refs:cf_str (Results 1 - 7 of 7) sorted by null

  /external/lldb/source/Host/macosx/cfcpp/
CFCString.h 23 CFCString (CFStringRef cf_str = NULL);
35 static const char *UTF8 (CFStringRef cf_str, std::string& str);
36 static const char *FileSystemRepresentation (CFStringRef cf_str, std::string& str);
CFCString.cpp 114 // Static function that puts a copy of the UTF8 contents of CF_STR into STR
120 CFCString::UTF8 (CFStringRef cf_str, std::string& str)
122 if (cf_str)
125 CFIndex max_utf8_str_len = CFStringGetLength (cf_str);
132 if (CFStringGetCString (cf_str, &str[0], str.size(), encoding))
158 // Static function that puts a copy of the file system representation of CF_STR
165 CFCString::FileSystemRepresentation (CFStringRef cf_str, std::string& str)
167 if (cf_str)
169 CFIndex max_length = ::CFStringGetMaximumSizeOfFileSystemRepresentation (cf_str);
175 if (::CFStringGetFileSystemRepresentation (cf_str, &str[0], str.size())
    [all...]
CFCMutableArray.cpp 140 CFCString cf_str (s, encoding);
141 ::CFArrayAppendValue (array, cf_str.get());
CFCMutableDictionary.cpp 478 CFCString cf_str(cstr, kCFStringEncodingUTF8);
479 if (cf_str.get())
482 ::CFDictionaryAddValue (dict, key, cf_str.get());
495 CFCString cf_str(cstr, kCFStringEncodingUTF8);
496 if (cf_str.get())
499 ::CFDictionarySetValue (dict, key, cf_str.get());
  /external/lldb/tools/debugserver/source/MacOSX/
CFString.h 26 CFString (CFStringRef cf_str = NULL);
38 static const char *UTF8 (CFStringRef cf_str, std::string& str);
39 static const char *FileSystemRepresentation (CFStringRef cf_str, std::string& str);
CFString.cpp 118 // Static function that puts a copy of the UTF8 contents of CF_STR into STR
124 CFString::UTF8 (CFStringRef cf_str, std::string& str)
126 if (cf_str)
129 CFIndex max_utf8_str_len = CFStringGetLength (cf_str);
136 if (CFStringGetCString (cf_str, &str[0], str.size(), encoding))
147 // Static function that puts a copy of the file system representation of CF_STR
154 CFString::FileSystemRepresentation (CFStringRef cf_str, std::string& str)
156 if (cf_str)
158 CFIndex max_length = ::CFStringGetMaximumSizeOfFileSystemRepresentation (cf_str);
164 if (::CFStringGetFileSystemRepresentation (cf_str, &str[0], str.size())
    [all...]
  /external/lldb/source/Host/macosx/
Symbols.cpp 582 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 = (CFStringRef)CFDictionaryGetValue ((CFDictionaryRef) uuid_dict, CFSTR("DBGArchitecture"))
    [all...]

Completed in 582 milliseconds