Home
last modified time | relevance | path

Searched refs:local_handle (Results 1 – 16 of 16) sorted by relevance

/external/tensorflow/tensorflow/core/common_runtime/
Dfunction.cc437 Status GetOrCreateItem(LocalHandle local_handle, Item** item);
571 LocalHandle local_handle = parent_->GetHandleOnDevice(device_name_, h); in GetFunctionBody() local
572 if (local_handle == kInvalidLocalHandle) { in GetFunctionBody()
579 auto iter = items_->find(local_handle); in GetFunctionBody()
589 LocalHandle local_handle = parent_->GetHandleOnDevice(device_name_, h); in GetRetTypes() local
590 if (local_handle == kInvalidLocalHandle) { in GetRetTypes()
799 LocalHandle local_handle; in Instantiate() local
804 local_handle = parent_->GetHandleOnDevice(device_name_, *handle); in Instantiate()
805 ++(*items_)[local_handle]->instantiation_counter; in Instantiate()
816 local_handle = next_handle_++; in Instantiate()
[all …]
Dprocess_function_library_runtime.h130 FunctionLibraryRuntime::LocalHandle local_handle);
300 FunctionLibraryRuntime::Handle local_handle; member
330 FunctionLibraryRuntime::LocalHandle local_handle)
406 FunctionLibraryRuntime::LocalHandle local_handle, in FunctionData() argument
409 local_handle_(local_handle), in FunctionData()
415 FunctionLibraryRuntime::LocalHandle local_handle() { in local_handle() function
Dprocess_function_library_runtime.cc253 FunctionLibraryRuntime::LocalHandle local_handle) { in AddHandle() argument
255 return AddHandleLocked(function_key, device_name, local_handle); in AddHandle()
260 FunctionLibraryRuntime::LocalHandle local_handle) { in AddHandleLocked() argument
263 absl::make_unique<FunctionData>(device_name, local_handle, function_key); in AddHandleLocked()
322 return function_data->local_handle(); in GetHandleOnDevice()
1481 FunctionLibraryRuntime::LocalHandle local_handle; in RunInternal() local
1491 local_handle = function_data->local_handle(); in RunInternal()
1559 cleanup_item->local_handle = local_handle; in RunInternal()
1561 parent_->Run(opts, local_handle, args, rets, std::move(done)); in RunInternal()
1715 parent_->CleanUp(item->step_id, item->local_handle, in CleanUp()
/external/arm-trusted-firmware/plat/intel/soc/common/
Dsocfpga_storage.c106 uintptr_t local_handle; in check_dev() local
110 result = io_open(boot_dev_handle, spec, &local_handle); in check_dev()
112 io_close(local_handle); in check_dev()
/external/libchrome/mojo/core/
Dhandle_table.cc124 d.local_handle = handles[i]; in BeginTransit()
137 auto it = handles_.find(dispatcher.local_handle); in CompleteTransitAndClose()
147 auto it = handles_.find(dispatcher.local_handle); in CancelTransit()
Ddispatcher.h55 MojoHandle local_handle; member
Dcore.cc1227 MojoHandle local_handle = CreatePartialMessagePipe(&remote_peer_port); in AttachMessagePipeToInvitation() local
1228 if (local_handle == MOJO_HANDLE_INVALID) in AttachMessagePipeToInvitation()
1235 Close(local_handle); in AttachMessagePipeToInvitation()
1239 *message_pipe_handle = local_handle; in AttachMessagePipeToInvitation()
Duser_message_impl.cc332 Core::Get()->Close(dispatcher.local_handle); in ~UserMessageImpl()
/external/arm-trusted-firmware/plat/imx/imx7/common/
Dimx7_io_storage.c197 uintptr_t local_handle; in open_mmc() local
201 result = io_open(mmc_dev_handle, spec, &local_handle); in open_mmc()
203 io_close(local_handle); in open_mmc()
/external/arm-trusted-firmware/plat/hisilicon/hikey/
Dhikey_io_storage.c230 uintptr_t local_handle; in check_emmc() local
234 result = io_open(emmc_dev_handle, spec, &local_handle); in check_emmc()
236 io_close(local_handle); in check_emmc()
/external/arm-trusted-firmware/plat/hisilicon/hikey960/
Dhikey960_io_storage.c216 uintptr_t local_handle; in check_ufs() local
220 result = io_open(ufs_dev_handle, spec, &local_handle); in check_ufs()
222 io_close(local_handle); in check_ufs()
/external/libchrome/mojo/public/cpp/platform/
Dplatform_channel.cc153 PlatformHandle local_handle; in PlatformChannel() local
155 CreateChannel(&local_handle, &remote_handle); in PlatformChannel()
156 local_endpoint_ = PlatformChannelEndpoint(std::move(local_handle)); in PlatformChannel()
/external/tensorflow/tensorflow/core/distributed_runtime/
Dcluster_function_library_runtime_test.cc67 FunctionLibraryRuntime::LocalHandle* local_handle, in Instantiate() argument
70 local_handle, done); in Instantiate()
/external/tensorflow/tensorflow/core/distributed_runtime/eager/
Dremote_copy_node.cc323 auto* local_handle = op->add_handles()->mutable_local_handle(); in SerializePackedHandle() local
324 local_handle->set_device(h->op_device() ? h->op_device()->name() in SerializePackedHandle()
326 tensor.AsProtoTensorContent(local_handle->mutable_tensor()); in SerializePackedHandle()
Deager_service_impl.cc714 if (!ParseTensorProtoToTensor(item.local_handle().tensor(), &tensor)) { in SendPackedHandle()
717 item.local_handle().tensor().DebugString()); in SendPackedHandle()
721 item.local_handle().device().c_str(), &op_device)); in SendPackedHandle()
/external/tensorflow/tensorflow/core/protobuf/
Deager_service.proto260 LocalTensorHandle local_handle = 1; field