HomeSort by relevance Sort by last modified time
    Searched refs:dll (Results 1 - 25 of 334) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mdnsresponder/mDNSWindows/DLL.NET/
Stdafx.h 28 #using <mscorlib.dll>
29 #using <System.dll>
  /external/python/cpython2/Lib/ctypes/test/
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))
test_slicing.py 69 dll = CDLL(_ctypes_test.__file__)
70 dll.my_strdup.restype = POINTER(c_char)
71 dll.my_free.restype = None
72 res = dll.my_strdup(s)
94 dll.my_free(res)
96 dll.my_strdup.restype = POINTER(c_byte)
97 res = dll.my_strdup(s)
100 dll.my_free(res)
103 dll = CDLL(_ctypes_test.__file__)
109 dll.my_free.restype = Non
    [all...]
test_returnfuncptrs.py 10 # The _ctypes_test shared lib/dll exports quite some functions for testing.
12 dll = CDLL(_ctypes_test.__file__)
13 get_strchr = dll.get_strchr
22 dll = CDLL(_ctypes_test.__file__)
23 get_strchr = dll.get_strchr
36 dll = CDLL(_ctypes_test.__file__)
38 # which denotes a function name and a dll:
39 strchr = CFUNCTYPE(c_char_p, c_char_p, c_char)(("my_strchr", dll))
56 # which denotes a function name and a dll:
  /external/python/cpython3/Lib/ctypes/test/
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))
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.my_free.restype = Non
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_checkretval.py 16 dll = CDLL(_ctypes_test.__file__)
17 self.assertEqual(42, dll._testfunc_p_p(42))
19 dll._testfunc_p_p.restype = CHECKED
20 self.assertEqual("42", dll._testfunc_p_p(42))
22 dll._testfunc_p_p.restype = None
23 self.assertEqual(None, dll._testfunc_p_p(42))
25 del dll._testfunc_p_p.restype
26 self.assertEqual(42, dll._testfunc_p_p(42))
test_slicing.py 68 dll = CDLL(_ctypes_test.__file__)
69 dll.my_strdup.restype = POINTER(c_char)
70 dll.my_free.restype = None
71 res = dll.my_strdup(s)
93 dll.my_free(res)
95 dll.my_strdup.restype = POINTER(c_byte)
96 res = dll.my_strdup(s)
99 dll.my_free(res)
102 dll = CDLL(_ctypes_test.__file__)
108 dll.my_free.restype = Non
    [all...]
test_returnfuncptrs.py 10 # The _ctypes_test shared lib/dll exports quite some functions for testing.
12 dll = CDLL(_ctypes_test.__file__)
13 get_strchr = dll.get_strchr
22 dll = CDLL(_ctypes_test.__file__)
23 get_strchr = dll.get_strchr
36 dll = CDLL(_ctypes_test.__file__)
38 # which denotes a function name and a dll:
39 strchr = CFUNCTYPE(c_char_p, c_char_p, c_char)(("my_strchr", dll))
56 # which denotes a function name and a dll:
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_checkretval.py 16 dll = CDLL(_ctypes_test.__file__)
17 self.assertEqual(42, dll._testfunc_p_p(42))
19 dll._testfunc_p_p.restype = CHECKED
20 self.assertEqual("42", dll._testfunc_p_p(42))
22 dll._testfunc_p_p.restype = None
23 self.assertEqual(None, dll._testfunc_p_p(42))
25 del dll._testfunc_p_p.restype
26 self.assertEqual(42, dll._testfunc_p_p(42))
test_slicing.py 68 dll = CDLL(_ctypes_test.__file__)
69 dll.my_strdup.restype = POINTER(c_char)
70 dll.my_free.restype = None
71 res = dll.my_strdup(s)
93 dll.my_free(res)
95 dll.my_strdup.restype = POINTER(c_byte)
96 res = dll.my_strdup(s)
99 dll.my_free(res)
102 dll = CDLL(_ctypes_test.__file__)
108 dll.my_free.restype = Non
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_checkretval.py 16 dll = CDLL(_ctypes_test.__file__)
17 self.assertEqual(42, dll._testfunc_p_p(42))
19 dll._testfunc_p_p.restype = CHECKED
20 self.assertEqual("42", dll._testfunc_p_p(42))
22 dll._testfunc_p_p.restype = None
23 self.assertEqual(None, dll._testfunc_p_p(42))
25 del dll._testfunc_p_p.restype
26 self.assertEqual(42, dll._testfunc_p_p(42))
test_slicing.py 68 dll = CDLL(_ctypes_test.__file__)
69 dll.my_strdup.restype = POINTER(c_char)
70 dll.my_free.restype = None
71 res = dll.my_strdup(s)
93 dll.my_free(res)
95 dll.my_strdup.restype = POINTER(c_byte)
96 res = dll.my_strdup(s)
99 dll.my_free(res)
102 dll = CDLL(_ctypes_test.__file__)
108 dll.my_free.restype = Non
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_checkretval.py 16 dll = CDLL(_ctypes_test.__file__)
17 self.assertEqual(42, dll._testfunc_p_p(42))
19 dll._testfunc_p_p.restype = CHECKED
20 self.assertEqual("42", dll._testfunc_p_p(42))
22 dll._testfunc_p_p.restype = None
23 self.assertEqual(None, dll._testfunc_p_p(42))
25 del dll._testfunc_p_p.restype
26 self.assertEqual(42, dll._testfunc_p_p(42))
test_slicing.py 68 dll = CDLL(_ctypes_test.__file__)
69 dll.my_strdup.restype = POINTER(c_char)
70 dll.my_free.restype = None
71 res = dll.my_strdup(s)
93 dll.my_free(res)
95 dll.my_strdup.restype = POINTER(c_byte)
96 res = dll.my_strdup(s)
99 dll.my_free(res)
102 dll = CDLL(_ctypes_test.__file__)
108 dll.my_free.restype = Non
    [all...]
  /external/libusb/.private/
bm.sh 33 mkdir -p $target/dll
35 cp -v libusb/.libs/libusb-1.0.dll $target/dll
36 cp -v libusb/.libs/libusb-1.0.dll.a $target/dll
50 mkdir -p $target/dll
52 cp -v libusb/.libs/libusb-1.0.dll $target/dll
53 cp -v libusb/.libs/libusb-1.0.dll.a $target/dll
    [all...]
  /external/compiler-rt/test/asan/TestCases/Windows/
report_globals_reload_dll.cc 1 // Make sure we can handle reloading the same DLL multiple times.
2 // RUN: %clang_cl_asan -LD -O0 -DDLL %s -Fe%t.dll
4 // RUN: %env_asan_opts=report_globals=1 %run %te.exe %t.dll 2>&1 | FileCheck %s
14 printf("Usage: %s [client].dll\n", argv[0]);
19 // CHECK: time to load DLL
20 printf("time to load DLL\n");
23 // CHECK: in DLL(reason=1)
24 // CHECK: in DLL(reason=0)
25 // CHECK: in DLL(reason=1)
26 // CHECK: in DLL(reason=0
30 HMODULE dll = LoadLibrary(dll_name); local
    [all...]
report_globals_vs_freelibrary.cc 1 // RUN: %clang_cl_asan -LD -O0 -DDLL %s -Fe%t.dll
3 // RUN: %env_asan_opts=report_globals=2 %run %te.exe %t.dll 2>&1 | FileCheck %s
13 printf("Usage: %s [client].dll\n", argv[0]);
18 // CHECK: time to load DLL
19 printf("time to load DLL\n");
22 // On DLL load, the "in DLL\n" string is registered:
24 // CHECK: in DLL(reason=1)
25 HMODULE dll = LoadLibrary(dll_name); local
26 if (dll == NULL
    [all...]
  /external/lzma/C/
DllSecur.c 1 /* DllSecur.c -- DLL loading security
48 GetProcAddress(GetModuleHandle(TEXT("kernel32.dll")), "SetDefaultDllDirectories");
61 const char *dll; local
67 for (dll = g_Dlls; dll[0] != 0;)
72 char c = *dll++;
79 lstrcatW(buf, L".dll");
  /external/python/cpython2/PC/VS8.0/
build_ssl.bat 5 if not exist python27_d.dll exit 1
8 if not exist python27.dll exit 1
  /external/python/cpython2/PC/VS9.0/
build_ssl.bat 5 if not exist python27_d.dll exit 1
8 if not exist python27.dll exit 1
  /external/python/cpython3/PCbuild/
prepare_ssl.bat 6 if not exist python36_d.dll exit 1
9 if not exist python36.dll exit 1
  /external/skia/experimental/xps_to_png/
compile_xps_to_png.bat 10 /reference:"PresentationCore.dll" ^
11 /reference:"PresentationFramework.dll" ^
12 /reference:"ReachFramework.dll" ^
13 /reference:"WindowsBase.dll" ^
  /external/skqp/experimental/xps_to_png/
compile_xps_to_png.bat 10 /reference:"PresentationCore.dll" ^
11 /reference:"PresentationFramework.dll" ^
12 /reference:"ReachFramework.dll" ^
13 /reference:"WindowsBase.dll" ^
  /external/lz4/lib/dll/example/
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) \

Completed in 473 milliseconds

1 2 3 4 5 6 7 8 91011>>