Home
last modified time | relevance | path

Searched refs:native_handle (Results 1 - 25 of 36) sorted by relevance

12

/third_party/node/deps/ngtcp2/ngtcp2/crypto/boringssl/
H A Dboringssl.c71 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 Dwolfssl.c51 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 Dopenssl.c65 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 DGrallocAndroid.cpp121 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 DGrallocAndroid.cpp121 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 Dpicotls.c45 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 Dcondition-variable.cc52 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 Dcondition-variable.h77 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 Dsemaphore.h68 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 Dmutex.h74 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 Dmutex.h81 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 Dthread_manager.h35 end_condition_.wait(lock.native_handle(), in EXCLUDES()
/third_party/gn/src/util/
H A Dsemaphore.h45 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 Dhardware_buffer.h23 #include <cutils/native_handle.h>
/third_party/mesa3d/include/android_stub/cutils/
H A Dnative_handle.h34 typedef struct native_handle struct
/third_party/skia/third_party/externals/swiftshader/include/Android/hardware/
H A Dgralloc.h19 #include <cutils/native_handle.h>
H A Dgralloc1.h21 #include <cutils/native_handle.h>
/third_party/skia/third_party/externals/swiftshader/include/Android/nativebase/
H A Dnativebase.h19 #include <cutils/native_handle.h>
/third_party/skia/third_party/externals/swiftshader/src/Main/
H A DFrameBufferAndroid.hpp18 #include <cutils/native_handle.h>
/third_party/mesa3d/src/egl/drivers/dri2/
H A Dplatform_android_mapper.cpp56 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 Dcamera.h23 #include <cutils/native_handle.h>
/third_party/mesa3d/include/android_stub/nativebase/
H A Dnativebase.h24 #include <cutils/native_handle.h>
/third_party/libdrm/android/
H A Dgralloc_handle.h29 #include <cutils/native_handle.h>
/third_party/mesa3d/include/android_stub/hardware/
H A Dfb.h25 #include <cutils/native_handle.h>
H A Dhardware.h23 #include <cutils/native_handle.h>

Completed in 10 milliseconds

12