Home
last modified time | relevance | path

Searched refs:buffer (Results 1 – 25 of 458) sorted by relevance

12345678910>>...19

/trunk/main/registry/source/
H A Dreflcnst.hxx110 inline sal_uInt32 writeBYTE(sal_uInt8* buffer, sal_uInt8 v) in writeBYTE() argument
112 buffer[0] = v; in writeBYTE()
117 inline sal_uInt16 readBYTE(const sal_uInt8* buffer, sal_uInt8& v) in readBYTE() argument
119 v = buffer[0]; in readBYTE()
124 inline sal_uInt32 writeINT16(sal_uInt8* buffer, sal_Int16 v) in writeINT16() argument
126 buffer[0] = (sal_uInt8)((v >> 8) & 0xFF); in writeINT16()
127 buffer[1] = (sal_uInt8)((v >> 0) & 0xFF); in writeINT16()
132 inline sal_uInt32 readINT16(const sal_uInt8* buffer, sal_Int16& v) in readINT16() argument
134 v = ((buffer[0] << 8) | (buffer[1] << 0)); in readINT16()
139 inline sal_uInt32 writeUINT16(sal_uInt8* buffer, sal_uInt16 v) in writeUINT16() argument
[all …]
/trunk/main/binaryurp/source/
H A Dmarshal.cxx59 void write64(std::vector< unsigned char > * buffer, sal_uInt64 value) { in write64() argument
60 Marshal::write8(buffer, value >> 56); in write64()
61 Marshal::write8(buffer, (value >> 48) & 0xFF); in write64()
62 Marshal::write8(buffer, (value >> 40) & 0xFF); in write64()
63 Marshal::write8(buffer, (value >> 32) & 0xFF); in write64()
64 Marshal::write8(buffer, (value >> 24) & 0xFF); in write64()
65 Marshal::write8(buffer, (value >> 16) & 0xFF); in write64()
66 Marshal::write8(buffer, (value >> 8) & 0xFF); in write64()
67 Marshal::write8(buffer, value & 0xFF); in write64()
70 void writeCompressed(std::vector< unsigned char > * buffer, sal_uInt32 value) { in writeCompressed() argument
[all …]
/trunk/main/sal/osl/unx/
H A Dsystem.c33 struct passwd *getpwnam_r(const char* name, struct passwd* s, char* buffer, int size ) in getpwnam_r() argument
54 strcpy(buffer, res->pw_name); in getpwnam_r()
55 s->pw_name = buffer; in getpwnam_r()
56 buffer += nname; in getpwnam_r()
58 strcpy(buffer, res->pw_passwd); in getpwnam_r()
59 s->pw_passwd = buffer; in getpwnam_r()
60 buffer += npasswd; in getpwnam_r()
62 strcpy(buffer, res->pw_class); in getpwnam_r()
63 s->pw_class = buffer; in getpwnam_r()
64 buffer += nclass; in getpwnam_r()
[all …]
H A Dfile_url.cxx162 if( ( 0 == ustrFileURL->length ) || ( (sal_Unicode) '/' == ustrFileURL->buffer[0] ) ) in osl_getSystemPathFromFileURL()
169 …nIndex = rtl_ustr_indexOfStr_WithLength( ustrFileURL->buffer, ustrFileURL->length, protocolDelimit… in osl_getSystemPathFromFileURL()
170 … nIndex || 0 != rtl_ustr_ascii_shortenedCompare_WithLength( ustrFileURL->buffer, ustrFileURL->leng… in osl_getSystemPathFromFileURL()
179 …if( -1 != rtl_ustr_indexOfStr_WithLength( ustrFileURL->buffer, ustrFileURL->length, encodedSlash, … in osl_getSystemPathFromFileURL()
189 …nIndex = rtl_ustr_indexOfChar_WithLength( ustrFileURL->buffer + nOffset, ustrFileURL->length - nOf… in osl_getSystemPathFromFileURL()
192 rtl_uString_newFromStr_WithLength( &ustrPathToken, ustrFileURL->buffer + nOffset, in osl_getSystemPathFromFileURL()
199 … if( -1 != rtl_ustr_indexOfChar_WithLength( pTmp->buffer, pTmp->length, (sal_Unicode) '/' ) ) in osl_getSystemPathFromFileURL()
222 rtl_uString_newFromStr_WithLength( &pProtocol, pTmp->buffer, 7 ); in osl_getSystemPathFromFileURL()
225 rtl_ustr_toAsciiLowerCase_WithLength( pProtocol->buffer, pProtocol->length ); in osl_getSystemPathFromFileURL()
227 …if( 0 == rtl_ustr_ascii_shortenedCompare_WithLength( pProtocol->buffer, pProtocol->length,"file://… in osl_getSystemPathFromFileURL()
[all …]
H A Dsecurity.c539 char buffer[1024]; in osl_psz_loginUser()
542 buffer[0] = '\0'; in osl_psz_loginUser()
544 pszUserName, &result_buf, buffer, sizeof buffer, in osl_psz_loginUser()
556 "root", &result_buf, buffer, sizeof buffer, in osl_psz_loginUser()
582 char buffer[1024]; in osl_psz_loginUser()
584 buffer[0] = '\0'; in osl_psz_loginUser()
586 if (getspnam_r(pszUserName, &spwdStruct, buffer, sizeof buffer) != NULL) in osl_psz_loginUser()
588 if (getspnam_r(pszUserName, &spwdStruct, buffer, sizeof buffer, NULL) == 0) in osl_psz_loginUser()
600 (getspnam_r("root", &spwdStruct, buffer, sizeof buffer) != NULL)) in osl_psz_loginUser()
602 (getspnam_r("root", &spwdStruct, buffer, sizeof buffer, NULL) == 0)) in osl_psz_loginUser()
[all …]
H A Dbacktrace.c65 int backtrace( void **buffer, int max_frames ) in backtrace() argument
93 *(buffer++) = (void*)(fp->fr_savpc); in backtrace()
103 void backtrace_symbols_fd( void **buffer, int size, int fd ) in backtrace_symbols_fd() argument
111 for ( pFramePtr = buffer; size > 0 && pFramePtr && *pFramePtr; pFramePtr++, size-- ) in backtrace_symbols_fd()
151 int backtrace( void **buffer, int max_frames ) in backtrace() argument
165 *(buffer++) = (void *)fp->fr_savpc; in backtrace()
172 void backtrace_symbols_fd( void **buffer, int size, int fd ) in backtrace_symbols_fd() argument
179 for ( pFramePtr = buffer; size > 0 && pFramePtr && *pFramePtr; pFramePtr++, size-- ) in backtrace_symbols_fd()
230 int backtrace( void **buffer, int max_frames ) in backtrace() argument
250 *(buffer++) = (void *)fp->fr_savpc; in backtrace()
[all …]
/trunk/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/formula/
H A DTokenDecoder.java216 byte buffer[] = new byte[2]; in readNameToken()
217 buffer[0] = (byte) bis.read(); in readNameToken()
218 buffer[1] = (byte) bis.read(); in readNameToken()
219 int nameIndex = EndianConverter.readShort(buffer); in readNameToken()
242 byte buffer[] = new byte[2]; in readCellRefToken()
245 buffer[0] = (byte) bis.read(); in readCellRefToken()
246 buffer[1] = (byte) bis.read(); in readCellRefToken()
247 int formulaRow = EndianConverter.readShort(buffer); in readCellRefToken()
266 byte buffer[] = new byte[2]; in read3DCellRefToken()
271 buffer[0] = (byte) bis.read(); in read3DCellRefToken()
[all …]
/trunk/main/l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/
H A DGSIWriter.java109 StringBuffer buffer=new StringBuffer(""); in writeData() local
128 buffer.append(getSourceLine("Text")); in writeData()
129 buffer.append(getSourceLine("HText")); in writeData()
130 buffer.append(getSourceLine("QText")); in writeData()
131 buffer.append(getSourceLine("Title")); in writeData()
135 buffer.append(getTargetLine("Text")); in writeData()
136 buffer.append(getTargetLine("HText")); in writeData()
137 buffer.append(getTargetLine("QText")); in writeData()
138 buffer.append(getTargetLine("Title")); in writeData()
140 this.write(buffer.toString()); in writeData()
[all …]
/trunk/main/sal/inc/rtl/
H A Dustring.hxx288 operator const sal_Unicode *() const SAL_THROW(()) { return pData->buffer; } in operator const sal_Unicode*()
291 sal_Unicode& operator[]( int n ) { return pData->buffer[n]; } in operator []()
293 const sal_Unicode& operator[]( int n ) const { return pData->buffer[n]; } in operator []()
305 const sal_Unicode * getStr() const SAL_THROW(()) { return pData->buffer; } in getStr()
321 return rtl_ustr_compare_WithLength( pData->buffer, pData->length, in compareTo()
322 str.pData->buffer, str.pData->length ); in compareTo()
340 return rtl_ustr_shortenedCompare_WithLength( pData->buffer, pData->length, in compareTo()
341 … str.pData->buffer, str.pData->length, maxLength ); in compareTo()
358 return rtl_ustr_reverseCompare_WithLength( pData->buffer, pData->length, in reverseCompareTo()
359 str.pData->buffer, str.pData->length ); in reverseCompareTo()
[all …]
H A Dstring.hxx242 operator const sal_Char *() const SAL_THROW(()) { return pData->buffer; } in operator const sal_Char*()
244 sal_Char& operator[]( int n ) { return pData->buffer[n]; } in operator []()
246 const sal_Char& operator[]( int n ) const { return pData->buffer[n]; } in operator []()
261 const sal_Char * getStr() const SAL_THROW(()) { return pData->buffer; } in getStr()
277 return rtl_str_compare_WithLength( pData->buffer, pData->length, in compareTo()
278 str.pData->buffer, str.pData->length ); in compareTo()
296 return rtl_str_shortenedCompare_WithLength( pData->buffer, pData->length, in compareTo()
297 … rObj.pData->buffer, rObj.pData->length, maxLength ); in compareTo()
314 return rtl_str_reverseCompare_WithLength( pData->buffer, pData->length, in reverseCompareTo()
315 str.pData->buffer, str.pData->length ); in reverseCompareTo()
[all …]
/trunk/main/tools/bootstrp/
H A Dmd5.cxx47 void normalize_pe_image(sal_uInt8* buffer, size_t nBufferSize) in normalize_pe_image() argument
56 if (buffer[0] == sal_uInt8('M') && buffer[1] == sal_uInt8('Z')) in normalize_pe_image()
58 unsigned long PEHeaderOffset = (long)buffer[OFFSET_PE_OFFSET]; in normalize_pe_image()
61 if ( buffer[PEHeaderOffset+0] == sal_uInt8('P') && in normalize_pe_image()
62 buffer[PEHeaderOffset+1] == sal_uInt8('E') && in normalize_pe_image()
63 buffer[PEHeaderOffset+2] == 0 && in normalize_pe_image()
64 buffer[PEHeaderOffset+3] == 0 ) in normalize_pe_image()
72 buffer[PEHeaderOffset+OFFSET_COFF_TIMEDATESTAMP+0] = 0; in normalize_pe_image()
73 buffer[PEHeaderOffset+OFFSET_COFF_TIMEDATESTAMP+1] = 0; in normalize_pe_image()
74 buffer[PEHeaderOffset+OFFSET_COFF_TIMEDATESTAMP+2] = 0; in normalize_pe_image()
[all …]
/trunk/main/writerfilter/source/resourcemodel/
H A Dutil.cxx176 char buffer[256]; in propertysetToString() local
184 snprintf(buffer, sizeof(buffer), "%d", nValue); in propertysetToString()
185 sResult += buffer; in propertysetToString()
194 snprintf(buffer, sizeof(buffer), "%d", nValue); in propertysetToString()
195 sResult += buffer; in propertysetToString()
204 snprintf(buffer, sizeof(buffer), "%" SAL_PRIdINT32, nValue); in propertysetToString()
205 sResult += buffer; in propertysetToString()
214 snprintf(buffer, sizeof(buffer), "%f", nValue); in propertysetToString()
215 sResult += buffer; in propertysetToString()
224 snprintf(buffer, sizeof(buffer), "%lf", nValue); in propertysetToString()
[all …]
/trunk/main/sal/osl/os2/
H A Dfile_url.cxx101 …_POINTER(THE_OUSTRING) ::rtl::OUStringToOString (THE_OUSTRING, RTL_TEXTENCODING_UTF8).pData->buffer
603 dwPathType = IsValidFilePath(strPath->buffer, NULL, VALIDATEPATH_ALLOW_RELATIVE); in _osl_getFileURLFromSystemPath()
678 rtl_ustr_replaceChar( ustrSystemPath->buffer, '\\', '/' ); in osl_getFileURLFromSystemPath()
681 …if( 0 == rtl_ustr_ascii_shortenedCompare_WithLength( ustrSystemPath->buffer, ustrSystemPath->lengt… in osl_getFileURLFromSystemPath()
706 if( (sal_Unicode) '~' == ustrSystemPath->buffer[0] ) in osl_getFileURLFromSystemPath()
709 if( ( 1 == ustrSystemPath->length ) || ( (sal_Unicode)'/' == ustrSystemPath->buffer[1] ) ) in osl_getFileURLFromSystemPath()
715 rtl_uString_newFromStr_WithLength( &pTmp, pTmp->buffer + 7, pTmp->length - 7 ); in osl_getFileURLFromSystemPath()
729 …nIndex = rtl_ustr_indexOfStr_WithLength( ustrSystemPath->buffer, ustrSystemPath->length, pDoubleSl… in osl_getFileURLFromSystemPath()
745 …if( ((sal_Unicode) '/' == pTmp->buffer[nSrcIndex]) && ((sal_Unicode) '/' == pTmp->buffer[nIndex]) ) in osl_getFileURLFromSystemPath()
748 pTmp->buffer[++nIndex] = pTmp->buffer[nSrcIndex]; in osl_getFileURLFromSystemPath()
[all …]
H A Dmodule.c55 char buffer[PATH_MAX]; in osl_loadModule() local
57 if (UnicodeToText(buffer, PATH_MAX, ustrTmp->buffer, ustrTmp->length)) in osl_loadModule()
58 pModule = osl_loadAsciiModule(buffer, nRtldMode); in osl_loadModule()
73 char buffer[PATH_MAX]; in osl_loadAsciiModule() local
96 _makepath( buffer, drive, dir, fname, ext); in osl_loadAsciiModule()
99 debug_printf("osl_loadModule module %s", buffer); in osl_loadAsciiModule()
102 hModule = dlopen( buffer, RTLD_LOCAL); in osl_loadAsciiModule()
118 buffer, err); in osl_loadAsciiModule()
146 char buffer[PATH_MAX]; in osl_getModuleHandle() local
148 if (UnicodeToText(buffer, PATH_MAX, pModuleName->buffer, in osl_getModuleHandle()
[all …]
H A Dnlsupport.c93 static char * _compose_locale( rtl_Locale * pLocale, char * buffer, size_t n ) in _compose_locale() argument
105 pLocale->Language->buffer, pLocale->Language->length, in _compose_locale()
110 strcpy( buffer, pLanguage->buffer ); in _compose_locale()
123 pLocale->Country->buffer, pLocale->Country->length, in _compose_locale()
128 strcpy( buffer + offset++, "_" ); in _compose_locale()
129 strcpy( buffer + offset, pCountry->buffer ); in _compose_locale()
143 pLocale->Variant->buffer, pLocale->Variant->length, in _compose_locale()
148 strcpy( buffer + offset, pVariant->buffer ); in _compose_locale()
155 return buffer; in _compose_locale()
200 …t = rtl_locale_register( pLanguage->buffer, pCountry ? pCountry->buffer : c_locale + 1, pVariant … in _parse_locale()
/trunk/main/idlc/source/
H A Doptions.cxx139 std::string buffer; in checkCommandFile() local
140 buffer.reserve(256); in checkCommandFile()
157 if (!buffer.empty()) in checkCommandFile()
160 if (!Options::checkArgument(rArgs, buffer.c_str(), buffer.size())) in checkCommandFile()
165 buffer.clear(); in checkCommandFile()
171 buffer.push_back(sal::static_int_cast<char>(c)); in checkCommandFile()
175 if (!buffer.empty()) in checkCommandFile()
178 if (!Options::checkArgument(rArgs, buffer.c_str(), buffer.size())) in checkCommandFile()
183 buffer.clear(); in checkCommandFile()
268 OStringBuffer buffer; in initOptions() local
[all …]
/trunk/main/sal/workben/
H A Dtgetpwnam.cxx44 struct tm *localtime_r(const time_t *timep, struct tm *buffer);
48 char *buffer, int buflen, int *h_errnop);
57 char buffer[256]; in workfunc1() local
66 getpwnam_r("hr", &stpwd, buffer, sizeof(buffer)); in workfunc1()
67 gethostbyname_r("blauwal", &sthostent, buffer, sizeof(buffer), &nerr); in workfunc1()
76 char buffer[256]; in workfunc2() local
85 getpwnam_r("mh", &stpwd, buffer, sizeof(buffer)); in workfunc2()
86 gethostbyname_r("hr-1242", &sthostent, buffer, sizeof(buffer), &nerr); in workfunc2()
98 char buffer[256]; in main() local
118 pres1 = getpwnam_r("hr", pwd, buffer, sizeof(buffer)); in main()
[all …]
/trunk/main/crashrep/source/unx/
H A Dmain.cxx164 char buffer[1024]; in fcopy() local
168 while ( 0 != (nBytes = fread( buffer, 1, sizeof(buffer), fpin )) ) in fcopy()
170 nBytesWritten += fwrite( buffer, 1, nBytes, fpout ); in fcopy()
343 char buffer[2048]; in SendHTTPRequest() local
346 sprintf( buffer, in SendHTTPRequest()
356 sprintf( buffer, in SendHTTPRequest()
367 printf( "%s", buffer ); in SendHTTPRequest()
370 if ( SOCKET_ERROR != send( s, buffer, strlen(buffer), 0 ) ) in SendHTTPRequest()
376 nBytes = fread( buffer, 1, sizeof(buffer), fp ); in SendHTTPRequest()
381 fwrite( buffer, 1, nBytes, stdout ); in SendHTTPRequest()
[all …]
/trunk/main/extensions/source/logging/
H A Dsysloghandler.cxx236 ::rtl::OStringBuffer buffer; in publish()
255 buffer.append( '<' ); in publish()
256 buffer.append( ( facility * 8 ) + severity ); in publish()
257 buffer.append( '>' ); in publish()
260 buffer.append( '1' ); in publish()
261 buffer.append( ' ' ); in publish()
270 buffer.append( timestampBuffer ); in publish()
271 buffer.append( ' ' ); in publish()
276 buffer.append( ::rtl::OUStringToOString( hostname, RTL_TEXTENCODING_UTF8 ) ); in publish()
278 buffer.append( '-' ); in publish()
[all …]
/trunk/main/vcl/unx/generic/fontmanager/
H A Dhelper.cxx261 unsigned char buffer[256]; in convertPfbToPfa() local
269 bEof = ((0 != rInFile.read( buffer, 6, nRead)) || (nRead != 6)); in convertPfbToPfa()
272 unsigned int nType = buffer[ 1 ]; in convertPfbToPfa()
273 unsigned int nBytesToRead = buffer[2] | buffer[3] << 8 | buffer[4] << 16 | buffer[5] << 24; in convertPfbToPfa()
274 if( buffer[0] != 0x80 ) // test for pfb magic number in convertPfbToPfa()
278 if( ! rInFile.read( buffer+6, 9, nRead ) && nRead == 9 && in convertPfbToPfa()
279 ( ! std::strncmp( (char*)buffer, "%!FontType1-", 12 ) || in convertPfbToPfa()
280 ! std::strncmp( (char*)buffer, "%!PS-AdobeFont-", 15 ) ) ) in convertPfbToPfa()
282 if( rOutFile.write( buffer, 15, nWrite ) || nWrite != 15 ) in convertPfbToPfa()
285 ! rInFile.read( buffer, sizeof( buffer ), nRead ) && in convertPfbToPfa()
[all …]
/trunk/main/filter/source/xsltfilter/com/sun/star/comp/xsltfilter/
H A DBase64.java1025 byte[] buffer = new byte[2048]; in decode()
1034 while( ( length = gzis.read( buffer ) ) >= 0 ) in decode()
1036 baos.write(buffer,0,length); in decode()
1194 byte[] buffer = null; in decodeFromFile()
1204 buffer = new byte[ (int)file.length() ]; in decodeFromFile()
1212 while( ( numBytes = bis.read( buffer, length, 4096 ) ) >= 0 ) in decodeFromFile()
1217 System.arraycopy( buffer, 0, decodedData, 0, length ); in decodeFromFile()
1251 …byte[] buffer = new byte[ Math.max((int)(file.length() * 1.4),40) ]; // Need max() for math on sma… in encodeFromFile()
1261 while( ( numBytes = bis.read( buffer, length, 4096 ) ) >= 0 ) in encodeFromFile()
1265 encodedData = new String( buffer, 0, length, Base64.PREFERRED_ENCODING ); in encodeFromFile()
[all …]
/trunk/main/desktop/win32/source/
H A Dextendloaderenvironment.hxx39 WCHAR * buffer, WCHAR const * text, std::size_t length) in commandLineAppend() argument
41 wcsncpy(buffer, text, length + 1); // trailing null in commandLineAppend()
42 return buffer + length; in commandLineAppend()
45 inline WCHAR * commandLineAppend(WCHAR * buffer, WCHAR const * text) { in commandLineAppend() argument
46 return commandLineAppend(buffer, text, wcslen(text)); in commandLineAppend()
49 inline WCHAR * commandLineAppendEncoded(WCHAR * buffer, WCHAR const * text) { in commandLineAppendEncoded() argument
56 buffer = commandLineAppend(buffer, MY_STRING(L"\\$")); in commandLineAppendEncoded()
59 buffer = commandLineAppend(buffer, MY_STRING(L"\\\\")); in commandLineAppendEncoded()
62 *buffer++ = c; in commandLineAppendEncoded()
69 *buffer++ = L'\\'; in commandLineAppendEncoded()
[all …]
/trunk/main/bean/java/officebean/src/main/java/com/sun/star/beans/
H A DLocalOfficeConnection.java384 StringBuffer buffer = new StringBuffer(); in parseUnoUrlWithOfficePath() local
391 buffer.delete(0, buffer.length()); in parseUnoUrlWithOfficePath()
400 buffer.delete(0, buffer.length()); in parseUnoUrlWithOfficePath()
401 buffer.append(ch); in parseUnoUrlWithOfficePath()
411 name = buffer.toString(); in parseUnoUrlWithOfficePath()
421 buffer.append(ch); in parseUnoUrlWithOfficePath()
447 buffer.delete(0, buffer.length()); in parseUnoUrlWithOfficePath()
448 buffer.append(ch); in parseUnoUrlWithOfficePath()
463 path = buffer.toString(); in parseUnoUrlWithOfficePath()
468 pipe = buffer.toString(); in parseUnoUrlWithOfficePath()
[all …]
/trunk/main/scripting/source/storage/
H A DScriptMetadataImporter.cxx198 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in startElement()
214 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in startElement()
221 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in startElement()
228 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in startElement()
235 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in startElement()
243 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in startElement()
256 RTL_TEXTENCODING_ASCII_US ).pData->buffer, in startElement()
259 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in startElement()
266 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in startElement()
278 RTL_TEXTENCODING_ASCII_US ).pData->buffer, in startElement()
[all …]
H A DScriptStorage.cxx117 ::rtl::OUStringToOString( names[i], RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in ScriptStorage()
131 … ::rtl::OUStringToOString( names[i], RTL_TEXTENCODING_ASCII_US ).pData->buffer, in ScriptStorage()
132 … ::rtl::OUStringToOString( extns[j], RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in ScriptStorage()
199 m_stringUri, RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in initialize()
283 languageDirs[ i ], RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in create()
300 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in create()
313 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in create()
337 RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in create()
437 scriptData.language, RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in createForFilesystem()
442 scriptData.functionname, RTL_TEXTENCODING_ASCII_US ).pData->buffer ); in createForFilesystem()
[all …]

12345678910>>...19