/external/chromium_org/chrome/app/ |
delay_load_hook_win.cc | 34 std::string dll_name(info->szDll); 36 if (EndsWith(dll_name, kDelaySuffix, false)) { 38 dll_name.resize(dll_name.length() - (sizeof(kDelaySuffix) - 1)); 39 dll_name.append(".dll"); 41 return reinterpret_cast<FARPROC>(::LoadLibraryA(dll_name.c_str()));
|
delay_load_hook_unittest_win.cc | 30 void SetupInfo(const char* dll_name) { 34 info_.szDll = dll_name;
|
client_util.cc | 155 const wchar_t* dll_name = installer::kChromeDll; local 157 const wchar_t* dll_name = local 163 dir->append(dll_name);
|
/external/chromium_org/sandbox/win/sandbox_poc/ |
sandbox.cc | 18 std::string * dll_name, 21 DCHECK(dll_name); 24 if (!dll_name || !entry_point || !log_file) 41 *dll_name = std::string(dll_name_wide.begin(), dll_name_wide.end()); 128 std::string dll_name, entry_point; local 131 &dll_name, 152 HMODULE dll_module = ::LoadLibraryA(dll_name.c_str());
|
/external/chromium_org/build/win/importlibs/ |
create_importlib_win.py | 77 def _WriteDefFile(self, dll_name, import_names, output_file): 79 output_file.write('NAME %s\n' % dll_name) 85 def _CreateObj(self, dll_name, imports): 110 asm_name = dll_name + '.asm' 116 obj_name = dll_name + '.obj' 122 def _CreateImportLib(self, dll_name, imports, architecture, output_file): 123 """Creates an import lib binding imports to dll_name for architecture. 132 obj_file = self._CreateObj(dll_name, imports) 136 def_name = dll_name + '.def' 139 self._WriteDefFile(dll_name, imports, def_file [all...] |
/external/chromium_org/third_party/libjingle/source/talk/base/ |
latebindingsymboltable.h | 52 const char *dll_name; member in struct:talk_base::LateBindingSymbolTable::TableInfo
|
latebindingsymboltable.cc | 96 ASSERT(info_->dll_name != NULL); 97 return LoadFromPath(info_->dll_name);
|
/external/chromium/third_party/libjingle/source/talk/base/ |
latebindingsymboltable.cc | 51 DllHandle InternalLoadDll(const char dll_name[]) { 53 DllHandle handle = dlopen(dll_name, RTLD_NOW); 58 LOG(LS_WARNING) << "Can't load " << dll_name << ": " << GetDllError();
|
latebindingsymboltable.h | 53 DllHandle InternalLoadDll(const char dll_name[]);
|
/external/chromium_org/sandbox/win/src/ |
interception_internal.h | 44 wchar_t dll_name[1]; // placeholder for null terminated name member in struct:sandbox::DllPatchInfo
|
interception.h | 74 // Patches function_name inside dll_name to point to replacement_code_address. 75 // function_name has to be an exported symbol of dll_name. 105 bool AddToPatchedFunctions(const wchar_t* dll_name, 111 // Patches function_name inside dll_name to point to 113 bool AddToPatchedFunctions(const wchar_t* dll_name, 119 // The interception agent will unload the dll with dll_name. 120 bool AddToUnloadModules(const wchar_t* dll_name);
|
interception.cc | 75 const wchar_t* dll_name, const char* function_name, 81 function.dll = dll_name; 90 const wchar_t* dll_name, const char* function_name, 96 function.dll = dll_name; 106 bool InterceptionManager::AddToUnloadModules(const wchar_t* dll_name) { 109 module_to_unload.dll = dll_name; 159 buffer_bytes += RoundUpToMultiple(offsetof(DllPatchInfo, dll_name) + 245 size_t required = offsetof(DllPatchInfo, dll_name) + 259 data.dll._Copy_s(dll_info->dll_name, data.dll.size(), data.dll.size()); 260 dll_info->dll_name[data.dll.size()] = L'\0' [all...] |
sandbox_policy.h | 216 virtual ResultCode AddDllToUnload(const wchar_t* dll_name) = 0;
|
sandbox_policy_base.h | 65 virtual ResultCode AddDllToUnload(const wchar_t* dll_name);
|
interception_agent.cc | 67 current_name.Length = static_cast<USHORT>(g_nt.wcslen(dll_info->dll_name) * 70 current_name.Buffer = const_cast<wchar_t*>(dll_info->dll_name);
|
interception_unittest.cc | 40 ASSERT_NE(0u, wcslen(dll->dll_name));
|
sandbox_policy_base.cc | 412 ResultCode PolicyBase::AddDllToUnload(const wchar_t* dll_name) { 413 blacklisted_dlls_.push_back(dll_name);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
cygwinccompiler.py | 229 (dll_name, dll_extension) = os.path.splitext( 233 def_file = os.path.join(temp_dir, dll_name + ".def") 234 lib_file = os.path.join(temp_dir, 'lib' + dll_name + ".a")
|
emxccompiler.py | 128 (dll_name, dll_extension) = os.path.splitext( 132 def_file = os.path.join(temp_dir, dll_name + ".def")
|
msvccompiler.py | 520 (dll_name, dll_ext) = os.path.splitext( 524 self.library_filename(dll_name))
|
msvc9compiler.py | 636 (dll_name, dll_ext) = os.path.splitext( 640 self.library_filename(dll_name))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
cygwinccompiler.py | 229 (dll_name, dll_extension) = os.path.splitext( 233 def_file = os.path.join(temp_dir, dll_name + ".def") 234 lib_file = os.path.join(temp_dir, 'lib' + dll_name + ".a")
|
emxccompiler.py | 128 (dll_name, dll_extension) = os.path.splitext( 132 def_file = os.path.join(temp_dir, dll_name + ".def")
|
msvccompiler.py | 520 (dll_name, dll_ext) = os.path.splitext( 524 self.library_filename(dll_name))
|
msvc9compiler.py | 636 (dll_name, dll_ext) = os.path.splitext( 640 self.library_filename(dll_name))
|