HomeSort by relevance Sort by last modified time
    Searched defs:native_handle (Results 1 - 18 of 18) sorted by null

  /external/libchrome/base/synchronization/
lock_impl.h 49 NativeHandle* native_handle() { return &native_handle_; } function in class:base::internal::LockImpl
  /system/core/include/cutils/
native_handle.h 24 typedef struct native_handle struct
  /external/v8/src/base/platform/
condition-variable.h 86 NativeHandle& native_handle() { function in class:v8::base::final
89 const NativeHandle& native_handle() const { function in class:v8::base::final
semaphore.h 60 NativeHandle& native_handle() { function in class:v8::base::final
63 const NativeHandle& native_handle() const { function in class:v8::base::final
mutex.h 62 NativeHandle& native_handle() { function in class:v8::base::final
65 const NativeHandle& native_handle() const { function in class:v8::base::final
157 NativeHandle& native_handle() { function in class:v8::base::final
160 const NativeHandle& native_handle() const { function in class:v8::base::final
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_socket_acceptor.hpp 491 /// (Deprecated: Use native_handle().) Get the native acceptor representation.
499 return this->get_service().native_handle(this->get_implementation());
508 native_handle_type native_handle() function in class:asio::basic_socket_acceptor
510 return this->get_service().native_handle(this->get_implementation());
    [all...]
basic_socket.hpp 383 /// (Deprecated: Use native_handle().) Get the native socket representation.
391 return this->get_service().native_handle(this->get_implementation());
400 native_handle_type native_handle() function in class:asio::basic_socket
402 return this->get_service().native_handle(this->get_implementation());
    [all...]
socket_acceptor_service.hpp 152 /// (Deprecated: Use native_handle().) Get the native acceptor implementation.
155 return service_impl_.native_handle(impl);
159 native_handle_type native_handle(implementation_type& impl) function in class:asio::socket_acceptor_service
161 return service_impl_.native_handle(impl);
stream_socket_service.hpp 135 /// (Deprecated: Use native_handle().) Get the native socket implementation.
138 return service_impl_.native_handle(impl);
142 native_handle_type native_handle(implementation_type& impl) function in class:asio::stream_socket_service
144 return service_impl_.native_handle(impl);
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
reactive_socket_service_base.hpp 91 native_handle_type native_handle(base_implementation_type& impl) function in class:asio::detail::reactive_socket_service_base
reactive_socket_service.hpp 130 native_handle_type native_handle(implementation_type& impl) function in class:asio::detail::reactive_socket_service
  /external/webrtc/webrtc/common_video/
video_frame_buffer.cc 98 void* I420Buffer::native_handle() const { function in class:webrtc::I420Buffer
107 NativeHandleBuffer::NativeHandleBuffer(void* native_handle,
110 : native_handle_(native_handle), width_(width), height_(height) {
111 RTC_DCHECK(native_handle != nullptr);
134 void* NativeHandleBuffer::native_handle() const { function in class:webrtc::NativeHandleBuffer
198 void* WrappedI420Buffer::native_handle() const { function in class:webrtc::WrappedI420Buffer
211 RTC_CHECK(buffer->native_handle() == nullptr);
video_frame.cc 79 !video_frame_buffer_->native_handle() &&
142 } else if (videoFrame.native_handle()) {
204 void* VideoFrame::native_handle() const { function in class:webrtc::VideoFrame
205 return video_frame_buffer_ ? video_frame_buffer_->native_handle() : nullptr;
218 RTC_DCHECK(native_handle());
  /external/google-benchmark/src/
mutex.h 88 std::mutex& native_handle() { function
100 MutexLock(Mutex& m) ACQUIRE(m) : ml_(m.native_handle())
103 MutexLockImp& native_handle() { return ml_; } function in class:benchmark::MutexLock
119 cv_.wait(m_lock.native_handle(), notified_fn);
  /hardware/intel/common/omx-components/videocodec/securevideo/moorefield/
OMXVideoDecoderAVCSecure.cpp 175 native_handle_t *native_handle = (native_handle_t *)pInput->pBuffer; local
176 ProtectedDataBuffer *dataBuffer = (ProtectedDataBuffer *) native_handle->data[1];
279 native_handle_t *native_handle = (native_handle_t *)buffer->pBuffer; local
280 ProtectedDataBuffer *dataBuffer = (ProtectedDataBuffer *) native_handle->data[1];
355 native_handle_t *native_handle = (native_handle_t *)buffer->pBuffer; local
356 ProtectedDataBuffer *dataBuffer = (ProtectedDataBuffer *) native_handle->data[1];
382 native_handle_t *native_handle = (native_handle_t *)buffer->pBuffer; local
383 ProtectedDataBuffer *dataBuffer = (ProtectedDataBuffer *) native_handle->data[1];
451 native_handle_t *native_handle = (native_handle_t *)buffer->pBuffer; local
453 ProtectedDataBuffer *dataBuffer = (ProtectedDataBuffer *) native_handle->data[1]
649 native_handle_t *native_handle = (native_handle_t *) pBuffer; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/
OMXVideoDecoderBase.cpp 645 //Get data pointer from native_handle
646 native_handle_t *native_handle = (native_handle_t *)buffer->pBuffer; local
647 ProtectedDataBuffer *dataBuffer = (ProtectedDataBuffer *) native_handle->data[1];
    [all...]
  /frameworks/av/media/libmedia/
IOMX.cpp 490 buffer_id *buffer, void **buffer_data, sp<NativeHandle> *native_handle) {
502 *native_handle = NULL;
509 *native_handle = NativeHandle::create(
512 *native_handle = NULL;
944 native_handle *handle = NULL;
1112 sp<NativeHandle> native_handle; local
    [all...]
  /frameworks/av/media/libstagefright/
ACodec.cpp 876 sp<NativeHandle> native_handle; local
879 &ptr, &native_handle);
890 native_handle == NULL ? NULL : native_handle->handle();
893 info.mNativeHandle = native_handle;
    [all...]

Completed in 431 milliseconds