Searched refs:unibuf (Results 1 - 6 of 6) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/corefoundation/
H A Dcfstring.cpp667 UniChar *unibuf = new UniChar[ unichars ] ; local
668 converter.FromWChar( (char*)unibuf , unicharbytes , str.wc_str() , str.Length() ) ;
669 m_cfs = CFStringCreateWithCharacters( kCFAllocatorDefault , unibuf , unichars ) ;
670 delete[] unibuf ;
696 UniChar* unibuf = new UniChar[ cflen + 1 ] ; local
697 CFStringGetCharacters( m_cfs , CFRangeMake( 0 , cflen ) , (UniChar*) unibuf ) ;
698 unibuf[cflen] = 0 ;
700 noChars = converter.MB2WC( NULL , (const char*)unibuf , 0 ) ;
703 noChars = converter.MB2WC( buf , (const char*)unibuf , noChars + 1 ) ;
705 delete[] unibuf ;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/classic/
H A Dutils.cpp1121 UniChar *unibuf = new UniChar[ unicharlen / sizeof(UniChar) + 1 ] ; local
1122 converter.WC2MB( (char*)unibuf , str.wc_str() , unicharlen ) ;
1124 unibuf , unicharlen / sizeof(UniChar) ) ;
1125 delete[] unibuf ;
1146 UniChar* unibuf = new UniChar[ cflen + 1 ] ; local
1147 CFStringGetCharacters( m_cfs , CFRangeMake( 0 , cflen ) , (UniChar*) unibuf ) ;
1148 unibuf[cflen] = 0 ;
1150 noChars = converter.MB2WC( NULL , (const char*)unibuf , 0 ) ;
1152 converter.MB2WC( buf , (const char*)unibuf , noChars ) ;
1153 delete[] unibuf ;
[all...]
H A Dtextctrl.cpp671 UniChar *unibuf = (UniChar*) malloc(byteBufferLen) ;
672 converter.WC2MB( (char*) unibuf , st.wc_str() , byteBufferLen ) ;
673 TXNSetData( txn , kTXNUnicodeTextData, (void*)unibuf, byteBufferLen ,
675 free( unibuf ) ;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/
H A Ddc.cpp1478 wxMacUniCharBuffer unibuf( str ) ;
1479 UniCharCount chars = unibuf.GetChars() ;
1481 status = ::ATSUCreateTextLayoutWithTextPtr( unibuf.GetBuffer() , 0 , chars , chars , 1 ,
1607 wxMacUniCharBuffer unibuf( str ) ;
1608 UniCharCount chars = unibuf.GetChars() ;
1610 status = ::ATSUCreateTextLayoutWithTextPtr( unibuf.GetBuffer() , 0 , chars , chars , 1 ,
1685 wxMacUniCharBuffer unibuf( text ) ;
1686 UniCharCount chars = unibuf.GetChars() ;
1688 status = ::ATSUCreateTextLayoutWithTextPtr( unibuf.GetBuffer() , 0 , chars , chars , 1 ,
H A Dtextctrl.cpp2279 UniChar *unibuf = (UniChar*)malloc( byteBufferLen + 2 ) ; // 2 for NUL in UTF-16
2280 converter.WC2MB( (char*)unibuf, st.wc_str(), byteBufferLen + 2 ) ;
2281 TXNSetData( m_txn, kTXNUnicodeTextData, (void*)unibuf, byteBufferLen, start, end ) ;
2282 free( unibuf ) ;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/
H A Drndis_wlan.c903 __le16 *unibuf; local
943 unibuf = (void *)infobuf + sizeof(*infobuf);
945 unibuf[i] = cpu_to_le16(param[i]);
948 unibuf = (void *)infobuf + sizeof(*infobuf) + param_len;
950 unibuf[i] = cpu_to_le16(((u8 *)value)[i]);

Completed in 207 milliseconds