Home
last modified time | relevance | path

Searched defs:_this (Results 1 – 6 of 6) sorted by relevance

/reactos/sdk/lib/crt/wine/
H A Dcpp.c124 static void EXCEPTION_ctor(exception *_this, const char** name) in EXCEPTION_ctor()
206 void __thiscall MSVCRT_exception_dtor(exception * _this) in MSVCRT_exception_dtor()
268 const char * __thiscall MSVCRT_what_exception(exception * _this) in MSVCRT_what_exception()
311 void __thiscall MSVCRT_bad_typeid_dtor(bad_typeid * _this) in MSVCRT_bad_typeid_dtor()
496 void __thiscall MSVCRT_bad_cast_dtor(bad_cast * _this) in MSVCRT_bad_cast_dtor()
585 void __thiscall MSVCRT_type_info_dtor(type_info * _this) in MSVCRT_type_info_dtor()
678 void __thiscall MSVCRT_bad_alloc_dtor(bad_alloc * _this) in MSVCRT_bad_alloc_dtor()
822 invalid_scheduler_policy_key * _this) in MSVCRT_invalid_scheduler_policy_key_dtor()
864 invalid_scheduler_policy_value * _this) in MSVCRT_invalid_scheduler_policy_value_dtor()
948 improper_scheduler_attach * _this) in MSVCRT_improper_scheduler_attach_dtor()
[all …]
/reactos/modules/rostests/winetests/ole32/
H A Dpropvariant.c434 static void * WINAPI PMemoryAllocator_Allocate(PMemoryAllocator *_this, ULONG cbSize) in PMemoryAllocator_Allocate()
439 static void WINAPI PMemoryAllocator_Free(PMemoryAllocator *_this, void *pv) in PMemoryAllocator_Free()
/reactos/base/applications/sndrec32/
H A Daudio_wavein.cpp348 audio_wavein *_this = (audio_wavein *)arg; in recording_procedure() local
H A Daudio_waveout.cpp353 audio_waveout *_this = (audio_waveout *)arg; in playing_procedure() local
/reactos/modules/rostests/winetests/msvcrt/
H A Dcpp.c148 #define call_func1(func,_this) call_thiscall_func1(func,_this) argument
149 #define call_func2(func,_this,a) call_thiscall_func2(func,_this,(const void*)(a)) argument
154 #define call_func1(func,_this) func(_this) argument
155 #define call_func2(func,_this,a) func(_this,a) argument
/reactos/dll/win32/oleaut32/
H A Ddispatch.c64 VOID *_this, /* [in] Object to call method on */ in DispInvoke()