Home
last modified time | relevance | path

Searched refs:overlapped (Results 1 – 24 of 24) sorted by relevance

/external/deqp/execserver/
DxsWin32TestProcess.cpp133 OVERLAPPED overlapped; in run() local
136 deMemset(&overlapped, 0, sizeof(overlapped)); in run()
137 overlapped.hEvent = ioEvent.getHandle(); in run()
145 if (!WriteFile(m_dst, &m_caseList[curPos], (DWORD)numToWrite, NULL, &overlapped)) in run()
159 if (!GetOverlappedResult(m_dst, &overlapped, &numBytesWritten, FALSE)) in run()
228 OVERLAPPED overlapped; in run() local
232 deMemset(&overlapped, 0, sizeof(overlapped)); in run()
233 overlapped.hEvent = ioEvent.getHandle(); in run()
240 overlapped.Offset = (DWORD)(offset & 0xffffffffu); in run()
241 overlapped.OffsetHigh = (DWORD)(offset >> 32); in run()
[all …]
/external/libevent/
Devent_iocp.c58 EVUTIL_UPCAST(o, struct event_overlapped, overlapped); in handle_entry()
73 OVERLAPPED *overlapped=NULL; in loop() local
77 &overlapped, ms); in loop()
88 if (key != NOTIFICATION_KEY && overlapped) in loop()
89 handle_entry(overlapped, key, bytes, ok); in loop()
90 else if (!overlapped) in loop()
281 r = PostQueuedCompletionStatus(port->port, n, key, &o->overlapped); in event_iocp_activate_overlapped()
Dlistener.c449 struct event_overlapped overlapped; member
503 event_overlapped_init(&res->overlapped, accepted_socket_cb); in new_accepting_socket()
562 as->buflen/2, as->buflen/2, &pending, &as->overlapped.overlapped)) in start_accepting()
565 accepted_socket_cb(&as->overlapped, 1, 0, 1); in start_accepting()
663 EVUTIL_UPCAST(o, struct accepting_socket, overlapped); in accepted_socket_cb()
686 ok = WSAGetOverlappedResult(as->s, &o->overlapped, in accepted_socket_cb()
Dbuffer_iocp.c225 &ol->overlapped, NULL)) { in evbuffer_launch_write()
291 &ol->overlapped, NULL)) { in evbuffer_launch_read()
Diocp-internal.h52 OVERLAPPED overlapped; member
Dbufferevent_async.c402 WSAGetOverlappedResult(fd, &eo->overlapped, &bytes, FALSE, &flags); in bev_async_set_wsa_error()
643 &bev_async->connect_overlapped.overlapped); in bufferevent_async_connect()
Dwhatsnew-2.0.txt309 to send their data via Windows overlapped IO and get their notifications
DChangeLog282 o Make overlapped reads result in evbuffer callbacks getting invoked (6acfbdd)
/external/wpa_supplicant_8/src/l2_packet/
Dl2_packet_ndis.c98 OVERLAPPED overlapped; in l2_packet_send() local
108 os_memset(&overlapped, 0, sizeof(overlapped)); in l2_packet_send()
109 o = &overlapped; in l2_packet_send()
137 driver_ndis_get_ndisuio_handle(), &overlapped, in l2_packet_send()
/external/lzma/CPP/Windows/
DFileIO.h73 LPVOID outBuffer, DWORD outSize, LPDWORD bytesReturned, LPOVERLAPPED overlapped = NULL) const
76 outBuffer, outSize, bytesReturned, overlapped));
/external/webrtc/webrtc/test/channel_transport/
Dudp_socket2_manager_win.h39 WSAOVERLAPPED overlapped; member
Dudp_socket2_win.cc397 &(pIoContext->overlapped), 0); in SendTo()
597 &(pIoContext->overlapped), in PostRecv()
/external/opencv3/doc/tutorials/imgproc/erosion_dilatation/
Derosion_dilatation.markdown38 - As the kernel \f$B\f$ is scanned over the image, we compute the maximal pixel value overlapped
51 - As the kernel \f$B\f$ is scanned over the image, we compute the minimal pixel value overlapped
/external/libvorbis/doc/
D01-introduction.tex351 requirements, overlapped 50\% with the output of the previous frame and
493 Windowed MDCT output is overlapped and added with the right hand data
509 The overlapped portion produced from overlapping the previous and
514 overlapped portions. When overlapping a short and long window, much of
D04-codec.tex578 Windowed MDCT output is overlapped and added with the right hand data
581 \xref{vorbis:spec:window}). The overlapped portion
586 one-half block consisting of and only of the overlapped portions. When
/external/opencv3/doc/tutorials/core/mat-mask-operations/
Dmat_mask_operations.markdown25 the overlapped matrix values. It's the same thing, however in case of large matrices the latter
/external/vboot_reference/tests/
Dcgptlib_test.c745 int overlapped; in OverlappedPartitionTest() member
808 EXPECT(cases[i].overlapped == CheckEntries(e, h)); in OverlappedPartitionTest()
/external/libchrome/base/message_loop/
Dmessage_loop_unittest.cc503 OVERLAPPED* context() { return &context_.overlapped; } in context()
/external/libcxx/include/
Dstring602 _LIBCPP_ASSERT(__s2 < __s1 || __s2 >= __s1+__n, "char_traits::copy overlapped range");
647 _LIBCPP_ASSERT(__s2 < __s1 || __s2 >= __s1+__n, "char_traits::copy overlapped range");
693 _LIBCPP_ASSERT(__s2 < __s1 || __s2 >= __s1+__n, "char_traits::copy overlapped range");
809 _LIBCPP_ASSERT(__s2 < __s1 || __s2 >= __s1+__n, "char_traits::copy overlapped range");
922 _LIBCPP_ASSERT(__s2 < __s1 || __s2 >= __s1+__n, "char_traits::copy overlapped range");
/external/llvm/lib/Target/
DREADME.txt2120 We don't fold this because we don't want to introduce an overlapped live range
/external/sqlite/dist/
Dsqlite3.c36919 OVERLAPPED overlapped; /* The offset for ReadFile. */
36960 memset(&overlapped, 0, sizeof(OVERLAPPED));
36961 overlapped.Offset = (LONG)(offset & 0xffffffff);
36962 overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff);
36963 while( !osReadFile(pFile->h, pBuf, amt, &nRead, &overlapped) &&
37037 OVERLAPPED overlapped; /* The offset for WriteFile. */
37045 memset(&overlapped, 0, sizeof(OVERLAPPED));
37046 overlapped.Offset = (LONG)(offset & 0xffffffff);
37047 overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff);
37054 if( !osWriteFile(pFile->h, aRem, nRem, &nWrite, &overlapped) ){
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c36901 OVERLAPPED overlapped; /* The offset for ReadFile. */
36942 memset(&overlapped, 0, sizeof(OVERLAPPED));
36943 overlapped.Offset = (LONG)(offset & 0xffffffff);
36944 overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff);
36945 while( !osReadFile(pFile->h, pBuf, amt, &nRead, &overlapped) &&
37019 OVERLAPPED overlapped; /* The offset for WriteFile. */
37027 memset(&overlapped, 0, sizeof(OVERLAPPED));
37028 overlapped.Offset = (LONG)(offset & 0xffffffff);
37029 overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff);
37036 if( !osWriteFile(pFile->h, aRem, nRem, &nWrite, &overlapped) ){
[all …]
/external/libxml2/
DChangeLog9657 valgrind pointed out the strings overlapped. cleanup .
/external/tpm2/
Dpart4.txt14843 …will not both fit, the will be overlapped by XORing() bytes. If XOR is required, the bind value wi…