Home
last modified time | relevance | path

Searched refs:out_handle (Results 1 – 25 of 37) 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/trace-cmd/lib/trace-cmd/
Dtrace-input.c4559 struct tracecmd_output *out_handle, unsigned long long *size) in read_copy_size8() argument
4565 if (do_write_check(out_handle, size, 8)) in read_copy_size8()
4572 static int read_copy_size4(struct tracecmd_input *in_handle, struct tracecmd_output *out_handle, in read_copy_size4() argument
4579 if (do_write_check(out_handle, size, 4)) in read_copy_size4()
4588 struct tracecmd_output *out_handle) in read_copy_data() argument
4598 if (do_write_check(out_handle, buf, size)) in read_copy_data()
4617 struct tracecmd_output *out_handle) in copy_header_files() argument
4619 bool compress = out_check_compression(out_handle); in copy_header_files()
4625 !check_out_state(out_handle, TRACECMD_FILE_HEADERS)) in copy_header_files()
4632 offset = out_write_section_header(out_handle, TRACECMD_OPTION_HEADER_INFO, in copy_header_files()
[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.cc176 const TF_Buffer* callable_options, int64_t* out_handle, in MakeCallableHelper() argument
193 *out_handle = handle; in MakeCallableHelper()
199 int64_t* out_handle, TF_Status* status) { in TF_DeprecatedSessionMakeCallable() argument
200 MakeCallableHelper(session->session, callable_options, out_handle, status); in TF_DeprecatedSessionMakeCallable()
204 int64_t* out_handle, TF_Status* status) { in TF_SessionMakeCallable() argument
205 MakeCallableHelper(session->session, callable_options, out_handle, status); in TF_SessionMakeCallable()
319 const char** out_handle) { in TF_PRunSetup_wrapper() argument
325 out_handle, out_status); in TF_PRunSetup_wrapper()
515 const char** out_handle, in TF_SessionPRunSetup_wrapper() argument
521 out_handle, out_status); in TF_SessionPRunSetup_wrapper()
Dsession_ref.h68 CallableHandle* out_handle) override;
Dtf_session_wrapper.cc161 int64_t out_handle; in PYBIND11_MODULE() local
168 &out_handle, status.get()); in PYBIND11_MODULE()
173 return out_handle; in PYBIND11_MODULE()
529 const char* out_handle; in PYBIND11_MODULE() local
531 session, inputs, outputs, targets, &out_handle, status.get()); in PYBIND11_MODULE()
533 return out_handle; in PYBIND11_MODULE()
/external/cronet/base/process/
Dprocess_win.cc112 ProcessHandle out_handle; in Duplicate() local
116 &out_handle, in Duplicate()
122 return Process(out_handle); in Duplicate()
/external/tensorflow/tensorflow/tsl/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.cc106 Status GrpcSession::Handle(string* out_handle) { in Handle() argument
111 *out_handle = handle_; in Handle()
428 CallableHandle* out_handle) { in MakeCallable() argument
437 *out_handle = resp.handle(); in MakeCallable()
/external/trace-cmd/lib/trace-cmd/include/private/
Dtrace-cmd-private.h198 struct tracecmd_output *out_handle,
202 struct tracecmd_output *out_handle);
204 struct tracecmd_output *out_handle);
206 struct tracecmd_output *out_handle);
/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/minigbm/cros_gralloc/
Dcros_gralloc_driver.h28 native_handle_t **out_handle);
Dcros_gralloc_driver.cc251 native_handle_t **out_handle) in allocate() argument
355 *out_handle = hnd; in allocate()
/external/cronet/components/nacl/browser/
Dnacl_process_host.cc981 IPC::PlatformFileForTransit out_handle; in FileResolved() local
984 out_handle = IPC::TakePlatformFileForTransit(std::move(file)); in FileResolved()
986 out_handle = IPC::InvalidPlatformFileForTransit(); in FileResolved()
991 out_handle, in FileResolved()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_bufmgr.h393 uint32_t *out_handle);
/external/minigbm/cros_gralloc/gralloc0/
Dgralloc0.cc71 buffer_handle_t *out_handle, int *out_stride) in gralloc0_alloc() argument
99 *out_handle = handle; in gralloc0_alloc()
/external/mesa3d/src/gallium/drivers/iris/
Diris_bufmgr.h411 uint32_t *out_handle);
/external/tensorflow/tensorflow/core/public/
Dsession.h241 CallableHandle* out_handle) { in MakeCallable() argument
/external/tensorflow/tensorflow/cc/saved_model/
Dloader.cc400 CallableHandle* out_handle) override { in MakeCallable() argument
401 return wrapped_->MakeCallable(callable_options, out_handle); in MakeCallable()
/external/libchrome/mojo/public/cpp/bindings/lib/
Dmessage.cc79 ScopedMessageHandle* out_handle, in CreateSerializedMessageObject() argument
112 *out_handle = std::move(handle); in CreateSerializedMessageObject()

12