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

1 2 3 4 5

  /system/tpm/trunks/
scoped_key_handle.h 63 TPM_HANDLE handle_; member in class:trunks::ScopedKeyHandle
  /external/libmojo/ipc/
ipc_mojo_handle_attachment.h 34 mojo::ScopedHandle handle_; member in class:IPC::internal::MojoHandleAttachment
  /external/tensorflow/tensorflow/compiler/xla/client/
computation.h 51 const ComputationHandle& handle() const { return handle_; }
70 ComputationHandle handle_; // Handle that is wrapped by this class. member in class:xla::Computation
global_data.h 37 const GlobalDataHandle& handle() const { return handle_; }
40 GlobalDataHandle handle_; // Handle being wrapped. member in class:xla::GlobalData
41 ServiceInterface* parent_; // Service used to unregister handle_.
  /external/webrtc/webrtc/common_audio/vad/
vad.cc 22 : 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::__anon43970::final
    [all...]
  /libnativehelper/include/nativehelper/
JniInvocation.h 61 void* handle_; member in class:JniInvocation
  /system/core/libziparchive/include/ziparchive/
zip_archive_stream_entry.h 37 ZipArchiveStreamEntry(ZipArchiveHandle handle) : handle_(handle) {}
41 ZipArchiveHandle handle_; member in class:ZipArchiveStreamEntry
  /art/runtime/
zip_archive.h 73 : handle_(handle), zip_entry_(zip_entry), entry_name_(entry_name) {}
75 ZipArchiveHandle handle_; member in class:art::ZipEntry
94 explicit ZipArchive(ZipArchiveHandle handle) : handle_(handle) {}
98 ZipArchiveHandle handle_; member in class:art::ZipArchive
  /device/generic/goldfish/keymaster/trusty/
trusty_keymaster_ipc.cpp 35 static int handle_ = 0; variable
39 handle_ = qemu_pipe_open(KEYMASTER_SERVICE_NAME);
40 if (handle_ < 0) {
41 handle_ = 0;
61 ssize_t rc = WriteFully(handle_, &pipe_command_length, sizeof(pipe_command_length));
68 rc = WriteFully(handle_, msg, pipe_command_length);
82 rc = ReadFully(handle_, &pipe_command_length, sizeof(pipe_command_length));
89 rc = ReadFully(handle_, out, pipe_command_length);
101 if (handle_ != 0) {
102 close(handle_);
    [all...]
  /device/google/cuttlefish_common/guest/commands/usbforward/
transport_request.h 60 std::shared_ptr<libusb_device_handle> handle_; member in class:usb_forward::final
usb_server.h 82 std::shared_ptr<libusb_device_handle> handle_; member in class:usb_forward::final
  /external/libmojo/mojo/edk/js/
drain_data.h 40 // Use ReadData() to read whatever is availble now on handle_ and save
52 ScopedDataPipeConsumerHandle handle_; member in class:mojo::edk::js::DrainData
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
function_ops.cc 61 : AsyncOpKernel(ctx), handle_(-1) {}
72 ctx, lib->Instantiate(kGradientOp, AttrSlice(&def().attr()), &handle_),
86 opts, handle_, args, rets, [ctx, done, rets](const Status& status) {
104 FunctionLibraryRuntime::Handle handle_; member in class:tensorflow::__anon38746::SymbolicGradientOp
  /external/tensorflow/tensorflow/contrib/lite/
nnapi_delegate.h 40 ANeuralNetworksMemory* memory() const { return handle_; }
41 bool valid() const override { return handle_ != nullptr; }
44 mutable ANeuralNetworksMemory* handle_ = nullptr; member in class:tflite::NNAPIAllocation
  /system/bt/service/common/android/bluetooth/
bluetooth_gatt_included_service.h 38 : handle_(service.handle()),
57 uint16_t handle() const { return handle_; }
62 uint16_t handle_; member in class:android::bluetooth::BluetoothGattIncludedService
  /system/bt/service/common/bluetooth/
descriptor.h 28 : handle_(handle), uuid_(uuid), permissions_(permissions){};
36 uint16_t handle() const { return handle_; }
41 uint16_t handle_; member in class:bluetooth::Descriptor
  /system/core/trusty/gatekeeper/
trusty_gatekeeper_ipc.c 33 static int handle_ = 0; variable
41 handle_ = rc;
47 if (handle_ == 0) {
57 ssize_t rc = write(handle_, msg, msg_size);
66 rc = read(handle_, out, *out_size);
90 if (handle_ != 0) {
91 tipc_close(handle_);
  /test/vts/drivers/hal/common/include/component_loader/
DllLoader.h 60 void* handle_; member in class:android::vts::DllLoader
  /external/libchrome/base/
sync_socket.h 47 explicit SyncSocket(Handle handle) : handle_(handle) {}
94 Handle handle() const { return handle_; }
97 Handle handle_; member in class:base::SyncSocket
  /external/libmojo/mojo/edk/embedder/
scoped_platform_handle.h 20 explicit ScopedPlatformHandle(PlatformHandle handle) : handle_(handle) {}
21 ~ScopedPlatformHandle() { handle_.CloseIfNecessary(); }
25 : handle_(other.release()) {}
29 handle_ = other.release();
33 const PlatformHandle& get() const { return handle_; }
36 PlatformHandle temp = handle_;
37 handle_ = other.handle_;
38 other.handle_ = temp;
42 PlatformHandle rv = handle_;
55 PlatformHandle handle_; member in class:mojo::edk::ScopedPlatformHandle
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/
associated_interface_ptr_info.h 26 : handle_(std::move(other.handle_)), version_(other.version_) {
32 : handle_(std::move(handle)), version_(version) {}
38 handle_ = std::move(other.handle_);
46 bool is_valid() const { return handle_.is_valid(); }
49 return std::move(handle_);
51 const ScopedInterfaceEndpointHandle& handle() const { return handle_; }
53 handle_ = std::move(handle);
69 ScopedInterfaceEndpointHandle handle_; member in class:mojo::AssociatedInterfacePtrInfo
    [all...]
associated_interface_request.h 29 handle_ = std::move(other.handle_);
33 handle_ = std::move(other.handle_);
41 handle_.reset();
47 bool is_pending() const { return handle_.is_valid(); }
50 handle_ = std::move(handle);
54 return std::move(handle_);
57 const ScopedInterfaceEndpointHandle& handle() const { return handle_; }
69 handle_.ResetWithReason(custom_reason, description)
73 ScopedInterfaceEndpointHandle handle_; member in class:mojo::AssociatedInterfaceRequest
    [all...]
interface_ptr_info.h 24 : handle_(std::move(handle)), version_(version) {}
27 : handle_(std::move(other.handle_)), version_(other.version_) {
35 handle_ = std::move(other.handle_);
43 bool is_valid() const { return handle_.is_valid(); }
45 ScopedMessagePipeHandle PassHandle() { return std::move(handle_); }
46 const ScopedMessagePipeHandle& handle() const { return handle_; }
48 handle_ = std::move(handle);
55 ScopedMessagePipeHandle handle_; member in class:mojo::InterfacePtrInfo
    [all...]
interface_request.h 51 handle_ = std::move(other.handle_);
54 handle_ = std::move(other.handle_);
61 handle_.reset();
68 void Bind(ScopedMessagePipeHandle handle) { handle_ = std::move(handle); }
71 bool is_pending() const { return handle_.is_valid(); }
74 ScopedMessagePipeHandle PassMessagePipe() { return std::move(handle_); }
86 if (!handle_.is_valid())
93 handle_.get(), message.TakeMojoMessage(), MOJO_WRITE_MESSAGE_FLAG_NONE)
100 ScopedMessagePipeHandle handle_; member in class:mojo::InterfaceRequest
    [all...]
sync_handle_watcher.h 38 // Registers |handle_| with SyncHandleRegistry, so that when others perform
39 // sync handle watching on the same thread, |handle_| will be watched
43 // Waits on |handle_| plus all handles registered with SyncHandleRegistry and
55 const Handle handle_; member in class:mojo::SyncHandleWatcher
59 // Whether |handle_| has been registered with SyncHandleRegistry.
61 // If non-zero, |handle_| should be registered with SyncHandleRegistry.

Completed in 741 milliseconds

1 2 3 4 5