Searched defs:Handle (Results 1 - 25 of 84) sorted by relevance

1234

/external/skia/include/utils/
H A DSkEventTracer.h24 typedef uint64_t Handle; typedef in class:SkEventTracer
57 virtual SkEventTracer::Handle
71 SkEventTracer::Handle handle) = 0;
/external/skqp/include/utils/
H A DSkEventTracer.h24 typedef uint64_t Handle; typedef in class:SkEventTracer
57 virtual SkEventTracer::Handle
71 SkEventTracer::Handle handle) = 0;
/external/annotation-tools/asmx/src/org/objectweb/asm/
H A DHandle.java39 public final class Handle { class
42 * The kind of field or method designated by this Handle. Should be
71 * the kind of field or method designated by this Handle. Must be
88 public Handle(int tag, String owner, String name, String desc) { method in class:Handle
143 if (!(obj instanceof Handle)) {
146 Handle h = (Handle) obj;
/external/libchrome/base/
H A Dsync_socket.h36 typedef HANDLE Handle; typedef in class:base::SyncSocket
37 typedef Handle TransitDescriptor;
39 typedef int Handle;
42 static const Handle kInvalidHandle;
46 // Creates a SyncSocket from a Handle. Used in transport.
47 explicit SyncSocket(Handle handle) : handle_(handle) {}
55 // Returns |Handle| wrapped in a |TransitDescriptor|.
56 static Handle UnwrapHandle(const TransitDescriptor& descriptor);
58 // Prepares a |TransitDescriptor| which wraps |Handle| used for transit.
94 Handle handl
[all...]
/external/libmojo/mojo/public/java/system/src/org/chromium/mojo/system/
H A DHandle.java14 public interface Handle extends Closeable { interface in inherits:Closeable
28 * @see Core#wait(Handle, Core.HandleSignals, long)
50 * Passes ownership of the handle from this handle to the newly created Handle object,
53 public Handle pass();
56 * Releases the native handle backed by this {@link Handle}. The caller owns the handle and must
/external/skia/include/core/
H A DSkRasterHandleAllocator.h41 typedef void* Handle; typedef in class:SkRasterHandleAllocator
50 Handle fHandle; // public handle returned by SkCanvas::accessTopRasterHandle()
69 virtual void updateHandle(Handle, const SkMatrix&, const SkIRect&) = 0;
84 Handle allocBitmap(const SkImageInfo&, SkBitmap*);
/external/skqp/include/core/
H A DSkRasterHandleAllocator.h41 typedef void* Handle; typedef in class:SkRasterHandleAllocator
50 Handle fHandle; // public handle returned by SkCanvas::accessTopRasterHandle()
69 virtual void updateHandle(Handle, const SkMatrix&, const SkIRect&) = 0;
84 Handle allocBitmap(const SkImageInfo&, SkBitmap*);
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/
H A Dhw.c50 EFI_HANDLE Handle; local
56 Status = uefi_call_wrapper(BS->LocateDevicePath, 3, Protocol, &DevicePath, &Handle);
62 Status = uefi_call_wrapper(BS->LocateDevicePath, 3, &DeviceIoProtocol, &DevicePath, &Handle);
64 Status = uefi_call_wrapper(BS->HandleProtocol, 3, Handle, &DeviceIoProtocol, (VOID*)GlobalIoFncs);
/external/webrtc/webrtc/modules/desktop_capture/
H A Dshared_memory.h34 typedef HANDLE Handle; typedef in class:webrtc::SharedMemory
35 static const Handle kInvalidHandle;
37 typedef int Handle;
38 static const Handle kInvalidHandle;
45 Handle handle() const { return handle_; }
54 SharedMemory(void* data, size_t size, Handle handle, int id);
58 const Handle handle_;
/external/gemmlowp/internal/
H A Dallocator.h29 // 1. Reserve blocks by calling Reserve(), which returns a Handle.
123 class Handle { class in class:gemmlowp::Allocator
134 Handle Reserve(std::size_t n) {
143 Handle h;
157 T* GetPointer(const Handle& h) const {
/external/llvm/lib/CodeGen/
H A DSafeStackLayout.h34 const Value *Handle; member in struct:llvm::safestack::StackLayout::StackObject
/external/pdfium/core/fxcrt/
H A Dweak_ptr.h26 : m_pHandle(new Handle(std::move(pObj))) {}
54 m_pHandle.Reset(new Handle(std::move(pObj)));
59 class Handle { class in class:fxcrt::WeakPtr
61 explicit Handle(std::unique_ptr<T, D> ptr) function in class:fxcrt::WeakPtr::Handle
79 ~Handle() = default;
85 RetainPtr<Handle> m_pHandle;
/external/syslinux/efi32/include/efi/protocol/
H A Dvgaclass.h46 EFI_HANDLE Handle; member in struct:__anon24022
/external/syslinux/efi64/include/efi/protocol/
H A Dvgaclass.h46 EFI_HANDLE Handle; member in struct:__anon24199
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/protocol/
H A Dvgaclass.h46 EFI_HANDLE Handle; member in struct:__anon24420
/external/syslinux/win/
H A Dntfssect.h139 HANDLE Handle; member in struct:S_NTFSSECT_VOLINFO_
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_addrhashmap.h31 // Map::Handle h(&m, addr);
38 // Map::Handle h(&m, addr, true);
39 // this will remove the data from the map in Handle dtor
68 class Handle { class in class:__sanitizer::AddrHashMap
70 Handle(AddrHashMap<T, kSize> *map, uptr addr);
71 Handle(AddrHashMap<T, kSize> *map, uptr addr, bool remove);
72 Handle(AddrHashMap<T, kSize> *map, uptr addr, bool remove, bool create);
74 ~Handle();
92 friend class Handle;
95 void acquire(Handle *
101 AddrHashMap<T, kSize>::Handle::Handle(AddrHashMap<T, kSize> *map, uptr addr) { function in class:__sanitizer::AddrHashMap::Handle
110 AddrHashMap<T, kSize>::Handle::Handle(AddrHashMap<T, kSize> *map, uptr addr, function in class:__sanitizer::AddrHashMap::Handle
120 AddrHashMap<T, kSize>::Handle::Handle(AddrHashMap<T, kSize> *map, uptr addr, function in class:__sanitizer::AddrHashMap::Handle
[all...]
/external/libmojo/mojo/public/cpp/system/
H A Dhandle.h21 // |Handle| and |...Handle|:
23 // |Handle| is a simple, copyable wrapper for the C type |MojoHandle| (which is
26 // |Handle|, e.g., |MessagePipeHandle| and |DataPipeProducerHandle|. |Handle|
30 // Note that though we provide constructors for |Handle|/|...Handle| from a
32 // from a |Handle|. This is for type safety: If we did, you'd then be able to
34 // it's a |Handle|).
36 // |ScopedHandleBase| and |Scoped...Handle|
148 class Handle { class in namespace:mojo
150 Handle() : value_(kInvalidHandleValue) {} function in class:mojo::Handle
151 explicit Handle(MojoHandle value) : value_(value) {} function in class:mojo::Handle
[all...]
/external/compiler-rt/lib/msan/
H A Dmsan_chained_origin_depot.cc88 struct Handle { struct in struct:__msan::ChainedOriginDepotNode
90 Handle() : node_(nullptr) {} function in struct:__msan::ChainedOriginDepotNode::Handle
91 explicit Handle(ChainedOriginDepotNode *node) : node_(node) {} function in struct:__msan::ChainedOriginDepotNode::Handle
98 Handle get_handle() { return Handle(this); }
100 typedef Handle handle_type;
112 ChainedOriginDepotNode::Handle h = chainedOriginDepot.Put(desc, &inserted);
/external/libchrome/base/threading/
H A Dplatform_thread.h79 typedef void* Handle; typedef in class:base::PlatformThreadHandle
81 typedef pthread_t Handle;
86 explicit PlatformThreadHandle(Handle handle) : handle_(handle) {}
96 Handle platform_handle() const {
101 Handle handle_;
/external/libese/libese-hw/nxp/pn80t/
H A Dlinux_spidev.c33 struct Handle { struct
63 struct Handle *handle = blob;
69 struct Handle *handle = blob;
75 struct Handle *handle = blob;
123 struct Handle *handle;
166 struct Handle *handle = blob;
180 struct Handle *handle = ns->handle;
209 struct Handle *handle = ns->handle;
/external/libmojo/mojo/public/cpp/bindings/tests/
H A Darray_common_test.h62 static void Handle() { function in class:mojo::test::ArrayCommonTest
/external/llvm/lib/Target/NVPTX/
H A DNVPTXReplaceImageHandles.cpp114 MachineOperand &Handle = MI.getOperand(1); local
116 replaceImageHandle(Handle, MF);
137 assert(Op.isReg() && "Handle is not in a reg?");
/external/pdfium/third_party/lcms/src/
H A Dcmsmd5.c175 void MD5add(cmsHANDLE Handle, cmsUInt8Number* buf, cmsUInt32Number len) argument
177 _cmsMD5* ctx = (_cmsMD5*) Handle;
219 void MD5finish(cmsProfileID* ProfileID, cmsHANDLE Handle) argument
221 _cmsMD5* ctx = (_cmsMD5*) Handle;
/external/python/cpython2/Mac/Modules/list/
H A Dlistsupport.py12 KIND = 'Handle' # Usually 'Ptr' or 'Handle'
37 Handle = OpaqueByValueType("Handle", "ResObj") variable
53 #define as_Resource(lh) ((Handle)lh)
175 ##f = Function(ListHandle, 'as_List', (Handle, 'h', InMode))
177 Handle h;
190 f = Method(Handle, 'as_Resource', (ListHandle, 'lh', InMode))

Completed in 708 milliseconds

1234