/third_party/node/deps/ngtcp2/ngtcp2/crypto/boringssl/ |
H A D | boringssl.c | 71 md->native_handle = (void *)EVP_sha256(); in ngtcp2_crypto_md_sha256() 77 ctx->md.native_handle = (void *)EVP_sha256(); in ngtcp2_crypto_ctx_initial() 78 ctx->hp.native_handle = (void *)&crypto_cipher_aes_128; in ngtcp2_crypto_ctx_initial() 86 aead->native_handle = aead_native_handle; in ngtcp2_crypto_aead_init() 87 aead->max_overhead = EVP_AEAD_max_overhead(aead->native_handle); in ngtcp2_crypto_aead_init() 161 ctx->md.native_handle = (void *)crypto_ssl_get_md(ssl); in ngtcp2_crypto_ctx_tls() 162 ctx->hp.native_handle = (void *)crypto_ssl_get_hp(ssl); in ngtcp2_crypto_ctx_tls() 178 return crypto_md_hashlen(md->native_handle); in ngtcp2_crypto_md_hashlen() 186 return crypto_aead_keylen(aead->native_handle); in ngtcp2_crypto_aead_keylen() 194 return crypto_aead_noncelen(aead->native_handle); in ngtcp2_crypto_aead_noncelen() [all...] |
/third_party/node/deps/ngtcp2/ngtcp2/crypto/wolfssl/ |
H A D | wolfssl.c | 51 md->native_handle = (void *)wolfSSL_EVP_sha256(); in ngtcp2_crypto_md_sha256() 57 ctx->md.native_handle = (void *)wolfSSL_EVP_sha256(); in ngtcp2_crypto_ctx_initial() 58 ctx->hp.native_handle = (void *)wolfSSL_EVP_aes_128_ctr(); in ngtcp2_crypto_ctx_initial() 66 aead->native_handle = aead_native_handle; in ngtcp2_crypto_aead_init() 111 ctx->md.native_handle = (void *)wolfSSL_quic_get_md(ssl); in ngtcp2_crypto_ctx_tls() 112 ctx->hp.native_handle = (void *)wolfSSL_quic_get_hp(ssl); in ngtcp2_crypto_ctx_tls() 129 return crypto_md_hashlen(md->native_handle); in ngtcp2_crypto_md_hashlen() 137 return crypto_aead_keylen(aead->native_handle); in ngtcp2_crypto_aead_keylen() 145 return crypto_aead_noncelen(aead->native_handle); in ngtcp2_crypto_aead_noncelen() 151 const WOLFSSL_EVP_CIPHER *cipher = aead->native_handle; in ngtcp2_crypto_aead_ctx_encrypt_init() [all...] |
/third_party/node/deps/ngtcp2/ngtcp2/crypto/openssl/ |
H A D | openssl.c | 65 md->native_handle = (void *)EVP_sha256(); in ngtcp2_crypto_md_sha256() 71 ctx->md.native_handle = (void *)EVP_sha256(); in ngtcp2_crypto_ctx_initial() 72 ctx->hp.native_handle = (void *)EVP_aes_128_ctr(); in ngtcp2_crypto_ctx_initial() 80 aead->native_handle = aead_native_handle; in ngtcp2_crypto_aead_init() 163 ctx->md.native_handle = (void *)crypto_ssl_get_md(ssl); in ngtcp2_crypto_ctx_tls() 164 ctx->hp.native_handle = (void *)crypto_ssl_get_hp(ssl); in ngtcp2_crypto_ctx_tls() 180 return crypto_md_hashlen(md->native_handle); in ngtcp2_crypto_md_hashlen() 188 return crypto_aead_keylen(aead->native_handle); in ngtcp2_crypto_aead_keylen() 196 return crypto_aead_noncelen(aead->native_handle); in ngtcp2_crypto_aead_noncelen() 202 const EVP_CIPHER *cipher = aead->native_handle; in ngtcp2_crypto_aead_ctx_encrypt_init() [all...] |
/third_party/skia/third_party/externals/swiftshader/src/Common/ |
H A D | GrallocAndroid.cpp | 121 native_handle_t *native_handle = const_cast<native_handle_t *>(handle); in release() local 122 return m_gralloc4_mapper->freeBuffer(native_handle).isOk() ? 0 : 1; in release() 129 native_handle_t *native_handle = const_cast<native_handle_t *>(handle); in release() local 130 return m_gralloc3_mapper->freeBuffer(native_handle).isOk() ? 0 : 1; in release() 142 native_handle_t *native_handle = const_cast<native_handle_t *>(handle); in lock() local 153 auto ret = m_gralloc4_mapper->lock(native_handle, usage, rect, empty_fence_handle, in lock() 168 native_handle_t *native_handle = const_cast<native_handle_t *>(handle); in lock() local 179 auto ret = m_gralloc3_mapper->lock(native_handle, usage, rect, empty_fence_handle, in lock() 224 native_handle_t *native_handle = const_cast<native_handle_t *>(handle); in unlock() local 227 auto ret = m_gralloc4_mapper->unlock(native_handle, in unlock() 238 native_handle_t *native_handle = const_cast<native_handle_t *>(handle); unlock() local [all...] |
/third_party/skia/third_party/externals/swiftshader/src/System/ |
H A D | GrallocAndroid.cpp | 121 native_handle_t *native_handle = const_cast<native_handle_t *>(handle); in release() local 122 return m_gralloc4_mapper->freeBuffer(native_handle).isOk() ? 0 : 1; in release() 129 native_handle_t *native_handle = const_cast<native_handle_t *>(handle); in release() local 130 return m_gralloc3_mapper->freeBuffer(native_handle).isOk() ? 0 : 1; in release() 142 native_handle_t *native_handle = const_cast<native_handle_t *>(handle); in lock() local 153 auto ret = m_gralloc4_mapper->lock(native_handle, usage, rect, empty_fence_handle, in lock() 168 native_handle_t *native_handle = const_cast<native_handle_t *>(handle); in lock() local 179 auto ret = m_gralloc3_mapper->lock(native_handle, usage, rect, empty_fence_handle, in lock() 224 native_handle_t *native_handle = const_cast<native_handle_t *>(handle); in unlock() local 227 auto ret = m_gralloc4_mapper->unlock(native_handle, in unlock() 238 native_handle_t *native_handle = const_cast<native_handle_t *>(handle); unlock() local [all...] |
/third_party/node/deps/ngtcp2/ngtcp2/crypto/picotls/ |
H A D | picotls.c | 45 md->native_handle = (void *)&ptls_openssl_sha256; in ngtcp2_crypto_md_sha256() 51 ctx->md.native_handle = (void *)&ptls_openssl_sha256; in ngtcp2_crypto_ctx_initial() 52 ctx->hp.native_handle = (void *)&ptls_openssl_aes128ctr; in ngtcp2_crypto_ctx_initial() 62 aead->native_handle = aead_native_handle; in ngtcp2_crypto_aead_init() 136 ctx->md.native_handle = (void *)crypto_ptls_get_md(cptls->ptls); in ngtcp2_crypto_ctx_tls() 137 ctx->hp.native_handle = (void *)crypto_ptls_get_hp(cptls->ptls); in ngtcp2_crypto_ctx_tls() 154 return crypto_md_hashlen(md->native_handle); in ngtcp2_crypto_md_hashlen() 162 return crypto_aead_keylen(aead->native_handle); in ngtcp2_crypto_aead_keylen() 170 return crypto_aead_noncelen(aead->native_handle); in ngtcp2_crypto_aead_noncelen() 176 const ptls_aead_algorithm_t *cipher = aead->native_handle; in ngtcp2_crypto_aead_ctx_encrypt_init() [all...] |
/third_party/node/deps/v8/src/base/platform/ |
H A D | condition-variable.cc | 52 pthread_cond_timedwait_relative_np(&native_handle_, &lock.native_handle(), in ~ConditionVariable() 78 int result = pthread_cond_wait(&native_handle_, &mutex->native_handle()); in Wait() 96 &native_handle_, &mutex->native_handle(), &ts); in WaitFor() 113 &native_handle_, &mutex->native_handle(), &ts); in WaitFor() 144 V8ToWindowsType(&mutex->native_handle()), INFINITE, 155 V8ToWindowsType(&mutex->native_handle()), static_cast<DWORD>(msec), 0); 189 SbConditionVariableWait(&native_handle_, &mutex->native_handle()); 195 &native_handle_, &mutex->native_handle(), microseconds);
|
H A D | condition-variable.h | 77 NativeHandle& native_handle() { in native_handle() function in v8::base::final 80 const NativeHandle& native_handle() const { in native_handle() function in v8::base::final
|
H A D | semaphore.h | 68 NativeHandle& native_handle() { in native_handle() function in v8::base::final 71 const NativeHandle& native_handle() const { in native_handle() function in v8::base::final
|
H A D | mutex.h | 74 NativeHandle& native_handle() { in native_handle() function in v8::base::final 77 const NativeHandle& native_handle() const { in native_handle() function in v8::base::final
|
/third_party/benchmark/src/ |
H A D | mutex.h | 81 std::mutex& native_handle() { return mut_; } in native_handle() function 91 MutexLock(Mutex& m) ACQUIRE(m) : ml_(m.native_handle()) {} in ACQUIRE() 93 MutexLockImp& native_handle() { return ml_; } in native_handle() function in benchmark::MutexLock 142 phase_condition_.wait(ml.native_handle(), cb); in REQUIRES()
|
H A D | thread_manager.h | 35 end_condition_.wait(lock.native_handle(), in EXCLUDES()
|
/third_party/gn/src/util/ |
H A D | semaphore.h | 45 NativeHandle& native_handle() { return native_handle_; } in native_handle() function in Semaphore 46 const NativeHandle& native_handle() const { return native_handle_; } in native_handle() function in Semaphore
|
/third_party/mesa3d/include/android_stub/vndk/ |
H A D | hardware_buffer.h | 23 #include <cutils/native_handle.h>
|
/third_party/mesa3d/include/android_stub/cutils/ |
H A D | native_handle.h | 34 typedef struct native_handle struct
|
/third_party/skia/third_party/externals/swiftshader/include/Android/hardware/ |
H A D | gralloc.h | 19 #include <cutils/native_handle.h>
|
H A D | gralloc1.h | 21 #include <cutils/native_handle.h>
|
/third_party/skia/third_party/externals/swiftshader/include/Android/nativebase/ |
H A D | nativebase.h | 19 #include <cutils/native_handle.h>
|
/third_party/skia/third_party/externals/swiftshader/src/Main/ |
H A D | FrameBufferAndroid.hpp | 18 #include <cutils/native_handle.h>
|
/third_party/mesa3d/src/egl/drivers/dri2/ |
H A D | platform_android_mapper.cpp | 56 auto native_handle = const_cast<native_handle_t*>(buffer); in GetMetadata() local 58 auto ret = mapper->get(native_handle, type, in GetMetadata()
|
/third_party/mesa3d/include/android_stub/system/ |
H A D | camera.h | 23 #include <cutils/native_handle.h>
|
/third_party/mesa3d/include/android_stub/nativebase/ |
H A D | nativebase.h | 24 #include <cutils/native_handle.h>
|
/third_party/libdrm/android/ |
H A D | gralloc_handle.h | 29 #include <cutils/native_handle.h>
|
/third_party/mesa3d/include/android_stub/hardware/ |
H A D | fb.h | 25 #include <cutils/native_handle.h>
|
H A D | hardware.h | 23 #include <cutils/native_handle.h>
|