#include "ace/config-all.h"
#include "ace/Object_Manager_Base.h"
#include "ace/OS_NS_string.h"
#include "ace/Global_Macros.h"
#include "ace/os_include/os_errno.h"
#include "ace/os_include/os_search.h"
Include dependency graph for OS_NS_stdlib.inl:
This graph shows which files directly or indirectly include this file:
Defines | |
#define | ACE_WCHAR_STD_NAMESPACE ACE_STD_NAMESPACE |
Functions | |
ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_INLINE void | ACE_OS::_exit (int status) |
ACE_INLINE void | ACE_OS::abort (void) |
ACE_INLINE int | ACE_OS::atexit (ACE_EXIT_HOOK func) |
ACE_INLINE int | ACE_OS::atoi (const char *s) |
ACE_INLINE int | ACE_OS::atoi (const wchar_t *s) |
ACE_INLINE void * | ACE_OS::atop (const char *s) |
ACE_INLINE void * | ACE_OS::atop (const wchar_t *s) |
ACE_INLINE void * | ACE_OS::bsearch (const void *key, const void *base, size_t nel, size_t size, ACE_COMPARE_FUNC compar) |
ACE_INLINE char * | ACE_OS::getenv (const char *symbol) |
ACE_INLINE wchar_t * | ACE_OS::getenv (const wchar_t *symbol) |
ACE_INLINE char * | ACE_OS::itoa (int value, char *string, int radix) |
Converts an integer to a string. | |
ACE_INLINE wchar_t * | ACE_OS::itoa (int value, wchar_t *string, int radix) |
Converts an integer to a string. | |
ACE_INLINE ACE_HANDLE | ACE_OS::mkstemp (char *s) |
ACE_INLINE ACE_HANDLE | ACE_OS::mkstemp (wchar_t *s) |
ACE_INLINE char * | ACE_OS::mktemp (char *s) |
ACE_INLINE wchar_t * | ACE_OS::mktemp (wchar_t *s) |
ACE_INLINE int | ACE_OS::putenv (const char *string) |
ACE_INLINE int | ACE_OS::putenv (const wchar_t *string) |
ACE_INLINE void | ACE_OS::qsort (void *base, size_t nel, size_t width, ACE_COMPARE_FUNC compar) |
ACE_INLINE int | ACE_OS::rand (void) |
ACE_INLINE int | ACE_OS::rand_r (ACE_RANDR_TYPE &seed) |
ACE_INLINE char * | ACE_OS::realpath (const char *file_name, char *resolved_name) |
ACE_INLINE wchar_t * | ACE_OS::realpath (const wchar_t *file_name, wchar_t *resolved_name) |
ACE_INLINE ACE_EXIT_HOOK | ACE_OS::set_exit_hook (ACE_EXIT_HOOK exit_hook) |
For use by ACE_Object_Manager only, to register its exit hook.. | |
ACE_INLINE void | ACE_OS::srand (u_int seed) |
ACE_INLINE ACE_TCHAR * | ACE_OS::strenvdup (const ACE_TCHAR *str) |
ACE_INLINE double | ACE_OS::strtod (const char *s, char **endptr) |
Converts a string to a double value (char version). | |
ACE_INLINE double | ACE_OS::strtod (const wchar_t *s, wchar_t **endptr) |
Converts a string to a double value (wchar_t version). | |
ACE_INLINE long | ACE_OS::strtol (const char *s, char **ptr, int base) |
Converts a string to a long value (char version). | |
ACE_INLINE long | ACE_OS::strtol (const wchar_t *s, wchar_t **ptr, int base) |
Converts a string to a long value (wchar_t version). | |
ACE_INLINE unsigned long | ACE_OS::strtoul (const char *s, char **ptr, int base) |
Converts a string to an unsigned long value (char version). | |
ACE_INLINE unsigned long | ACE_OS::strtoul (const wchar_t *s, wchar_t **ptr, int base) |
Converts a string to an unsigned long value (wchar_t version). | |
ACE_INLINE int | ACE_OS::system (const ACE_TCHAR *s) |
#define ACE_WCHAR_STD_NAMESPACE ACE_STD_NAMESPACE |