summaryrefslogtreecommitdiff
path: root/sal
AgeCommit message (Collapse)Author
2011-11-14Search app's lib firstTor Lillqvist
2011-11-13Remove _osl_getDomainName and simplify _osl_getFullQualifiedDomainNameArnaud Versini
2011-11-13Replace domainname command by getdomainname syscall or functionArnaud Versini
2011-11-11WaE: defined but not usedTor Lillqvist
2011-11-11Intermediate Android commitTor Lillqvist
2011-11-11Release strings after useTor Lillqvist
2011-11-11TypoTor Lillqvist
2011-11-11More baby steps for AndroidTor Lillqvist
2011-11-10Deliver the Android libuno_sal.soTor Lillqvist
2011-11-07First baby steps of proper Android "native" program supportTor Lillqvist
We use the "native app glue" thing from the NDK to avoid having to have an explicit Java wrapper. (There is one provided by the OS's NativeActivity anyway; all Android apps are Java programs.) For simplicity, we just #include android_native_app_glue.c in sal/main.h. sal/main.h is included only from source files that actually form the "main" programs for our programs anyway, I hope. Presumably the only programs we actually want to build for Android in this way are unit tests. Any real (or toy) LibreOffice-related Android app would have a totally Android-specific user interface written in Java, and just call LO libraries, I think.
2011-11-07Remove obsolete IsWin95A functionJesús Corrius
2011-11-04Added OUStringBuffer::append(char) so that b.append(' ') does what one expects.Stephan Bergmann
2011-11-01Moved sal/rtl/source string files from C to C++, for easier maintenance.Stephan Bergmann
2011-11-01Moved sal/rtl/source/alloc_* files from C to C++, for easier maintenance.Stephan Bergmann
2011-11-01Removed some obsolete register annotations.Stephan Bergmann
2011-11-01Moved various sal/rtl/source files from C to C++, for easier maintenance.Stephan Bergmann
2011-11-01Removed obsolete rtl/tres stuff.Stephan Bergmann
2011-11-01Fixed rtl_getGlobalProcessId implementation (moved from C to C++).Stephan Bergmann
2011-11-01adapt naming schemeCaolán McNamara
2011-11-01add and use an OString::equalsIgnoreAsciiCaseAscii equivalent to OUString oneCaolán McNamara
2011-11-01add and use an OString::equalsIgnoreAsciiCaseAsciiL equivalent to OUString oneCaolán McNamara
2011-10-25Fix previous commit for non-Valgrind builds.Stephan Bergmann
2011-10-24Avoid Clang -Wunused-value with trunk rev. 12226 Valgrind.Stephan Bergmann
2011-10-21misc trivial tweaks, and documentation additionMichael Meeks
2011-10-21String->OUString, with accompanying testsAugust Sodora
2011-10-20osl_getCommandArgCount can be called w/o prior osl_setCommandArgs.Stephan Bergmann
...e.g., with "import uno" in a stand-alone pyhton process (where it is hopefully harmless that UNO does not get access to any -env command line args).
2011-10-19WaE: two functions defined but not usedTor Lillqvist
2011-10-19WaE: passing argument discards qualifiers from pointer target typeTor Lillqvist
expected 'void *' but argument is of type 'volatile int *' errno is volatile on Android, and apparently it is not OK to pass the address of a volatile valye to a function expecting void * in their gcc version.
2011-10-19WaE: unused parameter 'f'Tor Lillqvist
2011-10-18Clang does not understand #pragma GCC diagnostic warning ↵Stephan Bergmann
"-Wunused-but-set-variable". See <https://bugs.kde.org/show_bug.cgi?id=284384> "clang 3.1 -Wunused-value warnings in valgrind.h, memcheck.h" for a way to silence these warnings when building with clang.
2011-10-18Some fixes for "clang version 3.1 (trunk 142234)" (with --enable-werror, on ↵Stephan Bergmann
Linux x86_64).
2011-10-18sal: workaround warnings in valgrind macrosMichael Stahl
2011-10-15get TestResult dtor before osl::Module dtorCaolán McNamara
2011-10-11WaE: ISO C90 forbids mixed declarations and codeDavid Tardon
2011-10-10WaE: -Wsign-promoCaolán McNamara
2011-10-08Second attempt at (cross-platform) OSL_FORMAT.Stephan Bergmann
2011-10-08Revert "Introduced OSL_FORMAT, adpated some places to it."Tor Lillqvist
Breaks the MSVC build for me: 'osl_detail_formatString' : C linkage function cannot return C++ class 'rtl::OString'. This reverts commit 6b900b8bede24c8710d62e9e7cbff613a0b12f9f.
2011-10-08Introduced OSL_FORMAT, adpated some places to it.Stephan Bergmann
2011-10-08Revert "cppcheck reduce scope of var in sal/... security.c"Norbert Thiebaud
This reverts commit 04028b90252888848c0fc911ea3ad3aa49d9a5b5. use c99 construct in c, which break Microsoft
2011-10-07cppcheck reduce scope of var in sal/... cbptest.cxx and cbvtest.cxxPierre-André Jacquod
2011-10-07cppcheck reduce scope of var in sal/...cbcpytest.cxxPierre-André Jacquod
2011-10-07cppcheck reduce scope in sal/...osl_Pipe.cxxPierre-André Jacquod
2011-10-07cppcheck reduce scope of var in sal/... security.cPierre-André Jacquod
2011-10-05Drop test that require tmp with exec rights.Tomas Chvatal
2011-10-05Removed dangerous rtl::O[U]String[Buffer]::operator sal_{char,Unicode} const *.Stephan Bergmann
As a replacement, added appropriate operator [] functions. All other uses can use getStr().
2011-10-03WaE: unreachable codeTor Lillqvist
2011-10-01easier to find leaks if the test harness doesn't leakCaolán McNamara
2011-09-30-fthreadsafe-statics uses a single lock on Mac OS X and thus leads to deadlock.Stephan Bergmann
2011-09-30add mode-lines to .m files and last round of merged files, etc.Caolán McNamara
2011-09-29Make this cross-platform.Jan Holesovsky