Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
53358305
Kaydet (Commit)
53358305
authored
Ock 20, 2012
tarafından
Norbert Thiebaud
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
kill some doxygen warnings
üst
6accc1e6
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
32 additions
and
32 deletions
+32
-32
reader.h
registry/inc/registry/reader.h
+1
-1
registry.h
registry/inc/registry/registry.h
+2
-2
process.h
sal/inc/osl/process.h
+6
-6
socket.h
sal/inc/osl/socket.h
+1
-1
locale.h
sal/inc/rtl/locale.h
+3
-3
logfile.h
sal/inc/rtl/logfile.h
+1
-1
random.h
sal/inc/rtl/random.h
+6
-6
strbuf.h
sal/inc/rtl/strbuf.h
+2
-2
string.h
sal/inc/rtl/string.h
+2
-2
tencinfo.h
sal/inc/rtl/tencinfo.h
+1
-1
unload.h
sal/inc/rtl/unload.h
+1
-1
ustrbuf.h
sal/inc/rtl/ustrbuf.h
+1
-1
ustring.h
sal/inc/rtl/ustring.h
+3
-3
log.hxx
sal/inc/sal/log.hxx
+1
-1
types.h
sal/inc/sal/types.h
+1
-1
No files found.
registry/inc/registry/reader.h
Dosyayı görüntüle @
53358305
...
...
@@ -318,7 +318,7 @@ void SAL_CALL typereg_reader_getFieldTypeName(
@param type an out-parameter obtaining the field value's type; must not be
null
@param
result
an out-parameter obtaining the field value's value; must not be
@param
value
an out-parameter obtaining the field value's value; must not be
null
@return false iff an out-of-memory condition occurred, in which case
...
...
registry/inc/registry/registry.h
Dosyayı görüntüle @
53358305
...
...
@@ -58,7 +58,7 @@ RegError REGISTRY_CALLTYPE reg_createKey(RegKeyHandle hKey,
@param hKey identifies a currently open key. The key which will be opened by this function
is a subkey of the key identified by hKey
@param keyName points to a null terminated string specifying the name of a key.
@param ph
New
Key points to a variable that receives the handle of the opened key.
@param ph
Open
Key points to a variable that receives the handle of the opened key.
The memory to store this variable will be allocated and will be freed by the function
reg_closeKey. If the function fails, phNewKey is NULL.
@return REG_NO_ERROR if succeeds else an error code.
...
...
@@ -415,7 +415,7 @@ RegError REGISTRY_CALLTYPE reg_openRootKey(RegHandle hRegistry,
/** This function returns the name of a registry.
@param hReg identifies a currently open registry whose name will be returned.
@param hReg
istry
identifies a currently open registry whose name will be returned.
@param pName returns the name of the registry if the function succeeds otherwise an empty string.
@return REG_NO_ERROR if succeeds else an error code.
*/
...
...
sal/inc/osl/process.h
Dosyayı görüntüle @
53358305
...
...
@@ -146,7 +146,7 @@ typedef void* oslProcess;
is undefined. If this parameter is NULL or the caller provides an empty string the
new process will have the same current working directory as the calling process.
@param ustrEnviroments
@param ustrEnviro
n
ments
[in] An array of strings describing environment variables that should be merged into the
environment of the new process. Each string has to be in the form "variable=value".
This parameter can be NULL in which case the new process gets the same environment
...
...
@@ -190,7 +190,7 @@ SAL_DLLPUBLIC oslProcessError SAL_CALL osl_executeProcess(
/** Execute a process and redirect child process standard IO.
@param
u
strImageName
@param strImageName
[in] The file URL of the executable to be started.
Can be NULL in this case the file URL of the executable must be the first element
in ustrArguments.
...
...
@@ -216,7 +216,7 @@ SAL_DLLPUBLIC oslProcessError SAL_CALL osl_executeProcess(
is undefined. If this parameter is NULL or the caller provides an empty string the
new process will have the same current working directory as the calling process.
@param ustrEnviroments
@param ustrEnviro
n
ments
[in] An array of strings describing environment variables that should be merged into the
environment of the new process. Each string has to be in the form "variable=value".
This parameter can be NULL in which case the new process gets the same environment
...
...
@@ -333,14 +333,14 @@ SAL_DLLPUBLIC oslProcessError SAL_CALL osl_joinProcessWithTimeout(
oslProcess
Process
,
const
TimeValue
*
pTimeout
);
/** Retrieves information about a Process
@param
Process [in]
the process handle of the process
@param
Field [in]
the information which is to be retrieved
@param
[in] Process
the process handle of the process
@param
[in] Fields
the information which is to be retrieved
this can be one or more of
osl_Process_IDENTIFIER
osl_Process_EXITCODE
osl_Process_CPUTIMES
osl_Process_HEAPUSAGE
@param
pInfo [out]
a pointer to a vaid oslProcessInfo structure.
@param
[out] pInfo
a pointer to a vaid oslProcessInfo structure.
the Size field has to be initialized with the size
of the oslProcessInfo structure.
on success the the Field member holds the (or'ed)
...
...
sal/inc/osl/socket.h
Dosyayı görüntüle @
53358305
...
...
@@ -208,7 +208,7 @@ typedef sal_uInt8 oslSocketIpxNodeNumber[6];
*/
/** Creates a socket-address for the given family.
@param
f
amily If family == osl_Socket_FamilyInet the address is
@param
F
amily If family == osl_Socket_FamilyInet the address is
set to INADDR_ANY port 0.
@return 0 if address could not be created.
*/
...
...
sal/inc/rtl/locale.h
Dosyayı görüntüle @
53358305
...
...
@@ -105,20 +105,20 @@ SAL_DLLPUBLIC void SAL_CALL rtl_locale_setDefault(
/**
Getter for programmatic name of field,
a lowercased two-letter ISO 639-1 or three-letter ISO 639-3 code.
@see
#
getDisplayLanguage
@see getDisplayLanguage
*/
SAL_DLLPUBLIC
rtl_uString
*
SAL_CALL
rtl_locale_getLanguage
(
rtl_Locale
*
This
);
/**
Getter for programmatic name of field,
an uppercased two-letter ISO-3166 code.
@see
#
getDisplayCountry
@see getDisplayCountry
*/
SAL_DLLPUBLIC
rtl_uString
*
SAL_CALL
rtl_locale_getCountry
(
rtl_Locale
*
This
);
/**
Getter for programmatic name of field.
@see
#
getDisplayVariant
@see getDisplayVariant
*/
SAL_DLLPUBLIC
rtl_uString
*
SAL_CALL
rtl_locale_getVariant
(
rtl_Locale
*
This
);
...
...
sal/inc/rtl/logfile.h
Dosyayı görüntüle @
53358305
...
...
@@ -45,7 +45,7 @@ extern "C" {
RTL_LOGFILE. If the variable is not empty, it creates a file with the name
$(RTL_LOGFILE)_$(PID).log, where $(PID) is the process id of the running process.
@param psz
f
ormat A format string with fprintf-syntax
@param psz
F
ormat A format string with fprintf-syntax
@param ... An arbitrary number of arguments for fprintf, matching the
format string.
*/
...
...
sal/inc/rtl/random.h
Dosyayı görüntüle @
53358305
...
...
@@ -77,9 +77,9 @@ SAL_DLLPUBLIC void SAL_CALL rtl_random_destroyPool (
/** Add bytes to a Random Pool.
@param
Pool [in]
a Random Pool.
@param
pBuffer [in]
a buffer containing the bytes to add.
@param
nBufLen [in]
the number of bytes to read from the buffer.
@param
[in] Pool
a Random Pool.
@param
[in] Buffer
a buffer containing the bytes to add.
@param
[in] Bytes
the number of bytes to read from the buffer.
@return rtl_Random_E_None upon success.
*/
SAL_DLLPUBLIC
rtlRandomError
SAL_CALL
rtl_random_addBytes
(
...
...
@@ -90,9 +90,9 @@ SAL_DLLPUBLIC rtlRandomError SAL_CALL rtl_random_addBytes (
/** Retrieve bytes from a Random Pool.
@param
Pool [in]
a Random Pool.
@param
pBuffer [inout]
a buffer to receive the random bytes.
@param
nBufLen [in]
the number of bytes to write to the buffer.
@param
[in] Pool
a Random Pool.
@param
[in,out] Buffer
a buffer to receive the random bytes.
@param
[in] Bytes
the number of bytes to write to the buffer.
@return rtl_Random_E_None upon success.
*/
SAL_DLLPUBLIC
rtlRandomError
SAL_CALL
rtl_random_getBytes
(
...
...
sal/inc/rtl/strbuf.h
Dosyayı görüntüle @
53358305
...
...
@@ -69,7 +69,7 @@ SAL_DLLPUBLIC void SAL_CALL rtl_stringbuffer_newFromStr_WithLength(
SAL_DLLPUBLIC
sal_Int32
SAL_CALL
rtl_stringbuffer_newFromStringBuffer
(
rtl_String
**
newStr
,
sal_Int32
capacity
,
rtl_String
*
ol
s
Str
);
rtl_String
*
ol
d
Str
);
/**
Ensures that the capacity of the buffer is at least equal to the
...
...
@@ -105,7 +105,7 @@ SAL_DLLPUBLIC void SAL_CALL rtl_stringbuffer_ensureCapacity(
@param capacity the capacity of the string buffer
@param offset the offset.
@param
ch
a character array.
@param
str
a character array.
@param len the number of characters to append.
*/
SAL_DLLPUBLIC
void
SAL_CALL
rtl_stringbuffer_insert
(
...
...
sal/inc/rtl/string.h
Dosyayı görüntüle @
53358305
...
...
@@ -959,7 +959,7 @@ SAL_DLLPUBLIC void SAL_CALL rtl_string_newConcat( rtl_String ** newStr, rtl_Stri
@param str
a valid string.
@param i
nde
x
@param i
d
x
the index into str at which to start replacement. Must be between 0 and
the length of str, inclusive.
...
...
@@ -1103,7 +1103,7 @@ SAL_DLLPUBLIC void SAL_CALL rtl_string_newTrim(
@param cTok
the character that seperates the tokens.
@param i
nde
x
@param i
d
x
the position at which searching for the token starts. Must not be greater
than the length of str.
...
...
sal/inc/rtl/tencinfo.h
Dosyayı görüntüle @
53358305
...
...
@@ -196,7 +196,7 @@ SAL_DLLPUBLIC rtl_TextEncoding SAL_CALL rtl_getTextEncodingFromMimeCharset(
/** Map from a Unix charset to a text encoding.
@param p
Mime
Charset
@param p
Unix
Charset
Any Unix charset string. Must not be null.
@return
...
...
sal/inc/rtl/unload.h
Dosyayı görüntüle @
53358305
...
...
@@ -221,7 +221,7 @@ once then every registration is treated as if made for a different listener. Tha
a different cookie is returned and the callback function will be called as many times
as it has been registered.
@param callback - a function that is called to notify listeners.
@param this - a value to distinguish different listener instances
@param
_
this - a value to distinguish different listener instances
@return identifier which is used in rtl_removeUnloadingListener
*/
SAL_DLLPUBLIC
sal_Int32
SAL_CALL
rtl_addUnloadingListener
(
rtl_unloadingListenerFunc
callback
,
void
*
_this
);
...
...
sal/inc/rtl/ustrbuf.h
Dosyayı görüntüle @
53358305
...
...
@@ -69,7 +69,7 @@ SAL_DLLPUBLIC void SAL_CALL rtl_uStringbuffer_newFromStr_WithLength(
SAL_DLLPUBLIC
sal_Int32
SAL_CALL
rtl_uStringbuffer_newFromStringBuffer
(
rtl_uString
**
newStr
,
sal_Int32
capacity
,
rtl_uString
*
ol
s
Str
);
rtl_uString
*
ol
d
Str
);
/**
Ensures that the capacity of the buffer is at least equal to the
...
...
sal/inc/rtl/ustring.h
Dosyayı görüntüle @
53358305
...
...
@@ -1165,7 +1165,7 @@ SAL_DLLPUBLIC void SAL_CALL rtl_uString_new(
pointer to the new string. The pointed-to data must be null or a valid
string.
@param
l
en
@param
nL
en
the number of characters.
*/
SAL_DLLPUBLIC
void
SAL_CALL
rtl_uString_new_WithLength
(
...
...
@@ -1343,7 +1343,7 @@ SAL_DLLPUBLIC void SAL_CALL rtl_uString_newConcat(
@param str
a valid string.
@param i
nde
x
@param i
d
x
the index into str at which to start replacement. Must be between 0 and
the length of str, inclusive.
...
...
@@ -1487,7 +1487,7 @@ SAL_DLLPUBLIC void SAL_CALL rtl_uString_newTrim(
@param cTok
the character that seperates the tokens.
@param i
nde
x
@param i
d
x
the position at which searching for the token starts. Must not be greater
than the length of str.
...
...
sal/inc/sal/log.hxx
Dosyayı görüntüle @
53358305
...
...
@@ -193,7 +193,7 @@ inline char const * unwrapStream(StreamIgnore const &) {
would be an example of such a call; if the given s is of type rtl::OUString,
#include "rtl/oustringostreaminserter.hxx"
\
#include "rtl/oustringostreaminserter.hxx"
would make sure that an appropriate operator << is available.
...
...
sal/inc/sal/types.h
Dosyayı görüntüle @
53358305
...
...
@@ -464,7 +464,7 @@ template< typename T1, typename T2 > inline T1 static_int_cast(T2 n) {
/**
Use as follows:
SAL_WNODEPRECATED_DECLARATIONS_PUSH
::std::auto_ptr<X> ...
\
::std::auto_ptr<X> ...
SAL_WNODEPRECATED_DECLARATIONS_POP
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment