/external/freetype/src/tools/ |
D | apinames.c | 137 const char* dll_name ) in names_dump() argument 145 if ( dll_name ) in names_dump() 146 fprintf( out, "LIBRARY %s\n", dll_name ); in names_dump() 157 if ( dll_name ) in names_dump() 158 fprintf( out, "LIBRARY %s\n", dll_name ); in names_dump() 173 if ( !dll_name ) in names_dump() 181 dot = strchr( dll_name, '.' ); in names_dump() 185 int len = dot - dll_name; in names_dump() 191 memcpy( temp, dll_name, len ); in names_dump() 194 dll_name = (const char*)temp; in names_dump() [all …]
|
/external/compiler-rt/test/asan/TestCases/Windows/ |
D | dll_host.cc | 33 const char *dll_name = argv[1]; in main() local 35 HMODULE h = LoadLibrary(dll_name); in main() 38 dll_name, GetLastError()); in main()
|
D | report_globals_vs_freelibrary.cc | 16 const char *dll_name = argv[1]; in main() local 25 HMODULE dll = LoadLibrary(dll_name); in main()
|
D | report_globals_reload_dll.cc | 17 const char *dll_name = argv[1]; in main() local 30 HMODULE dll = LoadLibrary(dll_name); in main()
|
/external/tensorflow/tensorflow/python/platform/ |
D | self_check.py | 44 for dll_name in build_info.build_info[MSVCP_DLL_NAMES].split(","): 46 ctypes.WinDLL(dll_name) 48 missing.append(dll_name)
|
/external/webrtc/modules/audio_device/linux/ |
D | latebindingsymboltable_linux.cc | 36 DllHandle InternalLoadDll(absl::string_view dll_name) { in InternalLoadDll() argument 38 DllHandle handle = dlopen(std::string(dll_name).c_str(), RTLD_NOW); in InternalLoadDll() 43 RTC_LOG(LS_WARNING) << "Can't load " << dll_name << " : " << GetDllError(); in InternalLoadDll()
|
/external/cronet/base/win/ |
D | win_util_unittest.cc | 60 const FilePath::CharType dll_name[] = FILE_PATH_LITERAL("zipfldr.dll"); in TEST() local 61 ASSERT_EQ(nullptr, ::GetModuleHandle(dll_name)); in TEST() 63 ScopedNativeLibrary new_dll((FilePath(dll_name))); in TEST()
|
/external/python/setuptools/setuptools/_distutils/ |
D | cygwinccompiler.py | 197 (dll_name, dll_extension) = os.path.splitext( 201 def_file = os.path.join(temp_dir, dll_name + ".def") 202 lib_file = os.path.join(temp_dir, 'lib' + dll_name + ".a")
|
D | _msvccompiler.py | 485 (dll_name, dll_ext) = os.path.splitext( 489 self.library_filename(dll_name))
|
D | msvccompiler.py | 510 (dll_name, dll_ext) = os.path.splitext( 514 self.library_filename(dll_name))
|
D | msvc9compiler.py | 623 (dll_name, dll_ext) = os.path.splitext( 627 self.library_filename(dll_name))
|
/external/python/cpython3/Lib/distutils/ |
D | cygwinccompiler.py | 199 (dll_name, dll_extension) = os.path.splitext( 203 def_file = os.path.join(temp_dir, dll_name + ".def") 204 lib_file = os.path.join(temp_dir, 'lib' + dll_name + ".a")
|
D | _msvccompiler.py | 481 (dll_name, dll_ext) = os.path.splitext( 485 self.library_filename(dll_name))
|
D | msvccompiler.py | 510 (dll_name, dll_ext) = os.path.splitext( 514 self.library_filename(dll_name))
|
D | msvc9compiler.py | 623 (dll_name, dll_ext) = os.path.splitext( 627 self.library_filename(dll_name))
|
/external/python/cpython2/Lib/distutils/ |
D | cygwinccompiler.py | 205 (dll_name, dll_extension) = os.path.splitext( 209 def_file = os.path.join(temp_dir, dll_name + ".def") 210 lib_file = os.path.join(temp_dir, 'lib' + dll_name + ".a")
|
D | emxccompiler.py | 128 (dll_name, dll_extension) = os.path.splitext( 132 def_file = os.path.join(temp_dir, dll_name + ".def")
|
D | msvccompiler.py | 520 (dll_name, dll_ext) = os.path.splitext( 524 self.library_filename(dll_name))
|
D | msvc9compiler.py | 636 (dll_name, dll_ext) = os.path.splitext( 640 self.library_filename(dll_name))
|
/external/crosvm/src/sys/windows/ |
D | main.rs | 110 fn report_dll_loaded(dll_name: String) { in report_dll_loaded() 112 dll_load_details.set_dll_base_name(dll_name); in report_dll_loaded()
|
/external/crosvm/sandbox/src/ |
D | lib.rs | 658 pub fn add_dll_to_unload(&mut self, dll_name: &str) -> Result<()> { in add_dll_to_unload() 662 bindings::sbox_add_dll_to_unload(self.policy.0, win32_wide_string(dll_name).as_ptr()) in add_dll_to_unload()
|
/external/crosvm/sandbox/ |
D | bindings.rs | 412 dll_name: *const wchar_t, in sbox_add_dll_to_unload()
|