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

1 2

  /external/chromium_org/sandbox/win/src/
interception_unittest.cc 37 DllPatchInfo *dll = &memory->dll_list[0]; local
40 ASSERT_NE(0u, wcslen(dll->dll_name));
41 ASSERT_EQ(0u, dll->record_bytes % sizeof(size_t));
42 ASSERT_EQ(0u, dll->offset_to_functions % sizeof(size_t));
43 ASSERT_NE(0, dll->num_functions);
46 reinterpret_cast<char*>(dll) + dll->offset_to_functions);
48 for (int j = 0; j < dll->num_functions; j++) {
73 dll = reinterpret_cast<DllPatchInfo*>(reinterpret_cast<char*>(dll)
    [all...]
interception.h 40 // L"ntdll.dll", "NtCreateFile",
45 // L"kernel32.dll", "CreateDirectoryW",
118 // The interception agent will unload the dll with dll_name.
138 std::wstring dll; // Name of dll to intercept. member in struct:sandbox::InterceptionManager::InterceptionData
162 // about one dll to patch.
163 // data is the first recorded interception for this dll.
175 // dll_info points to the dll being updated with the interception stored on
200 // thunks is the memory to store all the thunks for this dll (on the child),
201 // and dll_data is a local buffer to hold global dll interception info
    [all...]
interception.cc 80 function.dll = dll_name;
95 function.dll = dll_name;
108 module_to_unload.dll = dll_name;
153 if (!dlls.count(it->dll)) {
154 // NULL terminate the dll name on the structure
155 size_t dll_name_bytes = (it->dll.size() + 1) * sizeof(wchar_t);
157 // include the dll related size
160 dlls.insert(it->dll);
180 // but keeping together all interceptions that belong to the same dll.
205 const std::wstring dll = it->dll local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_unicode.py 11 dll = ctypes.CDLL(_ctypes_test.__file__) variable
12 wcslen = dll.my_wcslen
test_pickling.py 5 dll = CDLL(_ctypes_test.__file__) variable
64 dll._testfunc_p_p,
test_refcounts.py 9 dll = ctypes.CDLL(_ctypes_test.__file__) variable
16 f = dll._testfunc_callback_i_if
test_as_parameter.py 6 dll = CDLL(_ctypes_test.__file__) variable
26 f = dll._testfunc_i_bhilfd
33 f = dll._testfunc_p_p
57 f = dll._testfunc_callback_i_if
76 f = dll._testfunc_callback_i_if
112 f = dll._testfunc_callback_i_if
130 f = dll._testfunc_callback_q_qf
150 result = dll._testfunc_byval(ptin, byref(ptout))
158 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT))
159 dll._testfunc_byval.restype = c_in
    [all...]
test_functions.py 18 dll = CDLL(_ctypes_test.__file__) variable
71 f = dll._testfunc_i_bhilfd
82 f = dll._testfunc_i_bhilfd
89 f = dll._testfunc_v
97 f = dll._testfunc_i_bhilfd
123 f = dll._testfunc_f_bhilfd
135 f = dll._testfunc_d_bhilfd
147 f = dll._testfunc_D_bhilfD
163 f = dll._testfunc_q_bhilfd
169 f = dll._testfunc_q_bhilfd
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_unicode.py 11 dll = ctypes.CDLL(_ctypes_test.__file__) variable
12 wcslen = dll.my_wcslen
test_pickling.py 5 dll = CDLL(_ctypes_test.__file__) variable
64 dll._testfunc_p_p,
test_refcounts.py 9 dll = ctypes.CDLL(_ctypes_test.__file__) variable
16 f = dll._testfunc_callback_i_if
test_as_parameter.py 6 dll = CDLL(_ctypes_test.__file__) variable
26 f = dll._testfunc_i_bhilfd
33 f = dll._testfunc_p_p
57 f = dll._testfunc_callback_i_if
76 f = dll._testfunc_callback_i_if
112 f = dll._testfunc_callback_i_if
130 f = dll._testfunc_callback_q_qf
150 result = dll._testfunc_byval(ptin, byref(ptout))
158 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT))
159 dll._testfunc_byval.restype = c_in
    [all...]
test_functions.py 18 dll = CDLL(_ctypes_test.__file__) variable
71 f = dll._testfunc_i_bhilfd
82 f = dll._testfunc_i_bhilfd
89 f = dll._testfunc_v
97 f = dll._testfunc_i_bhilfd
123 f = dll._testfunc_f_bhilfd
135 f = dll._testfunc_d_bhilfd
147 f = dll._testfunc_D_bhilfD
163 f = dll._testfunc_q_bhilfd
169 f = dll._testfunc_q_bhilfd
    [all...]
  /external/chromium_org/chrome/test/perf/
perf_ui_test_suite.cc 67 // On Windows, make sure we've loaded the main chrome dll for its resource
71 // browser DLL, but the base chrome testing stuff is used outside of browser.
74 base::FilePath dll; local
75 PathService::Get(base::DIR_MODULE, &dll);
76 dll = dll.Append(chrome::kBrowserResourcesDll);
77 HMODULE res_mod = ::LoadLibraryExW(dll.value().c_str(),
  /external/chromium_org/chrome/app/
client_util.cc 35 // The entry point signature of chrome.dll.
42 // value not being null to determine if this path contains a valid dll.
114 // determine if we should stick with an older dll version even if a new one is
123 HMODULE dll = LoadChromeWithDirectory(out_file); local
124 if (!dll) {
151 dll = LoadChromeWithDirectory(out_file);
152 if (!dll) {
153 PLOG(ERROR) << "Failed to load Chrome DLL from " << *out_file;
158 DCHECK(dll);
160 return dll;
    [all...]
  /external/wpa_supplicant_8/src/crypto/
crypto_cryptoapi.c 39 = NULL; /* to be loaded from crypt32.dll */
44 HINSTANCE dll; local
52 dll = LoadLibrary("crypt32");
53 if (dll == NULL) {
60 dll, "CryptImportPublicKeyInfo");
  /external/chromium/chrome/browser/
enumerate_modules_model_win.cc 110 // NOTE: Please keep this list sorted by dll name, then location.
114 // accelerator.dll, "%programfiles%\\speedbit video accelerator\\".
117 // apiqq0.dll, "%temp%\\".
120 // arking0.dll, "%systemroot%\\system32\\".
123 // arking1.dll, "%systemroot%\\system32\\".
128 // bfllr.dll, "%systemroot%\\system32\\".
131 // clickpotatolitesahook.dll, "". Different version each report.
132 { "0396e037.dll", "", "", "", "", kUninstallLink },
134 // cvasds0.dll, "%temp%\\".
137 // cwalsp.dll, "%systemroot%\\system32\\"
482 string16 dll; local
    [all...]
  /external/chromium_org/chrome/browser/
enumerate_modules_model_win.cc 118 // NOTE: Please keep this list sorted by dll name, then location.
122 // accelerator.dll, "%programfiles%\\speedbit video accelerator\\".
125 // apiqq0.dll, "%temp%\\".
128 // arking0.dll, "%systemroot%\\system32\\".
131 // arking1.dll, "%systemroot%\\system32\\".
134 // aswjsflt.dll, "%ProgramFiles%\\avast software\\avast\\", "AVAST Software".
135 // NOTE: The digital signature of the DLL is double null terminated.
141 // aswjsflt.dll, "%ProgramFiles%\\alwil software\\avast5\\", "AVAST Software".
142 // NOTE: The digital signature of the DLL is double null terminated.
150 // bfllr.dll, "%systemroot%\\system32\\"
542 string16 dll; local
    [all...]
  /external/chromium_org/chrome_frame/test/net/
fake_external_tab.cc 508 // Load Chrome.dll as our resource dll.
509 base::FilePath dll; local
510 PathService::Get(base::DIR_MODULE, &dll);
511 dll = dll.Append(chrome::kBrowserResourcesDll);
512 HMODULE res_mod = ::LoadLibraryExW(dll.value().c_str(),
517 // Point the ResourceBundle at chrome.dll.
    [all...]
  /external/wpa_supplicant_8/src/utils/
pcsc_funcs.c 120 * dynamically from winscard.dll for now. */
122 static HINSTANCE dll = NULL; /* winscard.dll */ variable
187 if (dll)
190 dll = LoadLibrary("winscard");
191 if (dll == NULL) {
192 wpa_printf(MSG_DEBUG, "WinSCard: Could not load winscard.dll "
199 dll_ ## s = (void *) GetProcAddress(dll, sym); \
220 "winscard.dll", sym);
221 FreeLibrary(dll);
    [all...]
  /bionic/libc/kernel/arch-mips/asm/sn/
ioc3.h 27 volatile u8 dll; member in union:ioc3_uartregs::__anon193
50 #define iu_dll u1.dll
  /development/ndk/platforms/android-9/arch-mips/include/asm/sn/
ioc3.h 27 volatile u8 dll; member in union:ioc3_uartregs::__anon1385
50 #define iu_dll u1.dll
  /external/kernel-headers/original/asm-mips/sn/
ioc3.h 15 volatile u8 dll; /* DLAB == 1 */ member in union:ioc3_uartregs::__anon21550
34 #define iu_dll u1.dll
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/sn/
ioc3.h 27 volatile u8 dll; member in union:ioc3_uartregs::__anon52382
50 #define iu_dll u1.dll
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/sn/
ioc3.h 27 volatile u8 dll; member in union:ioc3_uartregs::__anon55107
50 #define iu_dll u1.dll

Completed in 500 milliseconds

1 2