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

1 2

  /external/chromium_org/content/child/npapi/
webplugin.h 19 typedef void* HANDLE;
38 // windowed (i.e. handle is not NULL) or windowless (handle is NULL). This
117 // |pump_messages_event| is a event handle which is used in NPP_HandleEvent
121 virtual void SetWindowlessData(HANDLE pump_messages_event,
  /external/chromium/base/win/
scoped_handle.h 17 // Used so we always remember to close the handle.
28 // To sqirrel the handle away somewhere else:
31 // To explicitly close the handle:
38 explicit ScopedHandle(HANDLE h) : handle_(NULL) {
52 void Set(HANDLE new_handle) {
60 HANDLE Get() {
64 operator HANDLE() { return handle_; }
66 HANDLE Take() {
68 HANDLE h = handle_;
83 HANDLE handle_
    [all...]
windows_version.h 12 typedef void* HANDLE;
79 // Like wow64_status(), but for the supplied handle instead of the current
81 static WOW64Status GetWOW64StatusForProcess(HANDLE process_handle);
  /external/chromium_org/sandbox/win/src/
shared_handles.h 10 #ifndef HANDLE
11 // We can provide our own windows compatilble handle definition, but
15 typedef void* HANDLE;
22 // It addresses the need to communicate a handle value between two windows
33 // HANDLE handle = SomeFunction(..);
36 // shared_handles.SetHandle(3, handle);
41 // HANDLE handle = shared_handles.GetHandle(3);
49 // Note3: Under windows a kernel object handle in one process does no
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebFileUtilities.h 39 typedef void *HANDLE;
49 typedef HANDLE FileHandle;
  /external/lzma/CPP/Windows/
Handle.h 1 // Windows/Handle.h
11 HANDLE _handle;
13 operator HANDLE() { return _handle; }
26 void Attach(HANDLE handle) { _handle = handle; }
27 HANDLE Detach()
29 HANDLE handle = _handle; local
31 return handle;
    [all...]
Thread.h 25 operator HANDLE() { return thread; }
26 void Attach(HANDLE handle) { thread = handle; }
27 HANDLE Detach() { HANDLE h = thread; thread = NULL; return h; }
Synchronization.h 11 #include "Handle.h"
23 operator HANDLE() { return _object; }
133 operator HANDLE() { return _object; }
FileFind.h 84 HANDLE _handle;
137 HANDLE _handle;
139 operator HANDLE () { return _handle; }
144 HANDLE FindFirst(LPCTSTR pathName, bool watchSubtree, DWORD notifyFilter);
146 HANDLE FindFirst(LPCWSTR pathName, bool watchSubtree, DWORD notifyFilter);
  /hardware/invensense/60xx/libsensors_iio/software/core/mllite/linux/
mlos.h 22 typedef pthread_mutex_t* HANDLE;
53 inv_error_t inv_create_mutex(HANDLE *mutex);
54 inv_error_t inv_lock_mutex(HANDLE mutex);
55 inv_error_t inv_unlock_mutex(HANDLE mutex);
59 inv_error_t inv_destroy_mutex(HANDLE handle);
  /hardware/invensense/60xx/mlsdk/platform/include/
mlos.h 33 typedef unsigned int HANDLE;
64 inv_error_t inv_create_mutex(HANDLE *mutex);
65 inv_error_t inv_lock_mutex(HANDLE mutex);
66 inv_error_t inv_unlock_mutex(HANDLE mutex);
70 inv_error_t inv_destroy_mutex(HANDLE handle);
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
mlos.h 22 typedef pthread_mutex_t* HANDLE;
53 inv_error_t inv_create_mutex(HANDLE *mutex);
54 inv_error_t inv_lock_mutex(HANDLE mutex);
55 inv_error_t inv_unlock_mutex(HANDLE mutex);
59 inv_error_t inv_destroy_mutex(HANDLE handle);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderThemeChromiumWin.h 30 typedef void* HANDLE;
  /external/chromium_org/mojo/public/bindings/generators/
mojom.py 32 HANDLE = Kind('h')
50 HANDLE,
  /external/chromium_org/base/win/
windows_version.h 13 typedef void* HANDLE;
95 // Like wow64_status(), but for the supplied handle instead of the current
97 static WOW64Status GetWOW64StatusForProcess(HANDLE process_handle);
  /external/chromium_org/v8/src/
string-stream.h 90 FmtElm(Handle<Object> value) : type_(HANDLE) { // NOLINT
99 enum Type { INT, DOUBLE, C_STR, LC_STR, OBJ, HANDLE, POINTER };
151 Handle<String> ToString(Isolate* isolate);
  /external/srec/portable/include/
ptypes.h 146 typedef void * HANDLE;
  /external/v8/src/
string-stream.h 90 FmtElm(Handle<Object> value) : type_(HANDLE) { // NOLINT
99 enum Type { INT, DOUBLE, C_STR, LC_STR, OBJ, HANDLE, POINTER };
145 Handle<String> ToString();
  /frameworks/av/drm/libdrmframework/include/
PlugInManager.h 37 * The DrmManager uses this class to handle the plugins.
43 typedef void* HANDLE;
51 HANDLE hHandle;
  /hardware/ti/omap3/dspbridge/inc/
dbtype.h 141 typedef PVOID HANDLE; /* h */
  /hardware/ti/omap3/dspbridge/libbridge/inc/
dbtype.h 141 typedef PVOID HANDLE; /* h */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 62 # HANDLE types
63 HANDLE = c_void_p # in the header files: void *
65 HACCEL = HANDLE
66 HBITMAP = HANDLE
67 HBRUSH = HANDLE
68 HCOLORSPACE = HANDLE
69 HDC = HANDLE
70 HDESK = HANDLE
71 HDWP = HANDLE
72 HENHMETAFILE = HANDLE
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 62 # HANDLE types
63 HANDLE = c_void_p # in the header files: void *
65 HACCEL = HANDLE
66 HBITMAP = HANDLE
67 HBRUSH = HANDLE
68 HCOLORSPACE = HANDLE
69 HDC = HANDLE
70 HDESK = HANDLE
71 HDWP = HANDLE
72 HENHMETAFILE = HANDLE
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread.h 306 #if !defined(HANDLE)
308 # define HANDLE void *
576 * Generic handle type - intended to extend uniqueness beyond
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
_os2.h 92 #define HANDLE unsigned long
130 TID handle; /* OS/2 thread handle */ member in struct:_MDThread
203 * the libc file handle (0, 1, 2), which is an int.

Completed in 1204 milliseconds

1 2