/external/chromium_org/base/files/ |
file_util_proxy_unittest.cc | 199 OVERLAPPED overlapped = {0}; local 200 overlapped.hEvent = hEvent; 202 if (!::WriteFile(file_, "test", 4, &bytes_written, &overlapped)) { 206 GetOverlappedResult(file_, &overlapped, &bytes_written, TRUE);
|
/external/chromium_org/base/message_loop/ |
message_pump_win.cc | 476 reinterpret_cast<OVERLAPPED*>(this)); 502 // Job object notifications use the OVERLAPPED pointer to carry the message 504 // convert OVERLAPPED* to IOContext*. 607 OVERLAPPED* overlapped = NULL; local 609 &overlapped, timeout)) { 610 if (!overlapped) 617 item->context = reinterpret_cast<IOContext*>(overlapped);
|
message_pump_win.h | 239 // // The only buffer required for this operation is the overlapped 241 // ConnectNamedPipe(file_, &context_->overlapped); 270 // ReadFile(file_, buffer, num_bytes, &read, &context->overlapped); 311 // overlapped IO operation. |handler| must be set to the registered IOHandler 318 // additional buffers (other than the overlapped structure itself). 320 OVERLAPPED overlapped; member in struct:base::MessagePumpForIO::IOContext 379 // |handler| will have valid OVERLAPPED pointers.
|
message_loop_unittest.cc | [all...] |
/external/chromium_org/third_party/libusb/src/libusb/os/ |
windows_usb.c | [all...] |
wince_usb.c | 605 if (!UkwCancelTransfer(priv->dev, transfer_priv->pollable_fd.overlapped, UKW_TF_NO_WAIT)) { 652 ret = UkwIssueControlTransfer(priv->dev, flags, setup, buf, bufLen, &transfer->actual_length, wfd.overlapped); 655 transfer->length, &transfer->actual_length, wfd.overlapped); 825 // Because a Windows OVERLAPPED is used for poll emulation, 837 if (found && HasOverlappedIoCompleted(transfer_priv->pollable_fd.overlapped)) { 838 io_result = (DWORD)transfer_priv->pollable_fd.overlapped->Internal; 839 io_size = (DWORD)transfer_priv->pollable_fd.overlapped->InternalHigh; [all...] |
/development/host/windows/usb/api/ |
adb_api.h | 151 this API it is opened for asynchronous (or overlapped) I/O. And each time
416 Endpoints are always opened for overlapped I/O.
439 Endpoints are always opened for overlapped I/O.
458 Endpoints are always opened for overlapped I/O.
504 initialize OVERLAPPED structure for this I/O.
527 initialize OVERLAPPED structure for this I/O.
579 /** \brief Gets overlapped I/O result for async I/O performed on the
584 @param[out] ovl_data Buffer for the copy of this object's OVERLAPPED
600 LPOVERLAPPED overlapped,
604 /** \brief Checks if overlapped I/O has been completed. [all...] |
adb_api.cpp | 484 LPOVERLAPPED overlapped,
494 adb_object->GetOvelappedIoResult(overlapped, bytes_transferred, wait);
|
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/ |
_winnt.h | 125 OVERLAPPED overlapped; /* Used for async I/O */ member in struct:_MDOverlapped 128 * using overlapped I/O. 149 /* The overlapped structure must be first! */ 150 struct _MDOverlapped overlapped; /* Used for async IO for this thread */ member in struct:_MDThread
|
/external/chromium/net/tools/dump_cache/ |
upgrade.cc | 173 &out_context_.overlapped)) { 184 &in_context_.overlapped)) { 193 if (!ConnectNamedPipe(channel_, &in_context_.overlapped)) {
|
/external/chromium_org/net/tools/dump_cache/ |
upgrade_win.cc | 177 &out_context_.overlapped)) { 188 &in_context_.overlapped)) { 197 if (!ConnectNamedPipe(channel_, &in_context_.overlapped)) {
|
/external/libvorbis/doc/ |
01-introduction.tex | 351 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
|
04-codec.tex | 578 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/chromium/base/ |
message_loop_unittest.cc | [all...] |