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

/external/chromium_org/third_party/webrtc/base/
H A Dmacconversion.cc19 const CFStringRef cfstr, std::string& cppstr) {
23 if (NULL != cfstr) {
26 if (CFGetTypeID(cfstr) == CFStringGetTypeID()) {
28 // (The cfstr owns this buffer; it came from somewhere else,
29 // so someone else gets to take care of getting rid of the cfstr,
31 unsigned length = CFStringGetLength(cfstr);
33 if (CFStringGetCString(cfstr, buf, 1 + length, kCFStringEncodingASCII)) {
18 p_convertHostCFStringRefToCPPString( const CFStringRef cfstr, std::string& cppstr) argument

Completed in 72 milliseconds