Searched defs:_handle (Results 1 - 12 of 12) sorted by relevance

/external/parameter-framework/upstream/utility/
H A DDynamicLibrary.hpp80 void *_handle; member in class:DynamicLibrary
/external/lzma/CPP/Common/
H A DC_FileIO.h25 int _handle; member in class:NC::NFile::NIO::CFileBase
28 CFileBase(): _handle(-1) {};
/external/lzma/CPP/Windows/
H A DHandle.h11 HANDLE _handle; member in class:NWindows::CHandle
13 operator HANDLE() { return _handle; }
14 CHandle(): _handle(NULL) {}
16 bool IsCreated() const { return (_handle != NULL); }
19 if (_handle == NULL)
21 if (!::CloseHandle(_handle))
23 _handle = NULL;
26 void Attach(HANDLE handle) { _handle = handle; }
29 HANDLE handle = _handle;
30 _handle
[all...]
H A DFileFind.h77 HANDLE _handle; member in class:NWindows::NFile::NFind::CFindFileBase
79 bool IsHandleAllocated() const { return _handle != INVALID_HANDLE_VALUE; }
80 CFindFileBase(): _handle(INVALID_HANDLE_VALUE) {}
141 HANDLE _handle; member in class:NWindows::NFile::NFind::CFindChangeNotification
143 operator HANDLE () { return _handle; }
144 bool IsHandleAllocated() const { return _handle != INVALID_HANDLE_VALUE && _handle != 0; }
145 CFindChangeNotification(): _handle(INVALID_HANDLE_VALUE) {}
149 bool FindNext() { return BOOLToBool(::FindNextChangeNotification(_handle)); }
H A DFileIO.cpp62 _handle = ::CreateFile(fs2fas(path), desiredAccess, shareMode,
69 _handle = ::CreateFileW(fs2us(path), desiredAccess, shareMode, local
72 if (_handle == INVALID_HANDLE_VALUE && USE_SUPER_PATH)
76 _handle = ::CreateFileW(superPath, desiredAccess, shareMode,
81 return (_handle != INVALID_HANDLE_VALUE);
86 if (_handle == INVALID_HANDLE_VALUE)
88 if (!::CloseHandle(_handle))
90 _handle = INVALID_HANDLE_VALUE;
110 DWORD sizeLow = ::GetFileSize(_handle, &sizeHigh);
129 DWORD low = ::SetFilePointer(_handle, (LON
[all...]
H A DFileIO.h65 HANDLE _handle; member in class:NWindows::NFile::NIO::CFileBase
75 return BOOLToBool(::DeviceIoControl(_handle, controlCode, inBuffer, inSize,
97 CFileBase(): _handle(INVALID_HANDLE_VALUE) {};
111 { return BOOLToBool(GetFileInformationByHandle(_handle, info)); }
H A DSecurityUtils.h15 HANDLE _handle; member in class:NWindows::NSecurity::CAccessToken
17 CAccessToken(): _handle(NULL) {};
21 if (_handle == NULL)
23 bool res = BOOLToBool(::CloseHandle(_handle));
25 _handle = NULL;
32 return BOOLToBool(::OpenProcessToken(processHandle, desiredAccess, &_handle));
39 return BOOLToBool(::OpenTreadToken(threadHandle, desiredAccess, BoolToBOOL(anOpenAsSelf), &_handle));
45 { return BOOLToBool(::AdjustTokenPrivileges(_handle, BoolToBOOL(disableAllPrivileges),
68 LSA_HANDLE _handle; member in struct:NWindows::NSecurity::CPolicy
73 operator LSA_HANDLE() const { return _handle; }
[all...]
H A DFileFind.cpp109 if (_handle == INVALID_HANDLE_VALUE)
111 if (!::FindClose(_handle))
113 _handle = INVALID_HANDLE_VALUE;
125 _handle = ::FindFirstFileA(fs2fas(path), &fd);
126 if (_handle == INVALID_HANDLE_VALUE)
136 _handle = ::FindFirstFileW(fs2us(path), &fd); local
138 if (_handle == INVALID_HANDLE_VALUE && USE_SUPER_PATH)
142 _handle = ::FindFirstFileW(longPath, &fd);
145 if (_handle == INVALID_HANDLE_VALUE)
158 if (!::FindNextFileA(_handle,
222 _handle = g_FindFirstStreamW(fs2us(path), My_FindStreamInfoStandard, &sd, 0); local
508 _handle = ::FindFirstChangeNotificationW(fs2us(path), BoolToBOOL(watchSubtree), notifyFilter); local
[all...]
/external/drm_gralloc/
H A Dgralloc_drm_handle.h65 static inline struct gralloc_drm_handle_t *gralloc_drm_handle(buffer_handle_t _handle) argument
68 (struct gralloc_drm_handle_t *) _handle;
H A Dgralloc_drm.cpp154 static struct gralloc_drm_bo_t *validate_handle(buffer_handle_t _handle, argument
157 struct gralloc_drm_handle_t *handle = gralloc_drm_handle(_handle);
335 void gralloc_drm_resolve_format(buffer_handle_t _handle, argument
338 struct gralloc_drm_handle_t *handle = gralloc_drm_handle(_handle);
/external/guice/extensions/persist/lib/
H A Dlog4j-1.2.14.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...
/external/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlog4j-1.2.14.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...

Completed in 236 milliseconds