/third_party/python/Lib/ctypes/test/ |
H A D | test_slicing.py | 65 dll = CDLL(_ctypes_test.__file__) 66 dll.my_strdup.restype = POINTER(c_char) 67 dll.my_free.restype = None 68 res = dll.my_strdup(s) 88 dll.my_free(res) 90 dll.my_strdup.restype = POINTER(c_byte) 91 res = dll.my_strdup(s) 94 dll.my_free(res) 97 dll = CDLL(_ctypes_test.__file__) 103 dll [all...] |
H A D | test_checkretval.py | 17 dll = CDLL(_ctypes_test.__file__) 18 self.assertEqual(42, dll._testfunc_p_p(42)) 20 dll._testfunc_p_p.restype = CHECKED 21 self.assertEqual("42", dll._testfunc_p_p(42)) 23 dll._testfunc_p_p.restype = None 24 self.assertEqual(None, dll._testfunc_p_p(42)) 26 del dll._testfunc_p_p.restype 27 self.assertEqual(42, dll._testfunc_p_p(42))
|
H A D | test_functions.py | 19 dll = CDLL(_ctypes_test.__file__) variable 59 f = dll._testfunc_i_bhilfd 67 f = dll._testfunc_i_bhilfd 74 f = dll._testfunc_v 82 f = dll._testfunc_i_bhilfd 108 f = dll._testfunc_f_bhilfd 120 f = dll._testfunc_d_bhilfd 133 f = dll._testfunc_D_bhilfD 146 f = dll._testfunc_q_bhilfd 152 f = dll [all...] |
H A D | test_as_parameter.py | 6 dll = CDLL(_ctypes_test.__file__) variable 23 f = dll._testfunc_i_bhilfd 30 f = dll._testfunc_p_p 54 f = dll._testfunc_callback_i_if 73 f = dll._testfunc_callback_i_if 109 f = dll._testfunc_callback_i_if 128 f = dll._testfunc_callback_q_qf 148 result = dll._testfunc_byval(ptin, byref(ptout)) 156 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT)) 157 dll [all...] |
H A D | test_win32.py | 31 dll = CDLL(_ctypes_test.__file__) 36 f = getattr(dll, f"TestSize{i}") 105 dll = CDLL(_ctypes_test.__file__) 108 left = c_long.in_dll(dll, 'left') 109 top = c_long.in_dll(dll, 'top') 110 right = c_long.in_dll(dll, 'right') 111 bottom = c_long.in_dll(dll, 'bottom') 113 PointInRect = dll.PointInRect 117 ReturnRect = dll.ReturnRect
|
H A D | test_returnfuncptrs.py | 9 # The _ctypes_test shared lib/dll exports quite some functions for testing. 11 dll = CDLL(_ctypes_test.__file__) 12 get_strchr = dll.get_strchr 23 dll = CDLL(_ctypes_test.__file__) 24 get_strchr = dll.get_strchr 37 dll = CDLL(_ctypes_test.__file__) 39 # which denotes a function name and a dll: 40 strchr = CFUNCTYPE(c_char_p, c_char_p, c_char)(("my_strchr", dll)) 57 # which denotes a function name and a dll:
|
H A D | test_pointers.py | 23 dll = CDLL(_ctypes_test.__file__) 24 func = dll._testfunc_p_p 41 dll = CDLL(_ctypes_test.__file__) 42 func = dll._testfunc_p_p 80 dll = CDLL(_ctypes_test.__file__) 84 doit = dll._testfunc_callback_with_pointer 146 dll = CDLL(_ctypes_test.__file__) 147 func = dll._testfunc_c_p_p
|
H A D | test_structures.py | 419 dll = CDLL(_ctypes_test.__file__) 420 func = dll._testfunc_large_struct_update_value 449 dll = CDLL(_ctypes_test.__file__) 450 func = dll._testfunc_large_struct_update_value 476 dll = CDLL(_ctypes_test.__file__) 477 func = dll._testfunc_reg_struct_update_value 483 got = X.in_dll(dll, "last_tfrsuv_arg") 516 dll = CDLL(_ctypes_test.__file__) 517 func = dll._testfunc_array_in_struct1 530 func = dll [all...] |
H A D | test_errno.py | 47 dll = WinDLL("kernel32", use_last_error=True) 48 GetModuleHandle = dll.GetModuleHandleA 60 dll = WinDLL("kernel32", use_last_error=False) 61 GetModuleHandle = dll.GetModuleHandleW
|
H A D | test_loading.py | 19 libc_name = "cygwin1.dll" 76 dll = WinDLL(_ctypes_test.__file__) 78 func_ord = dll[2] 79 func_name = dll.GetString 87 self.assertRaises(AttributeError, dll.__getitem__, 1234) 125 ext = "_d.dll" 127 ext = ".dll" 130 # We copy two files and load _sqlite3.dll (formerly .pyd), 131 # which has a dependency on sqlite3.dll. Then we test 134 target = os.path.join(tmp, "_sqlite3.dll") [all...] |
H A D | test_callbacks.py | 167 dll = CDLL(_ctypes_test.__file__) 172 # The integrate function itself, exposed from the _ctypes_test dll 173 integrate = dll.integrate 218 dll = CDLL(_ctypes_test.__file__) 221 func = dll._testfunc_cbk_reg_int 234 dll = CDLL(_ctypes_test.__file__) 238 func = dll._testfunc_cbk_reg_double 278 dll = CDLL(_ctypes_test.__file__) 279 func = dll._testfunc_cbk_large_struct
|
/third_party/skia/third_party/externals/expat/expat/ |
H A D | coverage.sh | 119 # * With WINEDLLPATH Wine looks for .dll.so in these folders, not .dll 121 local mingw_gcc_dll_dir="$(dirname "$(ls -1 /usr/lib*/gcc/i686-w64-mingw32/*/libgcc_s_sjlj-1.dll | head -n1)")" 122 for dll in libgcc_s_sjlj-1.dll libstdc++-6.dll; do 125 ln -s "${mingw_gcc_dll_dir}"/${dll} "${target}"/${dll} 129 local mingw_pthread_dll="$(ls -1 /usr/i686-w64-mingw32/lib*/libwinpthread-1.dll 2>/dev/null | head -n1)" 132 for dll i [all...] |
H A D | qa.sh | 161 /usr/i686-w64-mingw32/lib/libwinpthread-1.dll \ 162 "${mingw32_dir}"/libgcc_s_sjlj-1.dll \ 163 "${mingw32_dir}"/libstdc++-6.dll \ 164 "$PWD"/libexpat{,w}.dll \
|
/third_party/skia/third_party/externals/swiftshader/tests/VulkanUnitTests/ |
H A D | Driver.cpp | 38 , dll(nullptr){ in Driver() 59 HMODULE libvulkan = LoadLibraryA("swiftshader\\libvulkan.dll"); in loadSwiftShader() 64 return load("./build/Release_x64/vk_swiftshader.dll") || in loadSwiftShader() 65 load("./build/Release/vk_swiftshader.dll") || in loadSwiftShader() 66 load("./vk_swiftshader.dll"); in loadSwiftShader() 68 return load("./build/Release_Win32/vk_swiftshader.dll") || in loadSwiftShader() 69 load("./build/Release/vk_swiftshader.dll") || in loadSwiftShader() 70 load("./vk_swiftshader.dll"); in loadSwiftShader() 74 return load("./build/Debug_x64/vk_swiftshader.dll") || in loadSwiftShader() 75 load("./build/Debug/vk_swiftshader.dll") || in loadSwiftShader() [all...] |
/third_party/lz4/lib/ |
H A D | Makefile | 103 liblz4-dll.rc: liblz4-dll.rc.in 111 liblz4-dll.o: liblz4-dll.rc 112 $(WINDRES) -i liblz4-dll.rc -o liblz4-dll.o 114 $(LIBLZ4): $(SRCFILES) liblz4-dll.o 116 $(CC) $(FLAGS) -DLZ4_DLL_EXPORT=1 -shared $^ -o dll/$@.dll -Wl,--out-implib,dll/ [all...] |
/third_party/node/deps/openssl/openssl/crypto/dso/ |
H A D | dso_win32.c | 462 /* We will convert this to "%s.dll" */ in win32_name_converter() 472 sprintf(translated, "%s.dll", filename); in win32_name_converter() 505 HMODULE dll; in win32_pathbyaddr() local 522 dll = LoadLibrary(TEXT(DLLNAME)); in win32_pathbyaddr() 523 if (dll == NULL) { in win32_pathbyaddr() 529 GetProcAddress(dll, "CreateToolhelp32Snapshot"); in win32_pathbyaddr() 531 FreeLibrary(dll); in win32_pathbyaddr() 538 GetProcAddress(dll, "CloseToolhelp32Snapshot"); in win32_pathbyaddr() 542 module_first = (MODULE32) GetProcAddress(dll, "Module32First"); in win32_pathbyaddr() 543 module_next = (MODULE32) GetProcAddress(dll, "Module32Nex in win32_pathbyaddr() 610 HMODULE dll; win32_globallookup() local [all...] |
/third_party/openssl/crypto/dso/ |
H A D | dso_win32.c | 462 /* We will convert this to "%s.dll" */ in win32_name_converter() 472 sprintf(translated, "%s.dll", filename); in win32_name_converter() 505 HMODULE dll; in win32_pathbyaddr() local 522 dll = LoadLibrary(TEXT(DLLNAME)); in win32_pathbyaddr() 523 if (dll == NULL) { in win32_pathbyaddr() 529 GetProcAddress(dll, "CreateToolhelp32Snapshot"); in win32_pathbyaddr() 531 FreeLibrary(dll); in win32_pathbyaddr() 538 GetProcAddress(dll, "CloseToolhelp32Snapshot"); in win32_pathbyaddr() 542 module_first = (MODULE32) GetProcAddress(dll, "Module32First"); in win32_pathbyaddr() 543 module_next = (MODULE32) GetProcAddress(dll, "Module32Nex in win32_pathbyaddr() 610 HMODULE dll; win32_globallookup() local [all...] |
/third_party/lz4/lib/dll/example/ |
H A D | Makefile | 29 DLLDIR := ../dll 47 .PHONY: default fullbench-dll fullbench-lib 52 all: fullbench-dll fullbench-lib 58 fullbench-dll: fullbench.c xxhash.c 59 $(CC) $(FLAGS) $^ -o $@$(EXT) -DLZ4_DLL_IMPORT=1 $(DLLDIR)/liblz4.dll 62 @$(RM) fullbench-dll$(EXT) fullbench-lib$(EXT) \
|
/third_party/skia/third_party/externals/angle2/src/ |
H A D | copy_compiler_dll.bat | 4 copy %2"\Redist\D3D\"%_arch%"\d3dcompiler_47.dll" %3 > NUL
8 :: so it's timestamp would otherwise be newer than the dll.
9 copy /b %3\d3dcompiler_47.dll+,, %3\d3dcompiler_47.dll > NUL
|
/third_party/skia/experimental/xps_to_png/ |
H A D | compile_xps_to_png.bat | 10 /reference:"PresentationCore.dll" ^ 11 /reference:"PresentationFramework.dll" ^ 12 /reference:"ReachFramework.dll" ^ 13 /reference:"WindowsBase.dll" ^
|
/third_party/lzma/C/ |
H A D | DllSecur.c | 64 (Func_SetDefaultDllDirectories) MY_CAST_FUNC GetProcAddress(GetModuleHandle(TEXT("kernel32.dll")), \
83 const char *dll;
in LoadSecurityDlls() local 89 for (dll = g_Dlls; *dll != 0;)
in LoadSecurityDlls() 94 const char c = *dll++;
in LoadSecurityDlls() 104 // lstrcatW(buf, L".dll");
in LoadSecurityDlls()
|
/third_party/libwebsockets/lib/core-net/ |
H A D | dummy-callback.c | 114 struct lws_dll2 *dll; in lws_callback_ws_proxy() local 183 dll = lws_dll2_get_head(&wsi->ws->proxy_owner); in lws_callback_ws_proxy() 184 if (!dll) in lws_callback_ws_proxy() 187 pkt = (struct lws_proxy_pkt *)dll; in lws_callback_ws_proxy() 194 lws_dll2_remove(dll); in lws_callback_ws_proxy() 227 dll = lws_dll2_get_head(&wsi->ws->proxy_owner); in lws_callback_ws_proxy() 228 if (!dll) in lws_callback_ws_proxy() 231 pkt = (struct lws_proxy_pkt *)dll; in lws_callback_ws_proxy() 240 lws_dll2_remove(dll); in lws_callback_ws_proxy()
|
/third_party/icu/icu4c/source/samples/ufortune/resources/ |
H A D | fortune_resources.mak | 53 all: fortune_resources.dll 55 fortune_resources.dll: $(RESFILES) 56 $(ICUDIR)\$(BIN)\pkgdata --name fortune_resources -v --mode dll -d . res-file-list.txt
|
/third_party/skia/third_party/externals/icu/source/samples/ufortune/resources/ |
H A D | fortune_resources.mak | 53 all: fortune_resources.dll 55 fortune_resources.dll: $(RESFILES) 56 $(ICUDIR)\$(BIN)\pkgdata --name fortune_resources -v --mode dll -d . res-file-list.txt
|
/third_party/mbedtls/library/ |
H A D | Makefile | 97 DLEXT = dll 274 libmbedtls.dll: $(OBJS_TLS) libmbedx509.dll 303 libmbedx509.dll: $(OBJS_X509) libmbedcrypto.dll 332 libmbedcrypto.dll: $(OBJS_CRYPTO)
|