Searched defs:Handle (Results 26 - 50 of 84) sorted by relevance

1234

/external/python/cpython2/Mac/Modules/menu/
H A Dmenusupport.py15 OBJECTTYPE = OBJECTNAME + 'Handle' # The C type used to represent them
28 Handle = OpaqueByValueType("Handle", "ResObj") variable
55 #define as_Resource(h) ((Handle)h)
/external/python/cpython2/Mac/Modules/te/
H A Dtesupport.py12 KIND = 'Handle' # Usually 'Ptr' or 'Handle'
26 Handle = OpaqueByValueType("Handle", "ResObj") variable
46 #define as_Resource(teh) ((Handle)teh)
204 f = Function(TEHandle, 'as_TE', (Handle, 'h', InMode))
206 f = Method(Handle, 'as_Resource', (TEHandle, 'teh', InMode))
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
H A DWindows.h68 HandleType Handle; member in class:ScopedHandle
71 ScopedHandle() : Handle(InvalidHandle) {}
72 ScopedHandle(HandleType handle) : Handle(handle) {}
75 if (Handle != HandleType(InvalidHandle))
76 D(Handle);
80 HandleType temp = Handle;
81 Handle = HandleType(InvalidHandle);
85 operator HandleType() const { return Handle; }
88 Handle = handle;
95 // True if Handle i
[all...]
/external/compiler-rt/lib/esan/
H A Dcache_frag.cpp80 static void reportStructCounter(StructHashMap::Handle &Handle) { argument
83 StructInfo *Struct = Handle->Struct;
102 Struct->Size, Handle->Count, Handle->Ratio, *Struct->ArrayCounter);
117 static void computeStructRatio(StructHashMap::Handle &Handle) { argument
118 Handle->Ratio = 0;
119 Handle->Count = Handle
[all...]
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkDefs.hpp41 #define VK_DEFINE_NON_DISPATCHABLE_HANDLE(NAME, TYPE) typedef Handle<TYPE> NAME
77 class Handle class in namespace:vk
80 Handle (void) {} // \note Left uninitialized on purpose function in class:vk::Handle
81 Handle (deUint64 internal) : m_internal(internal) {} function in class:vk::Handle
83 Handle& operator= (deUint64 internal) { m_internal = internal; return *this; }
85 bool operator== (const Handle<Type>& other) const { return this->m_internal == other.m_internal; }
86 bool operator!= (const Handle<Type>& other) const { return this->m_internal != other.m_internal; }
/external/libchrome/base/process/
H A Dprocess_posix.cc276 ProcessHandle Process::Handle() const { function in class:base::Process
366 return WaitForExitWithTimeoutImpl(Handle(), exit_code, timeout);
/external/libmojo/mojo/android/javatests/src/org/chromium/mojo/system/impl/
H A DCoreImplTest.java16 import org.chromium.mojo.system.Handle;
47 private List<Handle> mHandlesToClose = new ArrayList<Handle>();
55 for (Handle handle : mHandlesToClose) {
70 private void addHandleToClose(Handle handle) {
74 private void addHandlePairToClose(Pair<? extends Handle, ? extends Handle> handles) { argument
83 private Handle mHandle;
85 CloseHandle(Handle handle) {
197 List<Pair<Handle, Cor
[all...]
/external/llvm/include/llvm/ExecutionEngine/Orc/
H A DLazyEmittingLayer.h60 Handle = this->emitToBaseLayer(B);
63 auto Sym = B.findSymbolIn(Handle, PName, ExportedSymbolsOnly);
76 return B.findSymbolIn(Handle, Name, ExportedSymbolsOnly);
83 BaseLayer.removeModuleSet(Handle);
91 Handle = emitToBaseLayer(BaseLayer);
94 BaseLayer.emitAndFinalize(Handle);
110 BaseLayerHandleT Handle; member in class:llvm::orc::LazyEmittingLayer::EmissionDeferredSet
220 /// @brief Handle to a set of loaded modules.
276 /// @param H Handle for module set to emit/finalize.
H A DObjectLinkingLayer.h70 /// @brief Handle to a set of loaded objects.
115 PFC->Handle = H;
125 PFC->Finalizer(PFC->Handle, RTDyld, std::move(PFC->Objects),
190 ObjSetHandleT Handle; member in struct:llvm::orc::ObjectLinkingLayer::PreFinalizeContents
278 ObjSetHandleT Handle = LinkedObjSetList.insert(LinkedObjSetList.end(), local
280 LOSPtr->setHandle(Handle);
282 return Handle;
331 /// @param H Handle for object set to emit/finalize.
/external/llvm/lib/Support/Windows/
H A DWindowsSupport.h93 handle_type Handle; member in class:ScopedHandle
99 : Handle(HandleTraits::GetInvalid()) {}
102 : Handle(h) {}
105 if (HandleTraits::IsValid(Handle))
106 HandleTraits::Close(Handle);
110 handle_type t = Handle;
111 Handle = HandleTraits::GetInvalid();
116 if (HandleTraits::IsValid(Handle))
117 HandleTraits::Close(Handle);
118 Handle
[all...]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/archrast/
H A Darchrast.cpp91 virtual void Handle(Start& event) {} function in class:ArchRast::EventHandlerStatsFile
92 virtual void Handle(End& event) {} function in class:ArchRast::EventHandlerStatsFile
94 virtual void Handle(EarlyDepthStencilInfoSingleSample& event) function in class:ArchRast::EventHandlerStatsFile
115 virtual void Handle(EarlyDepthStencilInfoSampleRate& event) function in class:ArchRast::EventHandlerStatsFile
136 virtual void Handle(EarlyDepthStencilInfoNullPS& event) function in class:ArchRast::EventHandlerStatsFile
157 virtual void Handle(LateDepthStencilInfoSingleSample& event) function in class:ArchRast::EventHandlerStatsFile
178 virtual void Handle(LateDepthStencilInfoSampleRate& event) function in class:ArchRast::EventHandlerStatsFile
199 virtual void Handle(LateDepthStencilInfoNullPS& event) function in class:ArchRast::EventHandlerStatsFile
220 virtual void Handle(EarlyDepthInfoPixelRate& event) function in class:ArchRast::EventHandlerStatsFile
234 virtual void Handle(LateDepthInfoPixelRat function in class:ArchRast::EventHandlerStatsFile
249 virtual void Handle(BackendDrawEndEvent& event) function in class:ArchRast::EventHandlerStatsFile
286 virtual void Handle(FrontendDrawEndEvent& event) function in class:ArchRast::EventHandlerStatsFile
305 virtual void Handle(GSPrimInfo& event) function in class:ArchRast::EventHandlerStatsFile
312 virtual void Handle(ClipVertexCount& event) function in class:ArchRast::EventHandlerStatsFile
317 virtual void Handle(TessPrimCount& event) function in class:ArchRast::EventHandlerStatsFile
[all...]
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
H A DWindowsSupport.h94 handle_type Handle; member in class:ScopedHandle
100 : Handle(HandleTraits::GetInvalid()) {}
103 : Handle(h) {}
106 if (HandleTraits::IsValid(Handle))
107 HandleTraits::Close(Handle);
111 handle_type t = Handle;
112 Handle = HandleTraits::GetInvalid();
117 if (HandleTraits::IsValid(Handle))
118 HandleTraits::Close(Handle);
119 Handle
[all...]
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/
H A Dhand.c39 DEBUG((D_INFO, "LibLocateProtocol: Handle not found\n"));
440 IN OUT EFI_HANDLE *Handle,
457 OldHandle = *Handle;
465 va_start (args, Handle);
485 Status = uefi_call_wrapper(BS->InstallProtocolInterface, 4, Handle, Protocol, EFI_NATIVE_INTERFACE, Interface);
499 va_start (args, Handle);
504 uefi_call_wrapper(BS->UninstallProtocolInterface, 3, *Handle, Protocol, Interface);
509 *Handle = OldHandle;
523 IN EFI_HANDLE Handle,
533 va_start (args, Handle);
439 LibInstallProtocolInterfaces( IN OUT EFI_HANDLE *Handle, ... ) argument
522 LibUninstallProtocolInterfaces( IN EFI_HANDLE Handle, ... ) argument
560 LibReinstallProtocolInterfaces( IN OUT EFI_HANDLE *Handle, ... ) argument
[all...]
H A Dmisc.c529 IN EFI_HANDLE Handle,
540 Status = uefi_call_wrapper(BS->HandleProtocol, 3, Handle, &UiProtocol, (VOID *)&Ui);
542 return (ReturnDevicePathStrOnMismatch) ? DevicePathToStr(DevicePathFromHandle(Handle)) : NULL;
562 return (ReturnDevicePathStrOnMismatch) ? DevicePathToStr(DevicePathFromHandle(Handle)) : NULL;
528 LibGetUiString( IN EFI_HANDLE Handle, IN UI_STRING_TYPE StringType, IN ISO_639_2 *LangCode, IN BOOLEAN ReturnDevicePathStrOnMismatch ) argument
/external/tensorflow/tensorflow/core/common_runtime/
H A Dpending_counts.h36 // std::vector<PendingCounts::Handle> h(C);
65 class Handle;
72 Handle CreateHandle(size_t max_pending_count, size_t max_dead_count);
94 void set_initial_count(Handle h, size_t pending_count) {
109 NodeState node_state(Handle h) {
116 void mark_started(Handle h) {
128 void mark_completed(Handle h) {
139 int pending(Handle h) {
160 int decrement_pending(Handle h, int v) {
174 void mark_live(Handle
229 class Handle { class in class:tensorflow::PendingCounts
231 Handle() : byte_offset_(0), is_large_(0) {} function in class:tensorflow::PendingCounts::Handle
[all...]
/external/v8/src/
H A Dhandles.h28 // Base class for Handle instantiations. Don't use directly.
81 // A Handle provides a reference to an object that survives relocation by
89 // semantics is ambiguous between Handle location and object identity. Instead
92 class Handle final : public HandleBase {
94 V8_INLINE explicit Handle(T** location = nullptr) function in class:v8::internal::final
100 V8_INLINE explicit Handle(T* object) : Handle(object, object->GetIsolate()) {} function in class:v8::internal::final
101 V8_INLINE Handle(T* object, Isolate* isolate) : HandleBase(object, isolate) {} function in class:v8::internal::final
104 V8_INLINE static Handle<T> New(T* object, Isolate* isolate);
107 // Ex. Handle<JSFunctio
109 V8_INLINE Handle(Handle<S> handle) function in class:v8::internal::final
[all...]
/external/webrtc/webrtc/modules/audio_processing/
H A Decho_cancellation_impl.cc24 typedef void Handle; typedef in namespace:webrtc
104 Handle* my_handle = static_cast<Handle*>(handle(handle_index));
151 Handle* my_handle = static_cast<Handle*>(handle(handle_index));
186 Handle* my_handle = handle(handle_index);
307 Handle* my_handle = static_cast<Handle*>(handle(0));
385 Handle* my_handle = static_cast<Handle*>(handl
[all...]
H A Decho_control_mobile_impl.cc22 typedef void Handle; typedef in namespace:webrtc
109 Handle* my_handle = static_cast<Handle*>(handle(handle_index));
156 Handle* my_handle = static_cast<Handle*>(handle(handle_index));
195 Handle* my_handle = static_cast<Handle*>(handle(handle_index));
300 Handle* my_handle = static_cast<Handle*>(handle(0));
365 WebRtcAecm_Free(static_cast<Handle*>(handl
[all...]
H A Dgain_control_impl.cc20 typedef void Handle; typedef in namespace:webrtc
79 Handle* my_handle = static_cast<Handle*>(handle(i));
118 Handle* my_handle = static_cast<Handle*>(handle(i));
142 Handle* my_handle = static_cast<Handle*>(handle(i));
156 Handle* my_handle = static_cast<Handle*>(handle(i));
195 Handle* my_handl
[all...]
/external/libnl/python/netlink/route/
H A Dtc.py45 class Handle(object): class in inherits:object
51 handle = tc.Handle('10:20')
68 if isinstance(other, Handle):
162 return Handle(capi.rtnl_tc_get_handle(self._rtnl_tc))
171 return Handle(capi.rtnl_tc_get_parent(self._rtnl_tc))
/external/llvm/lib/ExecutionEngine/Orc/
H A DOrcCBindingsStack.h54 GenericHandleImpl(LayerT &Layer, typename LayerT::ModuleSetHandleT Handle) argument
55 : Layer(Layer), Handle(std::move(Handle)) {}
59 return Layer.findSymbolIn(Handle, Name, ExportedSymbolsOnly);
62 void removeModule() override { return Layer.removeModuleSet(Handle); }
66 typename LayerT::ModuleSetHandleT Handle; member in class:llvm::OrcCBindingsStack::GenericHandleImpl
71 createGenericHandle(LayerT &Layer, typename LayerT::ModuleSetHandleT Handle) { argument
73 std::move(Handle));
241 typename LayerT::ModuleSetHandleT Handle) {
246 GenericHandles[NewHandle] = createGenericHandle(Layer, std::move(Handle));
240 createHandle(LayerT &Layer, typename LayerT::ModuleSetHandleT Handle) argument
[all...]
/external/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp82 handle_type Handle; member in class:__anon15085::ScopedHandle
86 : Handle(HandleType::GetInvalidHandle()) {}
89 : Handle(handle) {}
92 HandleType::Destruct(Handle);
97 if (!HandleType::isValid(Handle))
98 HandleType::Destruct(Handle);
99 Handle = handle;
104 return HandleType::isValid(Handle);
108 return Handle;
120 static void Destruct(handle_type Handle) { argument
124 isValid(handle_type Handle) argument
136 Destruct(handle_type Handle) argument
140 isValid(handle_type Handle) argument
152 Destruct(handle_type Handle) argument
156 isValid(handle_type Handle) argument
[all...]
/external/python/cpython3/Lib/
H A Dsubprocess.py176 class Handle(int): class in inherits:int
886 p2cread = Handle(p2cread)
890 p2cread, p2cwrite = Handle(p2cread), Handle(p2cwrite)
904 c2pwrite = Handle(c2pwrite)
908 c2pread, c2pwrite = Handle(c2pread), Handle(c2pwrite)
922 errwrite = Handle(errwrite)
926 errread, errwrite = Handle(errread), Handle(errwrit
[all...]
/external/swiftshader/third_party/LLVM/utils/KillTheDoctor/
H A DKillTheDoctor.cpp77 handle_type Handle; member in class:__anon23208::ScopedHandle
81 : Handle(HandleType::GetInvalidHandle()) {}
84 : Handle(handle) {}
87 HandleType::Destruct(Handle);
92 if (!HandleType::isValid(Handle))
93 HandleType::Destruct(Handle);
94 Handle = handle;
99 return HandleType::isValid(Handle);
103 return Handle;
115 static void Destruct(handle_type Handle) { argument
119 isValid(handle_type Handle) argument
131 Destruct(handle_type Handle) argument
135 isValid(handle_type Handle) argument
147 Destruct(handle_type Handle) argument
151 isValid(handle_type Handle) argument
[all...]
/external/syslinux/efi32/include/efi/
H A Dlibsmbios.h48 UINT8 Handle[2]; member in struct:__anon24000

Completed in 657 milliseconds

1234