Home
last modified time | relevance | path

Searched refs:ScopedNativeLibrary (Results 1 – 5 of 5) sorted by relevance

/external/chromium/base/memory/
Dscoped_native_library.cc9 ScopedNativeLibrary::ScopedNativeLibrary() : library_(NULL) { in ScopedNativeLibrary() function in base::ScopedNativeLibrary
12 ScopedNativeLibrary::ScopedNativeLibrary(NativeLibrary library) in ScopedNativeLibrary() function in base::ScopedNativeLibrary
16 ScopedNativeLibrary::ScopedNativeLibrary(const FilePath& library_path) { in ScopedNativeLibrary() function in base::ScopedNativeLibrary
20 ScopedNativeLibrary::~ScopedNativeLibrary() { in ~ScopedNativeLibrary()
25 void* ScopedNativeLibrary::GetFunctionPointer( in GetFunctionPointer()
32 void ScopedNativeLibrary::Reset(NativeLibrary library) { in Reset()
38 NativeLibrary ScopedNativeLibrary::Release() { in Release()
Dscoped_native_library.h19 class BASE_API ScopedNativeLibrary {
22 ScopedNativeLibrary();
25 explicit ScopedNativeLibrary(NativeLibrary library);
28 explicit ScopedNativeLibrary(const FilePath& library_path);
30 ~ScopedNativeLibrary();
48 DISALLOW_COPY_AND_ASSIGN(ScopedNativeLibrary);
Dscoped_native_library_unittest.cc14 TEST(ScopedNativeLibrary, Basic) { in TEST() argument
26 base::ScopedNativeLibrary library(path); in TEST()
/external/chromium/chrome/browser/
Daeropeek_manager.cc168 base::ScopedNativeLibrary dwmapi(dwmapi_path);
190 base::ScopedNativeLibrary dwmapi(dwmapi_path);
208 base::ScopedNativeLibrary dwmapi(dwmapi_path);
Dbrowser_main_win.cc222 base::ScopedNativeLibrary library(FilePath(L"kernel32.dll")); in RegisterApplicationRestart()