HomeSort by relevance Sort by last modified time
    Searched defs:handle_ (Results 51 - 75 of 102) sorted by null

1 23 4 5

  /external/tensorflow/tensorflow/core/kernels/
critical_section.cc 125 FunctionLibraryRuntime::Handle handle_; member in class:tensorflow::ExecuteInCriticalSectionOp::Closure
136 handle_(-1),
177 &handle_);
192 function_library->Run(opts_, handle_, arguments_t_, &output_t_,
stack_ops.cc 119 Tensor handle_; member in class:tensorflow::Stack
208 &stack->handle_, alloc_attr));
209 auto handle = stack->handle_.flat<string>();
212 ctx->set_output_ref(0, stack->mu(), &stack->handle_);
tensor_array.h 146 handle_(handle),
344 Tensor* handle() { return &handle_; }
365 return errors::InvalidArgument("TensorArray ", handle_.vec<string>()(1),
374 Tensor handle_; member in class:tensorflow::TensorArray
447 "TensorArray ", handle_.vec<string>()(1), ": Tried to write to index ",
464 "TensorArray ", handle_.vec<string>()(1),
471 "TensorArray ", handle_.vec<string>()(1),
482 return errors::InvalidArgument("TensorArray ", handle_.vec<string>()(1),
488 return errors::InvalidArgument("TensorArray ", handle_.vec<string>()(1),
500 "TensorArray ", handle_.vec<string>()(1)
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/aec/
system_delay_unittest.cc 44 void* handle_; member in class:__anon44151::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...]
  /system/core/adb/
transport.h 93 explicit UsbConnection(usb_handle* handle) : handle_(handle) {}
101 usb_handle* handle_; member in struct:UsbConnection
  /system/core/fastboot/
usb_windows.cpp 71 WindowsUsbTransport(std::unique_ptr<usb_handle> handle) : handle_(std::move(handle)) {}
79 std::unique_ptr<usb_handle> handle_; member in class:WindowsUsbTransport
161 if (nullptr != handle_) {
165 ret = AdbWriteEndpointSync(handle_->adb_write_pipe, const_cast<void*>(data), xfer,
172 usb_kick(handle_.get());
199 if (nullptr != handle_) {
203 ret = AdbReadEndpointSync(handle_->adb_read_pipe, data, xfer, &read, time_out);
211 usb_kick(handle_.get());
254 if (nullptr != handle_) {
256 usb_cleanup_handle(handle_.get())
    [all...]
usb_linux.cpp 96 explicit LinuxUsbTransport(std::unique_ptr<usb_handle> handle) : handle_(std::move(handle)) {}
105 std::unique_ptr<usb_handle> handle_; member in class:LinuxUsbTransport
394 if (handle_->ep_out == 0 || handle_->desc == -1) {
402 bulk.ep = handle_->ep_out;
407 n = ioctl(handle_->desc, USBDEVFS_BULK, &bulk);
429 if (handle_->ep_in == 0 || handle_->desc == -1) {
436 bulk.ep = handle_->ep_in;
443 DBG("[ usb read %d fd = %d], fname=%s\n", xfer, handle_->desc, handle_->fname)
    [all...]
usb_osx.cpp 70 OsxUsbTransport(std::unique_ptr<usb_handle> handle) : handle_(std::move(handle)) {}
78 std::unique_ptr<usb_handle> handle_; member in class:OsxUsbTransport
483 if (handle_ == nullptr) {
487 if (handle_->interface == nullptr) {
492 if (handle_->bulkIn == 0) {
497 result = (*handle_->interface)->ReadPipe(handle_->interface, handle_->bulkIn, data, &numBytes);
515 if (handle_ == NULL) {
519 if (handle_->interface == NULL)
    [all...]
  /art/libdexfile/dex/
dex_file_loader.cc 78 const int32_t error = ExtractToMemory(handle_, zip_entry_, map.data(), map.size());
101 : handle_(handle), zip_entry_(zip_entry), entry_name_(entry_name) {}
103 ZipArchiveHandle handle_; member in class:art::DexZipEntry
130 const int32_t error = FindEntry(handle_, ZipString(name), zip_entry.get());
135 return new DexZipEntry(handle_, zip_entry.release(), name);
139 CloseArchive(handle_);
144 explicit DexZipArchive(ZipArchiveHandle handle) : handle_(handle) {}
145 ZipArchiveHandle handle_; member in class:art::DexZipArchive
  /external/drm_hwcomposer/
drmhwcomposer.h 85 : 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
drmhwctwo.h 203 hwc2_display_t handle_; member in class:android::DrmHwcTwo::HwcDisplay
  /external/google-breakpad/src/client/windows/crash_generation/
minidump_generator.cc 94 ULONG64 handle_; member in class:__anon20758::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/
http_upload.cc 51 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/libcxx/test/support/
test_allocator.h 356 std::shared_ptr<BuffT> handle_; member in class:limited_allocator
368 limited_allocator() : handle_(new BuffT) {}
370 limited_allocator(limited_allocator const& other) : handle_(other.handle_) {}
374 : handle_(other.handle_) {}
380 pointer allocate(size_type n) { return handle_->template allocate<T>(n); }
381 void deallocate(pointer p, size_type n) { handle_->deallocate(p, n); }
384 BuffT* getHandle() const { return handle_.get(); }
  /external/libmojo/mojo/edk/system/
channel_posix.cc 95 handle_(connection_params.TakeChannelHandle()),
102 CHECK(handle_.is_valid());
217 if (handle_.get().needs_connection) {
219 handle_.get().handle, false /* persistent */,
225 handle_.get().handle, true /* persistent */,
245 handle_.get().handle, false /* persistent */,
259 ignore_result(handle_.release());
260 handle_.reset();
278 CHECK_EQ(fd, handle_.get().handle);
279 if (handle_.get().needs_connection)
535 ScopedPlatformHandle handle_; member in class:mojo::edk::__anon25145::ChannelPosix
    [all...]
channel_win.cc 81 handle_(std::move(handle)),
83 CHECK(handle_.is_valid());
85 wait_for_connect_ = handle_.get().needs_connection;
154 handle_.get().handle, this);
157 BOOL ok = ConnectNamedPipe(handle_.get().handle,
197 // |handle_| should be valid at this point.
198 CHECK(handle_.is_valid());
199 CancelIo(handle_.get().handle);
201 ignore_result(handle_.release());
202 handle_.reset()
326 ScopedPlatformHandle handle_; member in class:mojo::edk::__anon25146::ChannelWin
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/tests/
struct_with_traits_impl.h 102 ScopedHandle& get_mutable_handle() { return handle_; }
105 ScopedHandle handle_; member in class:mojo::test::EnumWithTraitsImpl::PassByValueStructWithTraitsImpl
  /external/libmojo/mojo/public/cpp/system/
handle.h 78 explicit ScopedHandleBase(HandleType handle) : handle_(handle) {}
83 : handle_(other.release()) {}
86 ScopedHandleBase(ScopedHandleBase&& other) : handle_(other.release()) {}
90 handle_ = other.release();
95 const HandleType& get() const { return handle_; }
96 const HandleType* operator->() const { return &handle_; }
108 void swap(ScopedHandleBase& other) { handle_.swap(other.handle_); }
112 rv.swap(handle_);
118 handle_ = handle
133 HandleType handle_; member in class:mojo::ScopedHandleBase
    [all...]
  /external/v8/src/crankshaft/
unique.h 54 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/v8/src/interpreter/
constant-array-builder.h 115 handle_ = handle;
124 Handle<Object> handle_; member in union:v8::internal::interpreter::BASE_EMBEDDED::Entry::__anon41064
  /external/webrtc/webrtc/base/
fileutils.h 82 HANDLE handle_; member in class:rtc::DirectoryIterator
  /external/webrtc/webrtc/modules/audio_processing/utility/
delay_estimator_unittest.cc 51 void* handle_; member in class:__anon44202::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_)); // Zero quality
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
test_allocator.h 356 std::shared_ptr<BuffT> handle_; member in class:limited_allocator
368 limited_allocator() : handle_(new BuffT) {}
370 limited_allocator(limited_allocator const& other) : handle_(other.handle_) {}
374 : handle_(other.handle_) {}
380 pointer allocate(size_type n) { return handle_->template allocate<T>(n); }
381 void deallocate(pointer p, size_type n) { handle_->deallocate(p, n); }
384 BuffT* getHandle() const { return handle_.get(); }
  /system/extras/libfec/include/fec/
io.h 124 io() : handle_(nullptr, fec_close) {}
127 int roots = FEC_DEFAULT_ROOTS) : handle_(nullptr, fec_close) {
132 return !!handle_;
141 handle_.reset(fh);
147 return !fec_close(handle_.release());
151 return !fec_seek(handle_.get(), offset, whence);
155 return fec_read(handle_.get(), buf, count);
159 return fec_pread(handle_.get(), buf, count, offset);
163 return !fec_get_status(handle_.get(), &status);
167 return !fec_verity_get_metadata(handle_.get(), &data)
189 handle handle_; member in class:fec::io
    [all...]
  /external/tensorflow/tensorflow/core/platform/hadoop/
hadoop_file_system.cc 121 status_ = TryLoadAndBind(path.c_str(), &handle_);
125 status_ = TryLoadAndBind(kLibHdfsDso, &handle_);
130 void* handle_ = nullptr; member in class:tensorflow::LibHDFS

Completed in 479 milliseconds

1 23 4 5