Esempio n. 1
0
 void _ctor(std::size_t port, const std::string& host_name)
 {
    hostent* host_ent;
    
    host_ent = ::gethostbyname(host_name.c_str());
    
    _ctor(port, host_ent->h_name);
 }
Esempio n. 2
0
 string() : _m_size(0), _m_container(0) { _ctor(); }
Esempio n. 3
0
 string& operator=(const string& _Rhs) { if (*this != _Rhs)_ctor(); _copy(_Rhs); }     
Esempio n. 4
0
test_task() { _ctor(); }
Esempio n. 5
0
tester(std::size_t threads, void* object) { _ctor(threads, object); }
Esempio n. 6
0
tester(std::size_t threads = 0) { _ctor(threads); }
Esempio n. 7
0
T StringBuffer_create(int hint) {
        if (hint <= 0)
                THROW(AssertException, "Illegal hint value");
        return _ctor(hint);
}
Esempio n. 8
0
 string(std::string _String) : _m_size(0), _m_container(0) { _ctor(_String.c_str()); }
Esempio n. 9
0
 socket(const std::string& host_name, std::size_t port) { _ctor(port, host_name); }
Esempio n. 10
0
 socket(const char* const ip, std::size_t port) { _ctor(port, ip); }
Esempio n. 11
0
 socket(std::size_t port) { _ctor(port); }
Esempio n. 12
0
template <typename T, typename... Tp> inline T __init(Tp... params) 
{
	auto t = T();		
	t._ctor(params...);
	return t;
} 
Esempio n. 13
0
template <typename T, typename... Tp> inline T* __new(Tp... params) 
{
	auto t = new T();		
	t->_ctor(params...);
	return t;
} 
Esempio n. 14
0
 string(char* _String) : _m_size(0), _m_container(0) { _ctor(_String); }
Esempio n. 15
0
 parser() : _m_filename(0) { _ctor(); }
Esempio n. 16
0
 string(const char* _String) : _m_size(0), _m_container(0) { _ctor(const_cast< char* >(_String)); }
Esempio n. 17
0
 parser(ev4::string<>& _FileName, std::size_t _BufferSize = 81) : _m_filename(0) { _ctor(_FileName, _BufferSize); }
Esempio n. 18
0
 cas_lock() { _ctor(); }
Esempio n. 19
0
T StringBuffer_new(const char *s) {
        return StringBuffer_append(_ctor(STRLEN), "%s", s);
}