/aoo41x/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/ |
H A D | OfficeDocument.java | 1148 StringBuffer buffer = new StringBuffer(); in hack() local 1158 buffer.append(str.substring(0, sIndex)); in hack() 1164 buffer.append(str.substring(eIndex + 1, str.length())); in hack() 1166 buffer.append("\n"); in hack() 1175 buffer.append(str.substring(eIndex+1)); in hack() 1177 buffer.append("\n"); in hack() 1188 buffer.append(str); in hack() 1190 buffer.append("\n"); in hack() 1194 StringReader r = new StringReader(buffer.toString()); in hack()
|
/aoo41x/main/sal/qa/osl/process/ |
H A D | osl_process_child.cxx | 82 char buffer[32767]; in dump_env() local 85 w_to_a(p, buffer, sizeof(buffer)); in dump_env() 86 file << buffer << std::endl; in dump_env()
|
/aoo41x/main/bridges/source/cpp_uno/gcc3_netbsd_intel/ |
H A D | cpp2uno.cxx | 445 void * buffer; in get_vtable() local 456 buffer = ::rtl_allocateMemory( ((2+ nSlots) * sizeof (void *)) + (nSlots *20) ); in get_vtable() 459 m_map.insert( t_classdata_map::value_type( unoName, buffer ) ) ); in get_vtable() 462 void ** slots = (void **)buffer; in get_vtable() 505 buffer = iFind->second; in get_vtable() 509 return ((void **)buffer +2); in get_vtable()
|
/aoo41x/main/setup_native/source/win32/customactions/shellextensions/ |
H A D | checkdirectory.cxx | 62 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() local 63 ZeroMemory( buffer, nBytes ); in GetMsiProperty() 64 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty() 65 result = buffer; in GetMsiProperty()
|
H A D | startmenuicon.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 | copyextensiondata.cxx | 64 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() local 65 ZeroMemory( buffer, nBytes ); in GetMsiProperty() 66 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty() 67 result = buffer; in GetMsiProperty()
|
H A D | migrateinstallpath.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()
|
/aoo41x/main/jurt/source/pipe/wrapper/ |
H A D | wrapper.c | 75 JNIEnv * env, jobject obj_this, jobjectArray buffer, jint len) in Java_com_sun_star_lib_connections_pipe_PipeConnection_readJNI() argument 78 getFunction("PipeConnection_read"))(env, obj_this, buffer, len); in Java_com_sun_star_lib_connections_pipe_PipeConnection_readJNI() 83 JNIEnv * env, jobject obj_this, jbyteArray buffer) in Java_com_sun_star_lib_connections_pipe_PipeConnection_writeJNI() argument 86 getFunction("PipeConnection_write"))(env, obj_this, buffer); in Java_com_sun_star_lib_connections_pipe_PipeConnection_writeJNI()
|
/aoo41x/main/cli_ure/source/uno_bridge/ |
H A D | cli_environment.h | 54 System::Text::StringBuilder* buffer = new System::Text::StringBuilder(256); in Cli_environment() local 56 buffer->Append(S";cli[0];"); in Cli_environment() 57 buffer->Append(gd.ToString()); in Cli_environment() 58 sOidPart = buffer->ToString(); in Cli_environment()
|
/aoo41x/main/xmerge/source/palmtests/qa/comparator/ |
H A D | XmlZipExtract.java | 130 byte[] buffer = new byte[BUFFER_SIZE]; in readStream() 132 while ((eof = bis.read(buffer, 0, buffer.length)) > 0) { in readStream() 133 baos.write(buffer, 0, eof); in readStream()
|
/aoo41x/main/libxml2/ |
H A D | 50f06b3efb638efb0abd95dc62dca05ae67882c2.patch | 26 + * xmlEncodeEntitiesReentrant assumes valid UTF-8, but the buffer might 30 + memset(&buffer[sizeof(buffer)-4], 0, 4); 31 result = (char *) xmlEncodeEntitiesReentrant(NULL, BAD_CAST buffer);
|
/aoo41x/main/libxmlsec/ |
H A D | xmlsec1-nssmangleciphers.patch | 425 - /* copy iv to our buffer*/ 564 - /* we want to have the last block in the input buffer 598 - /* set correct output buffer size */ 753 - "padding=%d;buffer=%d", 763 - /* set correct output buffer size */ 963 - xmlSecBufferPtr buffer; 1002 - xmlSecAssert2(buffer != NULL, -1); 1006 - if(xmlSecBufferGetSize(buffer) < ctx->keySize) { 1014 - xmlSecBufferGetSize(buffer), ctx->keySize); 1021 - xmlSecAssert2(xmlSecBufferGetData(buffer) != NULL, -1); [all …]
|
/aoo41x/main/sal/inc/rtl/ |
H A D | ustrbuf.hxx | 240 pData->buffer[newLength] = 0; in setLength() 261 return pData->buffer[ index ]; in charAt() 267 operator const sal_Unicode *() const { return pData->buffer; } 272 const sal_Unicode* getStr() const { return pData->buffer; } in getStr() 288 pData->buffer[ index ] = ch; in setCharAt()
|
/aoo41x/main/sal/osl/unx/ |
H A D | system.h | 478 struct passwd *getpwent_r(struct passwd *pwd, char *buffer, int buflen); 480 char *buffer, int buflen); 482 struct tm *localtime_r(const time_t *timep, struct tm *buffer); 483 struct tm *gmtime_r(const time_t *timep, struct tm *buffer); 487 char *buffer, int buflen, int *h_errnop);
|
/aoo41x/main/bridges/source/cpp_uno/shared/ |
H A D | component.cxx | 206 …pCppEnv->pTypeName->buffer, rtl_str_getLength(CPPU_CURRENT_LANGUAGE_BINDING_NAME), CPPU_CURRENT_LA… in uno_initEnvironment() 231 from_envTypeName.pData->buffer, in uno_ext_getMapping() 234 to_envTypeName.pData->buffer, UNO_LB_UNO )) in uno_ext_getMapping() 245 to_envTypeName.pData->buffer, in uno_ext_getMapping() 248 from_envTypeName.pData->buffer, UNO_LB_UNO )) in uno_ext_getMapping()
|
/aoo41x/main/l10ntools/source/ |
H A D | treeconfig.cxx | 122 char buffer[64000]; in getCurrentDir() local 123 if( getcwd( buffer , sizeof( buffer ) ) == 0 ){ in getCurrentDir() 127 dir = string( buffer ); in getCurrentDir()
|
H A D | export2.cxx | 648 char buffer[64000]; in getCurrentDir() local 649 if( getcwd( buffer , sizeof( buffer ) ) == 0 ){ in getCurrentDir() 653 dir = string( buffer ); in getCurrentDir() 668 char buffer[RAND_NAME_LENGTH]; in getRandomName() local 684 buffer[i] = LETTERS[v % COUNT_OF_LETTERS]; in getRandomName() 688 sRandStr.Append( buffer , RAND_NAME_LENGTH ); in getRandomName()
|
/aoo41x/main/oox/source/core/ |
H A D | relationshandler.cxx | 105 rtl::OUStringBuffer buffer; in removeDuplicateSlashes() local 115 buffer.append( sal_Unicode( '/' ) ); in removeDuplicateSlashes() 121 buffer.append( ch ); in removeDuplicateSlashes() 124 return buffer.makeStringAndClear(); in removeDuplicateSlashes()
|
/aoo41x/main/sal/osl/os2/ |
H A D | system.h | 497 struct passwd *getpwent_r(struct passwd *pwd, char *buffer, int buflen); 499 char *buffer, int buflen); 501 struct tm *localtime_r(const time_t *timep, struct tm *buffer); 502 struct tm *gmtime_r(const time_t *timep, struct tm *buffer); 505 char *buffer, int buflen, int *h_errnop);
|
H A D | process_impl.cxx | 350 char buffer[PATH_MAX]; in osl_getProcessWorkingDir() local 354 if (getcwd (buffer, sizeof(buffer)) != 0) in osl_getProcessWorkingDir() 360 buffer, strlen(buffer), osl_getThreadTextEncoding(), in osl_getProcessWorkingDir()
|
/aoo41x/main/tools/source/fsys/ |
H A D | unx.cxx | 107 char* buffer = (char *)malloc( bufsize * sizeof(char) ); in GetMountEntry() local 108 if (mntctl (MCTL_QUERY, bufsize, buffer) != -1) in GetMountEntry() 109 for ( char* vmt = buffer; in GetMountEntry() 110 vmt < buffer + bufsize; in GetMountEntry() 125 free( buffer ); in GetMountEntry() 129 free( buffer ); in GetMountEntry()
|
/aoo41x/main/setup_native/source/win32/customactions/patch/ |
H A D | swappatchfiles.cxx | 59 _TCHAR buffer[1024]; in OutputDebugStringFormat() local 63 _vsntprintf( buffer, elementsof(buffer), pFormat, args ); in OutputDebugStringFormat() 64 OutputDebugString( buffer ); in OutputDebugStringFormat() 81 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() local 82 ZeroMemory( buffer, nBytes ); in GetMsiProperty() 83 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty() 84 result = buffer; in GetMsiProperty()
|
/aoo41x/main/setup_native/source/win32/customactions/tools/ |
H A D | checkversion.cxx | 65 TCHAR buffer[1024]; in OutputDebugStringFormat() local 69 StringCchVPrintf( buffer, sizeof(buffer), pFormat, args ); in OutputDebugStringFormat() 70 OutputDebugString( buffer ); in OutputDebugStringFormat()
|
/aoo41x/main/dbaccess/source/ui/control/ |
H A D | tabletree.cxx | 578 ::rtl::OUStringBuffer buffer; in describeObject() 583 buffer.append( GetEntryText( pParent ) ); in describeObject() 584 buffer.append( sal_Unicode( '.' ) ); in describeObject() 586 buffer.append( GetEntryText( _pEntry ) ); in describeObject() 592 buffer.append( GetEntryText( pParent ) ); in describeObject() 593 buffer.append( sal_Unicode( '.' ) ); in describeObject() 595 buffer.append( GetEntryText( _pEntry ) ); in describeObject()
|
/aoo41x/main/soltools/javadep/ |
H A D | javadep.c | 617 char buffer[PATH_MAX]; in err_quit() local 623 vsnprintf(buffer, sizeof(buffer), fmt, args); in err_quit() 624 fputs(buffer, stderr); in err_quit() 786 char buffer[RES_FILE_BUF]; local 795 if ( fgets(buffer, RES_FILE_BUF, pfile) ) {; 796 p = buffer;
|