Searched defs:handle_ (Results 1 - 25 of 30) sorted by relevance

12

/external/skia/experimental/SkV8Example/
H A DPath2D.h31 return handle_;
40 v8::Persistent<v8::Object> handle_; member in class:Path2D
/external/webrtc/webrtc/common_audio/vad/
H A Dvad.cc22 : handle_(nullptr), aggressiveness_(aggressiveness) {
26 ~VadImpl() override { WebRtcVad_Free(handle_); } variable
31 int ret = WebRtcVad_Process(handle_, sample_rate_hz, audio, num_samples);
44 if (handle_)
45 WebRtcVad_Free(handle_); variable
46 handle_ = WebRtcVad_Create();
47 RTC_CHECK(handle_); variable
48 RTC_CHECK_EQ(WebRtcVad_Init(handle_), 0);
49 RTC_CHECK_EQ(WebRtcVad_set_mode(handle_, aggressiveness_), 0);
53 VadInst* handle_; member in class:webrtc::__anon20757::final
[all...]
/external/libchrome/base/
H A Dsync_socket.h47 explicit SyncSocket(Handle handle) : handle_(handle) {}
94 Handle handle() const { return handle_; }
97 Handle handle_; member in class:base::SyncSocket
/external/libchrome/base/synchronization/
H A Dwaitable_event.h90 HANDLE handle() const { return handle_.Get(); }
140 win::ScopedHandle handle_; member in class:base::WaitableEvent
/external/webrtc/webrtc/base/
H A Dlatebindingsymboltable.h54 DllHandle GetDllHandle() const { return handle_; }
61 DllHandle handle_; member in class:rtc::LateBindingSymbolTable
H A Dfileutils.h82 HANDLE handle_; member in class:rtc::DirectoryIterator
/external/webrtc/webrtc/modules/desktop_capture/
H A Dshared_memory.h45 Handle handle() const { return handle_; }
58 const Handle handle_; member in class:webrtc::SharedMemory
/external/webrtc/webrtc/modules/desktop_capture/win/
H A Dscoped_gdi_object.h26 ScopedGDIObject() : handle_(NULL) {}
27 explicit ScopedGDIObject(T object) : handle_(object) {}
30 Traits::Close(handle_);
34 return handle_;
38 if (handle_ && object != handle_)
39 Traits::Close(handle_);
40 handle_ = object;
49 T object = handle_;
50 handle_
57 T handle_; member in class:webrtc::win::ScopedGDIObject
[all...]
/external/libchrome/crypto/
H A Dscoped_capi_types.h51 explicit ScopedCAPIHandle(CAPIHandle handle = NULL) : handle_(handle) {}
58 if (handle_ != handle) {
60 free_proc(handle_);
61 handle_ = handle;
65 operator CAPIHandle() const { return handle_; }
66 CAPIHandle get() const { return handle_; }
69 CHECK(handle_ == NULL);
70 return &handle_;
74 return handle_ == handle;
78 return handle_ !
94 CAPIHandle handle_; member in class:crypto::ScopedCAPIHandle
[all...]
/external/libchrome/base/threading/
H A Dplatform_thread.h78 PlatformThreadHandle() : handle_(0) {}
80 explicit PlatformThreadHandle(Handle handle) : handle_(handle) {}
83 return handle_ == other.handle_;
87 return !handle_;
91 return handle_;
95 Handle handle_; member in class:base::PlatformThreadHandle
/external/v8/src/
H A Dprototype.h37 handle_(receiver),
40 CHECK(!handle_.is_null());
65 handle_(handle(receiver_map->prototype(), receiver_map->GetIsolate())),
73 DCHECK(!handle_.is_null());
74 if (handle_->IsAccessCheckNeeded()) {
76 Handle<JSObject>::cast(handle_));
83 DCHECK(handle_.is_null());
89 DCHECK(!iterator.handle_.is_null());
91 return Handle<T>::cast(iterator.handle_);
95 if (handle_
179 Handle<Object> handle_; member in class:v8::internal::PrototypeIterator
[all...]
/external/drm_hwcomposer/
H A Ddrmhwcomposer.h85 : gralloc_(gralloc), handle_(handle) {
91 handle_ = rhs.handle_;
92 rhs.handle_ = NULL;
101 handle_ = rhs.handle_;
102 rhs.handle_ = NULL;
111 return handle_;
116 native_handle_t *handle_ = NULL; member in class:android::DrmHwcNativeHandle
/external/v8/src/crankshaft/
H A Dunique.h54 handle_ = handle;
67 handle_ = uniq.handle_;
103 return handle_;
112 Handle<T>(reinterpret_cast<T**>(that.handle_.location())));
116 return raw_address_ != NULL || handle_.is_null();
130 : raw_address_(raw_address), handle_(handle) {}
133 Handle<T> handle_; member in class:v8::internal::final
/external/webrtc/webrtc/modules/audio_processing/aec/
H A Dsystem_delay_unittest.cc44 void* handle_; member in class:__anon20938::SystemDelayTest
57 : handle_(NULL), self_(NULL), samples_per_frame_(0) {
69 handle_ = WebRtcAec_Create();
70 ASSERT_TRUE(handle_);
71 self_ = reinterpret_cast<Aec*>(handle_);
76 WebRtcAec_Free(handle_);
77 handle_ = NULL;
100 EXPECT_EQ(0, WebRtcAec_Init(handle_, sample_rate_hz, 48000));
108 EXPECT_EQ(0, WebRtcAec_BufferFarend(handle_, far_, samples_per_frame_));
110 WebRtcAec_Process(handle_,
[all...]
/external/webrtc/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator_unittest.cc51 void* handle_; member in class:__anon20989::DelayEstimatorTest
67 : handle_(NULL),
93 handle_ = WebRtc_CreateDelayEstimator(farend_handle_, kLookahead);
94 ASSERT_TRUE(handle_ != NULL);
95 self_ = reinterpret_cast<DelayEstimator*>(handle_);
103 WebRtc_FreeDelayEstimator(handle_);
104 handle_ = NULL;
118 EXPECT_EQ(0, WebRtc_InitDelayEstimator(handle_));
122 EXPECT_EQ(-2, WebRtc_last_delay(handle_)); // Delay in initial state.
123 EXPECT_FLOAT_EQ(0, WebRtc_last_delay_quality(handle_)); // Zer
[all...]
/external/google-breakpad/src/client/windows/crash_generation/
H A Dminidump_generator.cc94 ULONG64 handle_; member in class:__anon6078::HandleTraceData
96 // List of handle operations for |handle_|.
106 handle_(NULL) {
155 // Now that |handle_| is initialized, purge all irrelevant operations.
159 if (i->Handle == handle_) {
237 self->handle_ = description->Handle;
/external/google-breakpad/src/common/windows/
H A Dhttp_upload.cc51 explicit AutoInternetHandle(HINTERNET handle) : handle_(handle) {}
53 if (handle_) {
54 InternetCloseHandle(handle_);
58 HINTERNET get() { return handle_; }
61 HINTERNET handle_; member in class:google_breakpad::HTTPUpload::AutoInternetHandle
/external/webrtc/webrtc/sound/
H A Dalsasoundsystem.cc83 handle_(handle),
102 frames = symbol_table()->snd_pcm_avail_update()(handle_);
112 int ready = symbol_table()->snd_pcm_wait()(handle_, wait_timeout_ms_);
125 frames = symbol_table()->snd_pcm_avail_update()(handle_);
144 int err = symbol_table()->snd_pcm_delay()(handle_, &delay);
162 handle_,
175 symbol_table()->snd_pcm_stream()(handle_) == SND_PCM_STREAM_CAPTURE) {
178 err = symbol_table()->snd_pcm_start()(handle_);
188 if (handle_) {
190 err = symbol_table()->snd_pcm_drop()(handle_);
223 snd_pcm_t *handle_; member in class:rtc::AlsaStream
[all...]
/external/vulkan-validation-layers/tests/
H A Dvktestbinding.h75 const T &handle() const { return handle_; }
76 bool initialized() const { return (handle_ != VK_NULL_HANDLE); }
81 explicit Handle() : handle_(VK_NULL_HANDLE) {}
82 explicit Handle(T handle) : handle_(handle) {}
86 handle_ = handle;
94 T handle_; member in class:vk_testing::internal::Handle
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest-internal-inl.h962 AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
963 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
967 HANDLE Get() const { return handle_; }
970 if (handle != handle_) {
971 if (handle_ != INVALID_HANDLE_VALUE)
972 ::CloseHandle(handle_);
973 handle_ = handle;
978 HANDLE handle_; member in class:testing::internal::AutoHandle
/external/gtest/src/
H A Dgtest-internal-inl.h975 AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
976 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
980 HANDLE Get() const { return handle_; }
983 if (handle != handle_) {
984 if (handle_ != INVALID_HANDLE_VALUE)
985 ::CloseHandle(handle_);
986 handle_ = handle;
991 HANDLE handle_; member in class:testing::internal::AutoHandle
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-internal-inl.h947 AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
948 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
952 HANDLE Get() const { return handle_; }
955 if (handle != handle_) {
956 if (handle_ != INVALID_HANDLE_VALUE)
957 ::CloseHandle(handle_);
958 handle_ = handle;
963 HANDLE handle_; member in class:testing::internal::AutoHandle
/external/mesa3d/src/gtest/src/
H A Dgtest-internal-inl.h944 AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
945 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
949 HANDLE Get() const { return handle_; }
952 if (handle != handle_) {
953 if (handle_ != INVALID_HANDLE_VALUE)
954 ::CloseHandle(handle_);
955 handle_ = handle;
960 HANDLE handle_; member in class:testing::internal::AutoHandle
/external/protobuf/gtest/src/
H A Dgtest-internal-inl.h986 AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
987 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
991 HANDLE Get() const { return handle_; }
994 if (handle != handle_) {
995 if (handle_ != INVALID_HANDLE_VALUE)
996 ::CloseHandle(handle_);
997 handle_ = handle;
1002 HANDLE handle_; member in class:testing::internal::AutoHandle
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-port.h1282 Handle handle_; member in class:testing::internal::AutoHandle

Completed in 9777 milliseconds

12