HomeSort by relevance Sort by last modified time
    Searched refs:HandleType (Results 1 - 25 of 34) sorted by null

1 2

  /external/swiftshader/third_party/LLVM/lib/Support/Windows/
Windows.h 65 template <class HandleType, uintptr_t InvalidHandle,
68 HandleType Handle;
72 ScopedHandle(HandleType handle) : Handle(handle) {}
75 if (Handle != HandleType(InvalidHandle))
79 HandleType take() {
80 HandleType temp = Handle;
81 Handle = HandleType(InvalidHandle);
85 operator HandleType() const { return Handle; }
87 ScopedHandle &operator=(HandleType handle) {
97 return Handle == HandleType(InvalidHandle) ? 0 : unspecified_bool_true
    [all...]
  /system/tools/hidl/
HandleType.cpp 17 #include "HandleType.h"
26 HandleType::HandleType(Scope* parent) : Type(parent) {}
28 bool HandleType::isHandle() const {
32 std::string HandleType::typeName() const {
36 std::string HandleType::getCppType(StorageMode mode,
54 std::string HandleType::getVtsType() const {
58 void HandleType::emitReaderWriter(
92 bool HandleType::useNameInEmitReaderWriterEmbedded(bool isReader) const {
96 void HandleType::emitReaderWriterEmbedded
    [all...]
HandleType.h 25 struct HandleType : public Type {
26 HandleType(Scope* parent);
hidl-gen_l.ll 40 #include "HandleType.h"
135 "handle" { yylval->type = new HandleType(*scope); return token::TYPE; }
  /external/vulkan-validation-layers/layers/
unique_objects.h 114 template <typename HandleType, typename MapType>
115 HandleType Unwrap(MapType *layer_data, HandleType wrappedHandle) {
117 return (HandleType)layer_data->unique_id_mapping[reinterpret_cast<uint64_t const &>(wrappedHandle)];
122 template <typename HandleType, typename MapType>
123 HandleType WrapNew(MapType *layer_data, HandleType newlyCreatedHandle) {
126 return (HandleType)unique_id;
  /external/libmojo/mojo/public/cpp/system/
handle.h 38 // |ScopedHandleBase<HandleType>| is a templated scoped wrapper, for the handle
72 template <class HandleType>
75 using RawHandleType = HandleType;
78 explicit ScopedHandleBase(HandleType handle) : handle_(handle) {}
95 const HandleType& get() const { return handle_; }
96 const HandleType* operator->() const { return &handle_; }
99 static ScopedHandleBase<HandleType> From(
102 sizeof(static_cast<PassedHandleType*>(static_cast<HandleType*>(0))),
103 "HandleType is not a subtype of PassedHandleType");
104 return ScopedHandleBase<HandleType>(
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkStrUtil.hpp 37 template<HandleType Type>
vkHandleType.inl 4 enum HandleType
vkDefs.hpp 73 // enum HandleType { HANDLE_TYPE_INSTANCE, ... };
76 template<HandleType Type>
  /external/libxcam/capi/
context_priv.h 33 enum HandleType {
47 bool handle_name_equal (const char *name, HandleType type);
76 HandleType get_type () const {
82 ContextBase (HandleType type);
93 HandleType _type;
context_priv.cpp 49 handle_name_equal (const char *name, HandleType type)
54 ContextBase::ContextBase (HandleType type)
  /system/core/libunwindstack/tests/
ElfInterfaceArmTest.cpp 248 ASSERT_FALSE(interface.HandleType(0x1000, PT_NULL, 0));
249 ASSERT_FALSE(interface.HandleType(0x1000, PT_LOAD, 0));
250 ASSERT_FALSE(interface.HandleType(0x1000, PT_DYNAMIC, 0));
251 ASSERT_FALSE(interface.HandleType(0x1000, PT_INTERP, 0));
252 ASSERT_FALSE(interface.HandleType(0x1000, PT_NOTE, 0));
253 ASSERT_FALSE(interface.HandleType(0x1000, PT_SHLIB, 0));
254 ASSERT_FALSE(interface.HandleType(0x1000, PT_PHDR, 0));
255 ASSERT_FALSE(interface.HandleType(0x1000, PT_TLS, 0));
256 ASSERT_FALSE(interface.HandleType(0x1000, PT_LOOS, 0));
257 ASSERT_FALSE(interface.HandleType(0x1000, PT_HIOS, 0))
    [all...]
  /hardware/interfaces/graphics/composer/2.1/utils/hal/include/composer-hal/2.1/
ComposerResources.h 99 enum class HandleType {
105 ComposerHandleCache(ComposerHandleImporter& importer, HandleType type, uint32_t cacheSize)
113 case HandleType::BUFFER:
118 case HandleType::STREAM:
131 bool initCache(HandleType type, uint32_t cacheSize) {
133 if (mHandleType != HandleType::INVALID) {
178 HandleType mHandleType = HandleType::INVALID;
186 : mBufferCache(importer, ComposerHandleCache::HandleType::BUFFER, bufferCacheSize),
187 mSidebandStreamCache(importer, ComposerHandleCache::HandleType::STREAM, 1) {
    [all...]
  /external/libmojo/mojo/edk/embedder/
embedder_unittest.cc 468 enum class HandleType {
474 const HandleType kTestHandleTypes[] = {
475 HandleType::MACH,
476 HandleType::MACH_NULL,
477 HandleType::POSIX,
478 HandleType::POSIX,
479 HandleType::MACH,
491 if (type == HandleType::POSIX) {
498 } else if (type == HandleType::MACH_NULL) {
541 if (type == HandleType::POSIX)
    [all...]
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 78 template <typename HandleType>
80 typedef typename HandleType::handle_type handle_type;
86 : Handle(HandleType::GetInvalidHandle()) {}
92 HandleType::Destruct(Handle);
97 if (!HandleType::isValid(Handle))
98 HandleType::Destruct(Handle);
104 return HandleType::isValid(Handle);
  /external/swiftshader/third_party/LLVM/utils/KillTheDoctor/
KillTheDoctor.cpp 73 template <typename HandleType>
75 typedef typename HandleType::handle_type handle_type;
81 : Handle(HandleType::GetInvalidHandle()) {}
87 HandleType::Destruct(Handle);
92 if (!HandleType::isValid(Handle))
93 HandleType::Destruct(Handle);
99 return HandleType::isValid(Handle);
  /frameworks/native/vulkan/nulldrv/
null_driver.cpp 70 namespace HandleType {
92 } // namespace HandleType
103 std::array<uint64_t, HandleType::kNumTypes> next_handle;
181 Handle AllocHandle(VkInstance instance, HandleType::Enum type) {
187 Handle AllocHandle(VkDevice device, HandleType::Enum type) {
706 typedef VkCommandPool HandleType;
777 typedef VkDeviceMemory HandleType;
827 typedef VkBuffer HandleType;
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiHandleParsingLib/
UefiHandleParsingLib.c     [all...]
  /hardware/interfaces/graphics/composer/2.2/utils/hal/include/composer-hal/2.2/
ComposerResources.h 40 mReadbackBufferCache(importer, ComposerHandleCache::HandleType::BUFFER, 1) {}
  /system/core/libunwindstack/
ElfInterfaceArm.h 71 bool HandleType(uint64_t offset, uint32_t type, uint64_t load_bias) override;
ElfInterfaceArm.cpp 82 bool ElfInterfaceArm::HandleType(uint64_t offset, uint32_t type, uint64_t load_bias) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ndr64types.h 60 NDR64_UINT32 HandleType : 3;
157 NDR64_FORMAT_CHAR HandleType;
164 NDR64_FORMAT_CHAR HandleType;
172 NDR64_FORMAT_CHAR HandleType;
sql.h 486 SQLRETURN SQL_API SQLAllocHandle(SQLSMALLINT HandleType,SQLHANDLE InputHandle,SQLHANDLE *OutputHandle);
511 SQLRETURN SQL_API SQLEndTran(SQLSMALLINT HandleType,SQLHANDLE Handle,SQLSMALLINT CompletionType);
523 SQLRETURN SQL_API SQLFreeHandle(SQLSMALLINT HandleType,SQLHANDLE Handle);
535 SQLRETURN SQL_API SQLGetDiagField(SQLSMALLINT HandleType,SQLHANDLE Handle,SQLSMALLINT RecNumber,SQLSMALLINT DiagIdentifier,SQLPOINTER DiagInfo,SQLSMALLINT BufferLength,SQLSMALLINT *StringLength);
536 SQLRETURN SQL_API SQLGetDiagRec(SQLSMALLINT HandleType,SQLHANDLE Handle,SQLSMALLINT RecNumber,SQLCHAR *Sqlstate,SQLINTEGER *NativeError,SQLCHAR *MessageText,SQLSMALLINT BufferLength,SQLSMALLINT *TextLength);
  /device/linaro/bootloader/edk2/ShellPkg/Include/Library/
HandleParsingLib.h 212 @param[out] HandleType An array of type information.
226 OUT UINTN **HandleType
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDriver1CommandsLib/
DrvCfg.c 572 UINTN *HandleType;
696 &HandleType
731 if ((HandleType[LoopCounter] & HR_CONTROLLER_HANDLE) == HR_CONTROLLER_HANDLE) {
753 if ((HandleType[LoopCounter] & HR_CONTROLLER_HANDLE) != HR_CONTROLLER_HANDLE) {
    [all...]

Completed in 682 milliseconds

1 2