Home
last modified time | relevance | path

Searched refs:__stdcall (Results 1 – 25 of 208) sorted by relevance

123456789

/third_party/cef/tests/cefclient/browser/
Dosr_dragdrop_win.h26 HRESULT __stdcall QueryInterface(const IID& iid, void** object) { \
41 ULONG __stdcall AddRef() { return ++ref_count_; } \
42 ULONG __stdcall Release() { \
65 HRESULT __stdcall DragEnter(IDataObject* data_object,
70 HRESULT __stdcall DragOver(DWORD key_state,
74 HRESULT __stdcall DragLeave();
76 HRESULT __stdcall Drop(IDataObject* data_object,
101 HRESULT __stdcall GiveFeedback(DWORD dwEffect);
103 HRESULT __stdcall QueryContinueDrag(BOOL fEscapePressed, DWORD grfKeyState);
122 HRESULT __stdcall Next(ULONG celt,
[all …]
/third_party/boost/boost/nowide/
Dwindows.hpp20 __declspec(dllimport) wchar_t* __stdcall GetEnvironmentStringsW(void);
21 __declspec(dllimport) int __stdcall FreeEnvironmentStringsW(wchar_t*);
22 __declspec(dllimport) wchar_t* __stdcall GetCommandLineW(void);
23 __declspec(dllimport) wchar_t** __stdcall CommandLineToArgvW(const wchar_t*, int*);
24 __declspec(dllimport) unsigned long __stdcall GetLastError();
25 __declspec(dllimport) void* __stdcall LocalFree(void*);
26 __declspec(dllimport) int __stdcall SetEnvironmentVariableW(const wchar_t*, const wchar_t*);
27 __declspec(dllimport) unsigned long __stdcall GetEnvironmentVariableW(const wchar_t*, wchar_t*, uns…
/third_party/boost/libs/bind/test/
Dbind_stdcall_mf_test.cpp41 int __stdcall f0() { f1(17); return 0; } in f0()
42 int __stdcall g0() const { g1(17); return 0; } in g0()
44 int __stdcall f1(int a1) { hash = (hash * 17041 + a1) % 32768; return 0; } in f1()
45 int __stdcall g1(int a1) const { hash = (hash * 17041 + a1 * 2) % 32768; return 0; } in g1()
47 int __stdcall f2(int a1, int a2) { f1(a1); f1(a2); return 0; } in f2()
48 int __stdcall g2(int a1, int a2) const { g1(a1); g1(a2); return 0; } in g2()
50 int __stdcall f3(int a1, int a2, int a3) { f2(a1, a2); f1(a3); return 0; } in f3()
51 int __stdcall g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3()
53 int __stdcall f4(int a1, int a2, int a3, int a4) { f3(a1, a2, a3); f1(a4); return 0; } in f4()
54 int __stdcall g4(int a1, int a2, int a3, int a4) const { g3(a1, a2, a3); g1(a4); return 0; } in g4()
[all …]
Dbind_stdcall_test.cpp39 long __stdcall f_0() in f_0()
44 long __stdcall f_1(long a) in f_1()
49 long __stdcall f_2(long a, long b) in f_2()
54 long __stdcall f_3(long a, long b, long c) in f_3()
59 long __stdcall f_4(long a, long b, long c, long d) in f_4()
64 long __stdcall f_5(long a, long b, long c, long d, long e) in f_5()
69 long __stdcall f_6(long a, long b, long c, long d, long e, long f) in f_6()
74 long __stdcall f_7(long a, long b, long c, long d, long e, long f, long g) in f_7()
79 long __stdcall f_8(long a, long b, long c, long d, long e, long f, long g, long h) in f_8()
84 long __stdcall f_9(long a, long b, long c, long d, long e, long f, long g, long h, long i) in f_9()
Dmem_fn_stdcall_test.cpp50 int __stdcall f0() { f1(17); return 0; } in f0()
51 int __stdcall g0() const { g1(17); return 0; } in g0()
53 int __stdcall f1(int a1) { hash = (hash * 17041 + a1) % 32768; return 0; } in f1()
54 int __stdcall g1(int a1) const { hash = (hash * 17041 + a1 * 2) % 32768; return 0; } in g1()
56 int __stdcall f2(int a1, int a2) { f1(a1); f1(a2); return 0; } in f2()
57 int __stdcall g2(int a1, int a2) const { g1(a1); g1(a2); return 0; } in g2()
59 int __stdcall f3(int a1, int a2, int a3) { f2(a1, a2); f1(a3); return 0; } in f3()
60 int __stdcall g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3()
62 int __stdcall f4(int a1, int a2, int a3, int a4) { f3(a1, a2, a3); f1(a4); return 0; } in f4()
63 int __stdcall g4(int a1, int a2, int a3, int a4) const { g3(a1, a2, a3); g1(a4); return 0; } in g4()
[all …]
/third_party/boost/libs/phoenix/test/boost_bind_compatibility/
Dbind_stdcall_mf_test.cpp42 int __stdcall f0() { f1(17); return 0; } in f0()
43 int __stdcall g0() const { g1(17); return 0; } in g0()
45 int __stdcall f1(int a1) { hash = (hash * 17041 + a1) % 32768; return 0; } in f1()
46 int __stdcall g1(int a1) const { hash = (hash * 17041 + a1 * 2) % 32768; return 0; } in g1()
48 int __stdcall f2(int a1, int a2) { f1(a1); f1(a2); return 0; } in f2()
49 int __stdcall g2(int a1, int a2) const { g1(a1); g1(a2); return 0; } in g2()
51 int __stdcall f3(int a1, int a2, int a3) { f2(a1, a2); f1(a3); return 0; } in f3()
52 int __stdcall g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3()
54 int __stdcall f4(int a1, int a2, int a3, int a4) { f3(a1, a2, a3); f1(a4); return 0; } in f4()
55 int __stdcall g4(int a1, int a2, int a3, int a4) const { g3(a1, a2, a3); g1(a4); return 0; } in g4()
[all …]
Dbind_stdcall_test.cpp38 long __stdcall f_0() in f_0()
43 long __stdcall f_1(long a) in f_1()
48 long __stdcall f_2(long a, long b) in f_2()
53 long __stdcall f_3(long a, long b, long c) in f_3()
58 long __stdcall f_4(long a, long b, long c, long d) in f_4()
63 long __stdcall f_5(long a, long b, long c, long d, long e) in f_5()
68 long __stdcall f_6(long a, long b, long c, long d, long e, long f) in f_6()
73 long __stdcall f_7(long a, long b, long c, long d, long e, long f, long g) in f_7()
78 long __stdcall f_8(long a, long b, long c, long d, long e, long f, long g, long h) in f_8()
83 long __stdcall f_9(long a, long b, long c, long d, long e, long f, long g, long h, long i) in f_9()
/third_party/python/Modules/_ctypes/
D_ctypes_test.c399 # ifndef __stdcall
400 # define __stdcall /* */ macro
406 int (__stdcall *s)(int, int);
650 EXPORT(signed char) __stdcall s_tf_b(signed char c) { S; return c/3; } in EXPORT()
651 EXPORT(unsigned char) __stdcall s_tf_B(unsigned char c) { U; return c/3; } in EXPORT()
652 EXPORT(short) __stdcall s_tf_h(short c) { S; return c/3; } in EXPORT()
653 EXPORT(unsigned short) __stdcall s_tf_H(unsigned short c) { U; return c/3; } in EXPORT()
654 EXPORT(int) __stdcall s_tf_i(int c) { S; return c/3; } in EXPORT()
655 EXPORT(unsigned int) __stdcall s_tf_I(unsigned int c) { U; return c/3; } in EXPORT()
656 EXPORT(long) __stdcall s_tf_l(long c) { S; return c/3; } in EXPORT()
[all …]
/third_party/boost/boost/asio/detail/
Dwin_thread.hpp34 BOOST_ASIO_DECL unsigned int __stdcall win_thread_function(void* arg);
37 BOOST_ASIO_DECL void __stdcall apc_function(ULONG data);
39 BOOST_ASIO_DECL void __stdcall apc_function(ULONG_PTR data);
87 friend BOOST_ASIO_DECL unsigned int __stdcall win_thread_function(void* arg);
90 friend BOOST_ASIO_DECL void __stdcall apc_function(ULONG);
92 friend BOOST_ASIO_DECL void __stdcall apc_function(ULONG_PTR);
/third_party/boost/libs/asio/include/boost/asio/detail/
Dwin_thread.hpp34 BOOST_ASIO_DECL unsigned int __stdcall win_thread_function(void* arg);
37 BOOST_ASIO_DECL void __stdcall apc_function(ULONG data);
39 BOOST_ASIO_DECL void __stdcall apc_function(ULONG_PTR data);
87 friend BOOST_ASIO_DECL unsigned int __stdcall win_thread_function(void* arg);
90 friend BOOST_ASIO_DECL void __stdcall apc_function(ULONG);
92 friend BOOST_ASIO_DECL void __stdcall apc_function(ULONG_PTR);
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/converged/
DCompositorNativeWindow11.h43 using WindowsCreateStringReference_ = HRESULT __stdcall(PCWSTR,
48 using GetActivationFactory_ = HRESULT __stdcall(HSTRING, REFIID, void **);
50 using WindowsCompareStringOrginal_ = HRESULT __stdcall(HSTRING, HSTRING, int *);
52 using WindowsDeleteString_ = HRESULT __stdcall(HSTRING);
55 HRESULT __stdcall(DispatcherQueueOptions,
58 using RoInitialize_ = HRESULT __stdcall(RO_INIT_TYPE);
59 using RoUninitialize_ = void __stdcall();
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/converged/
DCompositorNativeWindow11.h43 using WindowsCreateStringReference_ = HRESULT __stdcall(PCWSTR,
48 using GetActivationFactory_ = HRESULT __stdcall(HSTRING, REFIID, void **);
50 using WindowsCompareStringOrginal_ = HRESULT __stdcall(HSTRING, HSTRING, int *);
52 using WindowsDeleteString_ = HRESULT __stdcall(HSTRING);
55 HRESULT __stdcall(DispatcherQueueOptions,
58 using RoInitialize_ = HRESULT __stdcall(RO_INIT_TYPE);
59 using RoUninitialize_ = void __stdcall();
/third_party/boost/boost/signals2/detail/
Dlwm_win32_cs.hpp61 extern "C" __declspec(dllimport) void __stdcall InitializeCriticalSectionEx(::_RTL_CRITICAL_SECTION…
63 extern "C" __declspec(dllimport) void __stdcall InitializeCriticalSection(::_RTL_CRITICAL_SECTION *…
65 extern "C" __declspec(dllimport) void __stdcall EnterCriticalSection(::_RTL_CRITICAL_SECTION *);
66 extern "C" __declspec(dllimport) int __stdcall TryEnterCriticalSection(::_RTL_CRITICAL_SECTION *);
67 extern "C" __declspec(dllimport) void __stdcall LeaveCriticalSection(::_RTL_CRITICAL_SECTION *);
68 extern "C" __declspec(dllimport) void __stdcall DeleteCriticalSection(::_RTL_CRITICAL_SECTION *);
/third_party/gstreamer/gstplugins_bad/sys/mediafoundation/
Dgstmfplatloader.c47 HRESULT (__stdcall * GstMFTEnum2) (GUID guidCategory,
55 HRESULT (__stdcall * GstMFCreateDXGIDeviceManager) (UINT * resetToken,
58 HRESULT (__stdcall * GstMFCreateVideoSampleAllocatorEx) (REFIID riid,
99 HRESULT __stdcall
112 HRESULT __stdcall
122 HRESULT __stdcall
Dgstmfplatloader.h30 HRESULT __stdcall GstMFTEnum2 (GUID guidCategory,
38 HRESULT __stdcall GstMFCreateDXGIDeviceManager (UINT * resetToken,
41 HRESULT __stdcall GstMFCreateVideoSampleAllocatorEx (REFIID riid,
/third_party/boost/boost/container/detail/
Dthread_mutex.hpp107 extern "C" __declspec(dllimport) int __stdcall InitializeCriticalSectionEx(::_RTL_CRITICAL_SECTION …
109 extern "C" __declspec(dllimport) void __stdcall InitializeCriticalSection(::_RTL_CRITICAL_SECTION *…
111 extern "C" __declspec(dllimport) void __stdcall EnterCriticalSection(::_RTL_CRITICAL_SECTION *);
112 extern "C" __declspec(dllimport) void __stdcall LeaveCriticalSection(::_RTL_CRITICAL_SECTION *);
113 extern "C" __declspec(dllimport) void __stdcall DeleteCriticalSection(::_RTL_CRITICAL_SECTION *);
/third_party/boost/boost/type_traits/detail/
Dis_function_cxx_11.hpp106 struct is_function<Ret __stdcall(Args...)BOOST_TT_NOEXCEPT_DECL> : public true_type {};
123 struct is_function<Ret __stdcall(Args...)const BOOST_TT_NOEXCEPT_DECL> : public true_type {};
140 struct is_function<Ret __stdcall(Args...)volatile BOOST_TT_NOEXCEPT_DECL> : public true_type {};
157 …struct is_function<Ret __stdcall(Args...)const volatile BOOST_TT_NOEXCEPT_DECL> : public true_type…
175 struct is_function<Ret __stdcall(Args...)&BOOST_TT_NOEXCEPT_DECL> : public true_type {};
192 struct is_function<Ret __stdcall(Args...)const &BOOST_TT_NOEXCEPT_DECL> : public true_type {};
209 struct is_function<Ret __stdcall(Args...)volatile &BOOST_TT_NOEXCEPT_DECL> : public true_type {};
226 …struct is_function<Ret __stdcall(Args...)const volatile &BOOST_TT_NOEXCEPT_DECL> : public true_typ…
244 struct is_function<Ret __stdcall(Args...) && BOOST_TT_NOEXCEPT_DECL> : public true_type {};
261 struct is_function<Ret __stdcall(Args...)const &&BOOST_TT_NOEXCEPT_DECL> : public true_type {};
[all …]
Dis_member_function_pointer_cxx_11.hpp118 …struct is_member_function_pointer<Ret (__stdcall C::*)(Args...)BOOST_TT_NOEXCEPT_DECL> : public tr…
138 …struct is_member_function_pointer<Ret (__stdcall C::*)(Args...)const BOOST_TT_NOEXCEPT_DECL> : pub…
158 …struct is_member_function_pointer<Ret (__stdcall C::*)(Args...)volatile BOOST_TT_NOEXCEPT_DECL> : …
178 …struct is_member_function_pointer<Ret (__stdcall C::*)(Args...)const volatile BOOST_TT_NOEXCEPT_DE…
198 …struct is_member_function_pointer<Ret (__stdcall C::*)(Args...)&BOOST_TT_NOEXCEPT_DECL> : public t…
218 …struct is_member_function_pointer<Ret (__stdcall C::*)(Args...)const &BOOST_TT_NOEXCEPT_DECL> : pu…
238 …struct is_member_function_pointer<Ret (__stdcall C::*)(Args...)volatile &BOOST_TT_NOEXCEPT_DECL> :…
258 …struct is_member_function_pointer<Ret (__stdcall C::*)(Args...)const volatile &BOOST_TT_NOEXCEPT_D…
278 …struct is_member_function_pointer<Ret (__stdcall C::*)(Args...) && BOOST_TT_NOEXCEPT_DECL> : publi…
298 …struct is_member_function_pointer<Ret (__stdcall C::*)(Args...)const &&BOOST_TT_NOEXCEPT_DECL> : p…
[all …]
/third_party/boost/boost/smart_ptr/detail/
Dlwm_win32_cs.hpp52 extern "C" __declspec(dllimport) void __stdcall InitializeCriticalSection(::_RTL_CRITICAL_SECTION *…
53 extern "C" __declspec(dllimport) void __stdcall EnterCriticalSection(::_RTL_CRITICAL_SECTION *);
54 extern "C" __declspec(dllimport) void __stdcall LeaveCriticalSection(::_RTL_CRITICAL_SECTION *);
55 extern "C" __declspec(dllimport) void __stdcall DeleteCriticalSection(::_RTL_CRITICAL_SECTION *);
Dsp_interlocked.hpp151 extern "C" __declspec(dllimport) long __stdcall InterlockedIncrement( long volatile * );
152 extern "C" __declspec(dllimport) long __stdcall InterlockedDecrement( long volatile * );
153 extern "C" __declspec(dllimport) long __stdcall InterlockedCompareExchange( long volatile *, long, …
154 extern "C" __declspec(dllimport) long __stdcall InterlockedExchange( long volatile *, long );
155 extern "C" __declspec(dllimport) long __stdcall InterlockedExchangeAdd( long volatile *, long );
/third_party/e2fsprogs/lib/uuid/
Dgen_uuid_nt.c35 __stdcall
44 (__stdcall*
61 __stdcall
/third_party/flutter/engine/flutter/shell/platform/windows/
Dwin32_dpi_helper.h35 using EnableNonClientDpiScaling_ = BOOL __stdcall(HWND);
36 using GetDpiForWindow_ = UINT __stdcall(HWND);
37 using SetProcessDpiAwarenessContext_ = BOOL __stdcall(DPI_AWARENESS_CONTEXT);
/third_party/flutter/skia/third_party/externals/angle2/util/windows/third_party/StackWalker/src/
DStackWalker.cpp183 typedef BOOL(__stdcall* PREAD_PROCESS_MEMORY_ROUTINE64)(HANDLE hProcess,
188 typedef PVOID(__stdcall* PFUNCTION_TABLE_ACCESS_ROUTINE64)(HANDLE hProcess, DWORD64 AddrBase);
189 typedef DWORD64(__stdcall* PGET_MODULE_BASE_ROUTINE64)(HANDLE hProcess, DWORD64 Address);
190 typedef DWORD64(__stdcall* PTRANSLATE_ADDRESS_ROUTINE64)(HANDLE hProcess,
462 typedef BOOL(__stdcall* tSC)(IN HANDLE hProcess);
466 typedef PVOID(__stdcall* tSFTA)(HANDLE hProcess, DWORD64 AddrBase);
470 typedef BOOL(__stdcall* tSGLFA)(IN HANDLE hProcess,
477 typedef DWORD64(__stdcall* tSGMB)(IN HANDLE hProcess, IN DWORD64 dwAddr);
481 typedef BOOL(__stdcall* tSGMI)(IN HANDLE hProcess,
487 typedef DWORD(__stdcall* tSGO)(VOID);
[all …]
/third_party/skia/third_party/externals/angle2/util/windows/third_party/StackWalker/src/
DStackWalker.cpp183 typedef BOOL(__stdcall* PREAD_PROCESS_MEMORY_ROUTINE64)(HANDLE hProcess,
188 typedef PVOID(__stdcall* PFUNCTION_TABLE_ACCESS_ROUTINE64)(HANDLE hProcess, DWORD64 AddrBase);
189 typedef DWORD64(__stdcall* PGET_MODULE_BASE_ROUTINE64)(HANDLE hProcess, DWORD64 Address);
190 typedef DWORD64(__stdcall* PTRANSLATE_ADDRESS_ROUTINE64)(HANDLE hProcess,
462 typedef BOOL(__stdcall* tSC)(IN HANDLE hProcess);
466 typedef PVOID(__stdcall* tSFTA)(HANDLE hProcess, DWORD64 AddrBase);
470 typedef BOOL(__stdcall* tSGLFA)(IN HANDLE hProcess,
477 typedef DWORD64(__stdcall* tSGMB)(IN HANDLE hProcess, IN DWORD64 dwAddr);
481 typedef BOOL(__stdcall* tSGMI)(IN HANDLE hProcess,
487 typedef DWORD(__stdcall* tSGO)(VOID);
[all …]
/third_party/boost/libs/type_traits/test/
Dis_function_test.cpp85 typedef void __stdcall sfoo0_t();
86 typedef void __stdcall sfoo1_t(int);
87 typedef void __stdcall sfoo2_t(int&, double);
88 typedef void __stdcall sfoo3_t(int&, bool, int, int);
89 typedef void __stdcall sfoo4_t(int, bool, int*, int[], int, int, int, int, int);

123456789