Home
last modified time | relevance | path

Searched refs:out_handle (Results 1 – 25 of 31) sorted by relevance

12

/external/libchrome/mojo/public/cpp/platform/
Dplatform_handle.cc133 MojoPlatformHandle* out_handle) { in ToMojoPlatformHandle() argument
134 DCHECK(out_handle); in ToMojoPlatformHandle()
135 out_handle->struct_size = sizeof(MojoPlatformHandle); in ToMojoPlatformHandle()
137 out_handle->type = MOJO_PLATFORM_HANDLE_TYPE_INVALID; in ToMojoPlatformHandle()
138 out_handle->value = 0; in ToMojoPlatformHandle()
144 out_handle->type = MOJO_PLATFORM_HANDLE_TYPE_WINDOWS_HANDLE; in ToMojoPlatformHandle()
145 out_handle->value = in ToMojoPlatformHandle()
150 out_handle->type = MOJO_PLATFORM_HANDLE_TYPE_FUCHSIA_HANDLE; in ToMojoPlatformHandle()
151 out_handle->value = handle.TakeHandle().release(); in ToMojoPlatformHandle()
156 out_handle->type = MOJO_PLATFORM_HANDLE_TYPE_MACH_PORT; in ToMojoPlatformHandle()
[all …]
/external/mesa3d/src/gallium/auxiliary/renderonly/
Drenderonly.c70 struct winsys_handle *out_handle) in renderonly_create_kms_dumb_buffer_for_resource() argument
96 if (!out_handle) in renderonly_create_kms_dumb_buffer_for_resource()
100 memset(out_handle, 0, sizeof(*out_handle)); in renderonly_create_kms_dumb_buffer_for_resource()
101 out_handle->type = WINSYS_HANDLE_TYPE_FD; in renderonly_create_kms_dumb_buffer_for_resource()
102 out_handle->stride = create_dumb.pitch; in renderonly_create_kms_dumb_buffer_for_resource()
105 (int *)&out_handle->handle); in renderonly_create_kms_dumb_buffer_for_resource()
126 struct winsys_handle *out_handle) in renderonly_create_gpu_import_for_resource() argument
Drenderonly.h61 struct winsys_handle *out_handle);
72 struct winsys_handle *out_handle) in renderonly_scanout_for_resource() argument
74 return ro->create_for_resource(rsc, ro, out_handle); in renderonly_scanout_for_resource()
101 struct winsys_handle *out_handle);
109 struct winsys_handle *out_handle);
/external/tensorflow/tensorflow/python/client/
Dtf_session_helper.h68 int64_t* out_handle, TF_Status* status);
71 int64_t* out_handle, TF_Status* status);
100 const char** out_handle);
169 const char** out_handle, TF_Status* status);
Dtf_session_helper.cc175 const TF_Buffer* callable_options, int64_t* out_handle, in MakeCallableHelper() argument
192 *out_handle = handle; in MakeCallableHelper()
198 int64_t* out_handle, TF_Status* status) { in TF_DeprecatedSessionMakeCallable() argument
199 MakeCallableHelper(session->session, callable_options, out_handle, status); in TF_DeprecatedSessionMakeCallable()
203 int64_t* out_handle, TF_Status* status) { in TF_SessionMakeCallable() argument
204 MakeCallableHelper(session->session, callable_options, out_handle, status); in TF_SessionMakeCallable()
318 const char** out_handle) { in TF_PRunSetup_wrapper() argument
324 out_handle, out_status); in TF_PRunSetup_wrapper()
514 const char** out_handle, in TF_SessionPRunSetup_wrapper() argument
520 out_handle, out_status); in TF_SessionPRunSetup_wrapper()
Dsession_ref.h68 CallableHandle* out_handle) override;
Dtf_session_wrapper.cc154 int64_t out_handle; in PYBIND11_MODULE() local
161 &out_handle, status.get()); in PYBIND11_MODULE()
166 return out_handle; in PYBIND11_MODULE()
522 const char* out_handle; in PYBIND11_MODULE() local
524 session, inputs, outputs, targets, &out_handle, status.get()); in PYBIND11_MODULE()
526 return out_handle; in PYBIND11_MODULE()
Dsession_ref.cc465 CallableHandle* out_handle) { in MakeCallable() argument
466 LOG_AND_RUN_OPERATION(MakeCallable, callable_options, out_handle); in MakeCallable()
/external/tensorflow/tensorflow/core/platform/windows/
Dsubprocess.cc75 HANDLE out_handle = args->iohandle; in OutputThreadFunction() local
80 bool wait_result = WaitForSingleObject(out_handle, INFINITE); in OutputThreadFunction()
86 while (ReadFile(out_handle, buf, sizeof(buf), &bytes_read, nullptr) && in OutputThreadFunction()
90 CloseHandle(out_handle); in OutputThreadFunction()
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_session.h103 CallableHandle* out_handle) override;
130 Status Handle(string* out_handle) TF_LOCKS_EXCLUDED(mu_);
Dgrpc_session.cc105 Status GrpcSession::Handle(string* out_handle) { in Handle() argument
110 *out_handle = handle_; in Handle()
427 CallableHandle* out_handle) { in MakeCallable() argument
436 *out_handle = resp.handle(); in MakeCallable()
/external/tensorflow/tensorflow/cc/client/
Dclient_session.cc158 CallableHandle* out_handle) { in MakeCallable() argument
160 return impl()->session_->MakeCallable(callable_options, out_handle); in MakeCallable()
Dclient_session.h112 CallableHandle* out_handle);
/external/clang/tools/scan-build-py/tests/functional/cases/
Dtest_from_cdb.py24 with open(target_file, 'w') as out_handle:
27 out_handle.write(temp.substitute(path=path))
/external/llvm-project/clang/tools/scan-build-py/tests/functional/cases/
Dtest_from_cdb.py23 with open(target_file, 'w') as out_handle:
26 out_handle.write(temp.substitute(path=path))
/external/minigbm/cros_gralloc/
Dcros_gralloc_driver.h25 buffer_handle_t *out_handle);
Dcros_gralloc_driver.cc157 buffer_handle_t *out_handle) in allocate() argument
262 *out_handle = reinterpret_cast<buffer_handle_t>(hnd); in allocate()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_bufmgr.h393 uint32_t *out_handle);
Dbrw_bufmgr.c1630 uint32_t *out_handle) in brw_bo_export_gem_handle_for_device() argument
1643 *out_handle = brw_bo_export_gem_handle(bo); in brw_bo_export_gem_handle_for_device()
1687 *out_handle = export->gem_handle; in brw_bo_export_gem_handle_for_device()
/external/mesa3d/src/gallium/drivers/iris/
Diris_bufmgr.h411 uint32_t *out_handle);
Diris_bufmgr.c1545 uint32_t *out_handle) in iris_bo_export_gem_handle_for_device() argument
1557 *out_handle = iris_bo_export_gem_handle(bo); in iris_bo_export_gem_handle_for_device()
1601 *out_handle = export->gem_handle; in iris_bo_export_gem_handle_for_device()
/external/tensorflow/tensorflow/cc/saved_model/
Dloader.cc372 CallableHandle* out_handle) override { in MakeCallable() argument
373 return wrapped_->MakeCallable(callable_options, out_handle); in MakeCallable()
/external/tensorflow/tensorflow/core/public/
Dsession.h241 CallableHandle* out_handle) { in MakeCallable() argument
/external/libchrome/mojo/public/cpp/bindings/lib/
Dmessage.cc79 ScopedMessageHandle* out_handle, in CreateSerializedMessageObject() argument
112 *out_handle = std::move(handle); in CreateSerializedMessageObject()
/external/tpm2-tss/src/tss2-esys/
Desys_mu.c806 TPM2_HANDLE out_handle; in iesys_MU_IESYS_RESOURCE_Unmarshal() local
808 (dst == NULL)? &out_handle : &dst->handle); in iesys_MU_IESYS_RESOURCE_Unmarshal()

12