HomeSort by relevance Sort by last modified time
    Searched defs:Handle (Results 51 - 75 of 83) sorted by null

1 23 4

  /external/chromium_org/third_party/mesa/src/src/egl/main/
egldriver.c 59 void *Handle;
142 _eglOpenLibrary(const char *driverPath, lib_handle *handle)
188 *handle = lib;
228 mod->Handle = (void *) lib;
251 if (mod->Handle)
252 close_library(mod->Handle);
259 mod->Handle = NULL;
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 80 handle_type Handle;
84 : Handle(HandleType::GetInvalidHandle()) {}
86 explicit ScopedHandle(handle_type handle)
87 : Handle(handle) {}
90 HandleType::Destruct(Handle);
93 ScopedHandle& operator=(handle_type handle) {
94 // Cleanup current handle.
95 if (!HandleType::isValid(Handle))
96 HandleType::Destruct(Handle);
    [all...]
  /external/mesa3d/src/egl/main/
egldriver.c 59 void *Handle;
142 _eglOpenLibrary(const char *driverPath, lib_handle *handle)
188 *handle = lib;
228 mod->Handle = (void *) lib;
251 if (mod->Handle)
252 close_library(mod->Handle);
259 mod->Handle = NULL;
  /external/webrtc/src/modules/audio_processing/
echo_cancellation_impl.cc 24 typedef void Handle;
88 Handle* my_handle = static_cast<Handle*>(handle(handle_index));
128 Handle* my_handle = handle(handle_index);
254 Handle* my_handle = static_cast<Handle*>(handle(0));
297 // TODO(bjornv): How should we handle the multi-channel case
341 Handle* handle = NULL; local
    [all...]
gain_control_impl.cc 23 typedef void Handle;
35 T* handle;
85 Handle* my_handle = static_cast<Handle*>(handle(i));
111 Handle* my_handle = static_cast<Handle*>(handle(i));
125 Handle* my_handle = static_cast<Handle*>(handle(i))
345 Handle* handle = NULL; local
    [all...]
  /external/chromium/chrome/browser/webdata/
web_data_service.h 57 // All requests return a handle. The handle can be used to cancel the request.
181 // All requests return an opaque handle of the following type.
182 typedef int Handle;
194 Handle handle,
199 Handle GetHandle() const;
219 Handle handle_;
235 Handle handle,
    [all...]
  /external/e2fsprogs/lib/ext2fs/
nt_io.c 54 IN HANDLE Handle
74 IN HANDLE FileHandle,
83 IN HANDLE FileHandle,
84 IN HANDLE Event OPTIONAL,
98 IN HANDLE FileHandle,
99 IN HANDLE Event OPTIONAL,
113 IN HANDLE FileHandle,
114 IN HANDLE Event OPTIONAL,
129 IN HANDLE FileHandle
    [all...]
  /external/chromium_org/chrome_frame/test/
chrome_frame_ui_test_utils.cc 663 FROM_HERE, base::Bind(&EventHandler::Handle, event_handler_.get(), event,
672 void AccEventObserver::EventHandler::Handle(DWORD event,
  /external/openssh/
sftp-server.c 175 /* handle handles */
177 typedef struct Handle Handle;
178 struct Handle {
193 Handle *handles = NULL;
213 handles = xrealloc(handles, num_handles, sizeof(Handle));
236 handle_to_string(int handle, char **stringp, int *hlenp)
241 put_u32(*stringp, handle);
247 handle_from_string(const char *handle, u_int hlen)
253 val = get_u32(handle);
363 char *handle; local
551 int handle, fd, flags, mode, status = SSH2_FX_FAILURE; local
588 int handle, ret, status = SSH2_FX_FAILURE; local
604 int handle, fd, ret, status = SSH2_FX_FAILURE; local
646 int handle, fd, ret, status; local
729 int fd, ret, handle, status = SSH2_FX_FAILURE; local
818 int handle, fd, ret; local
885 int handle, status = SSH2_FX_FAILURE; local
916 int handle; local
1212 int handle, fd; local
    [all...]
  /frameworks/native/services/surfaceflinger/
Layer.cpp 182 // can handle.
211 * The layer handle is just a BBinder object passed to the client
216 * this layer when the handle is destroyed.
219 class Handle : public BBinder, public LayerCleaner {
222 Handle(const sp<SurfaceFlinger>& flinger, const sp<Layer>& layer)
227 return new Handle(mFlinger, this);
398 // we can only handle simple transformation
    [all...]
  /external/chromium_org/sandbox/win/tools/finder/
ntundoc.h 28 HANDLE RootDirectory;
168 USHORT Handle;
181 HANDLE,
190 HANDLE *,
240 HANDLE *,
248 HANDLE,
261 HANDLE Handle,
267 typedef NTSTATUS (WINAPI* NTCLOSE) (HANDLE);
  /external/chromium_org/sandbox/win/src/
nt_internals.h 32 #define CURRENT_PROCESS ((HANDLE) -1)
33 #define CURRENT_THREAD ((HANDLE) -2)
63 HANDLE RootDirectory;
150 IN HANDLE Handle);
158 HANDLE RootDirectory;
164 IN HANDLE FileHandle,
206 IN HANDLE FileHandle OPTIONAL);
213 IN HANDLE SectionHandle,
214 IN HANDLE ProcessHandle
    [all...]
  /external/v8/include/
v8.h 101 template <class T> class Handle;
163 * It is safe to extract the object stored in the handle by
164 * dereferencing the handle (for instance, to extract the Object* from
165 * a Handle<Object>); the value will still be governed by a handle
169 template <class T> class Handle {
172 * Creates an empty handle.
174 inline Handle() : val_(0) {}
177 * Creates a new handle for the specified value.
179 inline explicit Handle(T* val) : val_(val) {
    [all...]
  /external/chromium_org/v8/include/
v8.h 122 template <class T> class Handle;
208 * It is safe to extract the object stored in the handle by
209 * dereferencing the handle (for instance, to extract the Object* from
210 * a Handle<Object>); the value will still be governed by a handle
214 template <class T> class Handle {
217 * Creates an empty handle.
219 V8_INLINE Handle() : val_(0) {}
222 * Creates a handle for the contents of the specified handle. Thi
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
dbghelp.h 28 HANDLE hFile;
47 typedef BOOL (CALLBACK *PFIND_DEBUG_FILE_CALLBACK)(HANDLE FileHandle,PSTR FileName,PVOID CallerData);
49 typedef BOOL (CALLBACK *PFIND_EXE_FILE_CALLBACK)(HANDLE FileHandle,PSTR FileName,PVOID CallerData);
59 HANDLE IMAGEAPI FindDebugInfoFile(PSTR FileName,PSTR SymbolPath,PSTR DebugFilePath);
60 HANDLE IMAGEAPI FindDebugInfoFileEx(PSTR FileName,PSTR SymbolPath,PSTR DebugFilePath,PFIND_DEBUG_FILE_CALLBACK Callback,PVOID CallerData);
61 BOOL IMAGEAPI SymFindFileInPath(HANDLE hprocess,LPSTR SearchPath,LPSTR FileName,PVOID id,DWORD two,DWORD three,DWORD flags,LPSTR FoundFile,PFINDFILEINPATHCALLBACK callback,PVOID context);
62 HANDLE IMAGEAPI FindExecutableImage(PSTR FileName,PSTR SymbolPath,PSTR ImageFilePath);
63 HANDLE IMAGEAPI FindExecutableImageEx(PSTR FileName,PSTR SymbolPath,PSTR ImageFilePath,PFIND_EXE_FILE_CALLBACK Callback,PVOID CallerData);
126 PIMAGE_DEBUG_INFORMATION IMAGEAPI MapDebugInformation(HANDLE FileHandle,PSTR FileName,PSTR SymbolPath,DWORD ImageBase);
133 BOOL IMAGEAPI EnumDirTree(HANDLE hProcess,PSTR RootPath,PSTR InputPathName,PSTR OutputPathBuffer,PENUMDIRTREE_CALLBACK Callback,PVO (…)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
dbghelp.h 28 HANDLE hFile;
47 typedef BOOL (CALLBACK *PFIND_DEBUG_FILE_CALLBACK)(HANDLE FileHandle,PSTR FileName,PVOID CallerData);
49 typedef BOOL (CALLBACK *PFIND_EXE_FILE_CALLBACK)(HANDLE FileHandle,PSTR FileName,PVOID CallerData);
59 HANDLE IMAGEAPI FindDebugInfoFile(PSTR FileName,PSTR SymbolPath,PSTR DebugFilePath);
60 HANDLE IMAGEAPI FindDebugInfoFileEx(PSTR FileName,PSTR SymbolPath,PSTR DebugFilePath,PFIND_DEBUG_FILE_CALLBACK Callback,PVOID CallerData);
61 BOOL IMAGEAPI SymFindFileInPath(HANDLE hprocess,LPSTR SearchPath,LPSTR FileName,PVOID id,DWORD two,DWORD three,DWORD flags,LPSTR FoundFile,PFINDFILEINPATHCALLBACK callback,PVOID context);
62 HANDLE IMAGEAPI FindExecutableImage(PSTR FileName,PSTR SymbolPath,PSTR ImageFilePath);
63 HANDLE IMAGEAPI FindExecutableImageEx(PSTR FileName,PSTR SymbolPath,PSTR ImageFilePath,PFIND_EXE_FILE_CALLBACK Callback,PVOID CallerData);
126 PIMAGE_DEBUG_INFORMATION IMAGEAPI MapDebugInformation(HANDLE FileHandle,PSTR FileName,PSTR SymbolPath,DWORD ImageBase);
133 BOOL IMAGEAPI EnumDirTree(HANDLE hProcess,PSTR RootPath,PSTR InputPathName,PSTR OutputPathBuffer,PENUMDIRTREE_CALLBACK Callback,PVO (…)
    [all...]
  /prebuilts/devtools/tools/lib/
asm-4.0.jar 
lint-api.jar 
  /prebuilts/misc/common/asm/
asm-4.0.jar 
  /prebuilts/sdk/tools/lib/
asm-4.0.jar 
  /prebuilts/tools/common/asm-tools/
asm-4.0.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm/4.0/
asm-4.0.jar 
  /prebuilts/misc/common/jarjar/
jarjar-1.4.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.registry_3.5.0.v20100503.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.2.0/
lint-api-22.2.0.jar 

Completed in 551 milliseconds

1 23 4