/aoo41x/main/setup_native/source/win32/customactions/shellextensions/ |
H A D | completeinstallpath.cxx | 59 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() local 60 ZeroMemory( buffer, nBytes ); in GetMsiProperty() 61 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty() 62 result = buffer; in GetMsiProperty()
|
H A D | postuninstall.cxx | 57 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() local 58 ZeroMemory( buffer, nBytes ); in GetMsiProperty() 59 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty() 60 result = buffer; in GetMsiProperty()
|
H A D | dotnetcheck.cxx | 61 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() local 62 ZeroMemory( buffer, nBytes ); in GetMsiProperty() 63 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty() 64 result = buffer; in GetMsiProperty()
|
H A D | layerlinks.cxx | 61 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() local 62 ZeroMemory( buffer, nBytes ); in GetMsiProperty() 63 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty() 64 result = buffer; in GetMsiProperty()
|
H A D | registerextensions.cxx | 175 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() local 176 ZeroMemory( buffer, nBytes ); in GetMsiProperty() 177 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty() 178 result = buffer; in GetMsiProperty()
|
/aoo41x/main/l10ntools/source/ |
H A D | inireader.cxx | 142 char* buffer = new char[ str.length()*3 ]; in toStlString() local 143 str.extract( 0 , str.length() , buffer ); in toStlString() 144 stl_str = string( buffer ); in toStlString() 145 delete [] buffer; in toStlString()
|
/aoo41x/main/setup_native/source/win32/customactions/languagepacks/ |
H A D | respintest.cxx | 61 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() local 62 ZeroMemory( buffer, nBytes ); in GetMsiProperty() 63 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty() 64 result = buffer; in GetMsiProperty()
|
/aoo41x/main/sal/osl/unx/ |
H A D | module.c | 57 char buffer[PATH_MAX]; in osl_loadModule() local 59 if (UnicodeToText(buffer, PATH_MAX, ustrTmp->buffer, ustrTmp->length)) in osl_loadModule() 60 pModule = osl_loadAsciiModule(buffer, nRtldMode); in osl_loadModule()
|
/aoo41x/main/setup_native/source/win32/customactions/relnotes/ |
H A D | relnotes.cxx | 45 TCHAR buffer[1024]; in OutputDebugStringFormat() local 49 StringCchVPrintf( buffer, sizeof(buffer), pFormat, args ); in OutputDebugStringFormat() 50 OutputDebugString( buffer ); in OutputDebugStringFormat()
|
/aoo41x/main/codemaker/test/cppumaker/ |
H A D | test_codemaker_cppumaker.cxx | 393 explicit Guard(void * buffer): in Guard() 394 p(new(buffer) test::codemaker::cppumaker::BigStruct) {} in Guard() 404 boost::scoped_array< char > buffer( in testBigStruct() local 409 buffer[i] = '\x56'; in testBigStruct() 411 Guard guard(buffer.get()); in testBigStruct()
|
/aoo41x/main/binaryurp/source/ |
H A D | writer.cxx | 423 void Writer::sendMessage(std::vector< unsigned char > const & buffer) { in sendMessage() argument 425 if (buffer.size() > SAL_MAX_UINT32) { in sendMessage() 431 Marshal::write32(&header, static_cast< sal_uInt32 >(buffer.size())); in sendMessage() 433 OSL_ASSERT(!buffer.empty()); in sendMessage() 434 unsigned char const * p = &buffer[0]; in sendMessage() 435 std::vector< unsigned char >::size_type n = buffer.size(); in sendMessage()
|
H A D | unmarshal.cxx | 74 std::vector< BinaryAny >::iterator const & it, void * buffer) throw () in copyMemberValues() argument 80 buffer != 0); in copyMemberValues() 88 buffer); in copyMemberValues() 92 static_cast< char * >(buffer) + ctd->pMemberOffsets[j], in copyMemberValues() 104 css::uno::Sequence< sal_Int8 > const & buffer): in Unmarshal() 105 bridge_(bridge), state_(state), buffer_(buffer) in Unmarshal()
|
/aoo41x/main/odk/examples/cpp/remoteclient/ |
H A D | remoteclient.cxx | 158 printf( "%s\n", o.pData->buffer ); in run() 164 printf( "%s\n", o.pData->buffer ); in run() 170 printf( "%s\n", o.pData->buffer ); in run() 176 printf( "%s\n", o.pData->buffer ); in run()
|
/aoo41x/test/testuno/source/testlib/uno/ |
H A D | TestUtil.java | 175 StringBuffer buffer = new StringBuffer(); in connectByOperator() local 178 buffer.append(number[i]); in connectByOperator() 180 buffer.append(operator); in connectByOperator() 183 return buffer.toString(); in connectByOperator()
|
/aoo41x/main/framework/source/fwe/xml/ |
H A D | saxnamespacefilter.cxx | 182 char buffer[32]; in getErrorLineString() local 186 …snprintf( buffer, sizeof(buffer), "Line: %ld - ", static_cast<long>( m_xLocator->getLineNumber() )… in getErrorLineString() 187 return ::rtl::OUString::createFromAscii( buffer ); in getErrorLineString()
|
/aoo41x/main/odk/examples/DevelopersGuide/UCB/ |
H A D | DataStreamRetriever.java | 156 byte[][] buffer = new byte[ 1 ][ 65536 ]; in printStream() 157 int read = data.readSomeBytes( buffer, 65536 ); in printStream() 163 bytes[ i ] = buffer[ 0 ][ i ]; in printStream() 168 read = data.readSomeBytes( buffer, 65536 ); in printStream()
|
/aoo41x/main/stoc/test/uriproc/ |
H A D | test_uriproc.cxx | 68 rtl::OUStringBuffer & buffer, T const & value) in append() argument 70 buffer.append(value); in append() 73 template<> void append(rtl::OUStringBuffer & buffer, bool const & value) { in append() argument 74 buffer.append(static_cast< sal_Bool >(value)); in append() 77 template<> void append(rtl::OUStringBuffer & buffer, std::size_t const & value) in append() argument 79 buffer.append(static_cast< sal_Int32 >(value)); in append() 82 template<> void append(rtl::OUStringBuffer & buffer, char const * const & value) in append() argument 84 buffer.appendAscii(value); in append()
|
/aoo41x/main/writerfilter/qa/cppunittests/odiapi/ |
H A D | ExternalViewLogger.cxx | 30 #define SNPRINTF(buffer, size, format, args) _snprintf(buffer, size, format, args) argument 32 #define SNPRINTF(buffer, size, format, args) snprintf(buffer, size, format, args) argument
|
/aoo41x/main/xmlscript/source/xmlflat_imexp/ |
H A D | xmlbas_import.cxx | 243 … ::rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in startChildElement() 248 … ::rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in startChildElement() 289 … ::rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in startChildElement() 334 ::rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in BasicEmbeddedLibraryElement() 489 ::rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in endElement() 494 ::rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in endElement() 499 ::rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in endElement()
|
/aoo41x/main/solenv/bin/ |
H A D | sort.pl | 38 my @buffer; 41 push(@buffer, $_); 44 foreach (sort @buffer) {
|
/aoo41x/main/scripting/source/storage/ |
H A D | ScriptInfo.cxx | 224 …>\n",::rtl::OUStringToOString(m_scriptData.parcelURI , RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in ScriptInfo() 326 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in getFileSetNames() 343 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in getFilesInFileSet() 354 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in getFilesInFileSet() 363 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in getFilesInFileSet()
|
/aoo41x/main/svx/workben/msview/ |
H A D | msview.cxx | 701 char buffer[1024]; in InsertAtom() local 711 sprintf( buffer, "unknown_0x%04x", rHeader.nRecType ); in InsertAtom() 712 aText += rtl::OUString::createFromAscii( buffer ); in InsertAtom() 715 sprintf( buffer, " (I: %lu L: %lu)", (UINT32)rHeader.nRecVer, (UINT32)rHeader.nRecLen ); in InsertAtom() 716 aText += String( rtl::OUString::createFromAscii( buffer ) ); in InsertAtom() 971 char buffer[512]; in GetAtomText() local 972 sprintf( buffer, "Version = %lu\n\rInstance = %lu\n\rVersionInstance = %lu\n\rLength = %lu\n\r", in GetAtomText() 977 aText = rtl::OUString::createFromAscii( buffer ); in GetAtomText()
|
/aoo41x/main/sal/workben/ |
H A D | t_random.c | 53 unsigned char buffer[1000]; in main() local 55 rtl_random_getBytes (pool, buffer, 8); in main() 56 printf ("random: %s\n", pt (buffer, 8)); in main()
|
/aoo41x/main/cpputools/source/registercomponent/ |
H A D | registercomponent.cxx | 432 char *buffer = ( char * )rtl_allocateMemory( nLen +1 ); in parseOptions() local 433 if( ! buffer ) in parseOptions() 447 while ( fscanf(cmdFile, "%s", buffer) != EOF ) in parseOptions() 449 rargv[rargc]= (char * )rtl_allocateMemory( strlen( buffer ) +1 ); in parseOptions() 460 strcpy( rargv[rargc] , buffer ); // #100211# - checked in parseOptions() 471 rtl_freeMemory( buffer ); in parseOptions()
|
/aoo41x/main/i18nutil/source/utility/ |
H A D | widthfolding.cxx | 65 sal_Unicode* dst = newStr->buffer; in decompose_ja_voiced_sound_marks() 93 newStr->length = sal_Int32(dst - newStr->buffer); in decompose_ja_voiced_sound_marks() 117 sal_Unicode* dst = newStr->buffer; in compose_ja_voiced_sound_marks() 196 newStr->length = sal_Int32(dst - newStr->buffer); in compose_ja_voiced_sound_marks()
|