Home
last modified time | relevance | path

Searched refs:write_info (Results 1 – 21 of 21) sorted by relevance

/third_party/libuv/test/
Dtest-ipc-heavy-traffic-deadlock-bug.c39 struct write_info { struct
50 struct write_info* write_info = in write_cb() local
51 container_of(req, struct write_info, write_req); in write_cb()
54 free(write_info); in write_cb()
63 struct write_info* write_info; in do_write() local
68 write_info = malloc(sizeof *write_info); in do_write()
69 ASSERT_NOT_NULL(write_info); in do_write()
72 memset(&write_info->buffers[i], BUFFER_CONTENT, BUFFER_SIZE); in do_write()
73 bufs[i] = uv_buf_init(write_info->buffers[i], BUFFER_SIZE); in do_write()
77 &write_info->write_req, handle, bufs, BUFFERS_PER_WRITE, write_cb); in do_write()
/third_party/gn/src/gn/
Dcommand_gen.cc72 void BackgroundDoWrite(TargetWriteInfo* write_info, const Target* target) { in BackgroundDoWrite() argument
77 std::lock_guard<std::mutex> lock(write_info->lock); in BackgroundDoWrite()
78 write_info->rules[target->toolchain()].emplace_back(target, in BackgroundDoWrite()
84 void ItemResolvedAndGeneratedCallback(TargetWriteInfo* write_info, in ItemResolvedAndGeneratedCallback() argument
90 [write_info, target]() { BackgroundDoWrite(write_info, target); }); in ItemResolvedAndGeneratedCallback()
621 TargetWriteInfo write_info; local
623 [&write_info](const BuilderRecord* record) { in __anond4db3f6d0302()
624 ItemResolvedAndGeneratedCallback(&write_info, record); in __anond4db3f6d0302()
633 for (auto& cur_toolchain : write_info.rules) {
644 write_info.rules, &err)) {
[all …]
/third_party/boost/boost/property_tree/
Dinfo_parser.hpp104 void write_info(std::basic_ostream<Ch> &stream, in write_info() function
121 void write_info(const std::string &filename, in write_info() function
146 using info_parser::write_info;
/third_party/grpc/src/core/ext/filters/client_channel/resolver/dns/c_ares/
Dgrpc_ares_ev_driver_windows.cc239 if (SendWriteBuf(nullptr, &winsocket_->write_info.overlapped, in ContinueRegisterForOnWriteableLocked()
448 &winsocket_->write_info.overlapped, in OnTcpConnectLocked()
552 &winsocket_->write_info.overlapped) == 0) { in ConnectTCP()
634 if (winsocket_->write_info.wsa_error != 0) { in OnIocpWriteableLocked()
635 error = GRPC_WSA_ERROR(winsocket_->write_info.wsa_error, in OnIocpWriteableLocked()
640 GetName(), winsocket_->write_info.wsa_error, in OnIocpWriteableLocked()
648 write_buf_, 0, winsocket_->write_info.bytes_transferred); in OnIocpWriteableLocked()
650 GetName(), winsocket_->write_info.bytes_transferred); in OnIocpWriteableLocked()
/third_party/grpc/src/core/lib/iomgr/
Diocp_windows.cc85 if (overlapped == &socket->write_info.overlapped) { in grpc_iocp_work()
86 info = &socket->write_info; in grpc_iocp_work()
Dsocket_windows.cc103 winsocket->write_info.closure == NULL && in check_destroyable()
135 socket_notify_on_iocp(socket, closure, &socket->write_info); in grpc_socket_notify_on_write()
Dtcp_client_windows.cc102 WSAGetOverlappedResult(socket->socket, &socket->write_info.overlapped, in on_connect()
184 info = &socket->write_info; in tcp_connect()
Dsocket_windows.h79 grpc_winsocket_callback_info write_info; member
Dtcp_windows.cc319 grpc_winsocket_callback_info* info = &handle->write_info; in on_write()
350 grpc_winsocket_callback_info* info = &socket->write_info; in win_write()
414 memset(&socket->write_info.overlapped, 0, sizeof(OVERLAPPED)); in win_write()
416 &bytes_sent, 0, &socket->write_info.overlapped, NULL); in win_write()
/third_party/boost/libs/property_tree/test/
Dsandbox.cpp21 write_info(std::cout, pt); in main()
Dtest_info_parser.cpp151 boost::property_tree::write_info(filename, pt); in operator ()()
/third_party/f2fs-tools/fsck/
Dquotaio.c203 if (h->qh_ops->write_info && h->qh_ops->write_info(h) < 0) in quota_file_close()
Dquotaio.h174 int (*write_info) (struct quota_handle *h); member
Dquotaio_v2.c38 .write_info = v2_write_info,
/third_party/gstreamer/gstplugins_good/gst/interleave/
Dinterleave.c1183 GstMapInfo write_info; in gst_interleave_collected() local
1209 gst_buffer_map (outbuf, &write_info, GST_MAP_WRITE); in gst_interleave_collected()
1210 memset (write_info.data, 0, size * self->channels); in gst_interleave_collected()
1239 outdata = write_info.data + width * channel; in gst_interleave_collected()
1251 gst_buffer_unmap (outbuf, &write_info); in gst_interleave_collected()
1325 gst_buffer_unmap (outbuf, &write_info); in gst_interleave_collected()
Ddeinterleave.c899 GstMapInfo write_info; in gst_deinterleave_process() local
904 gst_buffer_map (buffers_out[i], &write_info, GST_MAP_WRITE); in gst_deinterleave_process()
905 out = (guint8 *) write_info.data; in gst_deinterleave_process()
907 gst_buffer_unmap (buffers_out[i], &write_info); in gst_deinterleave_process()
/third_party/e2fsprogs/lib/support/
Dquotaio.c384 if (h->qh_ops->write_info && h->qh_ops->write_info(h) < 0) in quota_file_close()
Dquotaio.h170 int (*write_info) (struct quota_handle *h); member
Dquotaio_v2.c37 .write_info = v2_write_info,
/third_party/boost/libs/gil/test/extension/io/
Dpng_read_test.cpp63 image_write_info< png_tag > write_info; in test_file() local
64 write_info._file_gamma = backend._info._file_gamma; in test_file()
68 , write_info in test_file()
/third_party/boost/libs/gil/test/extension/io/png/
Dpng_read_test.cpp51 gil::image_write_info<gil::png_tag> write_info; in test_file() local
52 write_info._file_gamma = backend._info._file_gamma; in test_file()
54 gil::write_view(png_out + filename, view(src), write_info); in test_file()