Searched refs:io_ (Results 1 - 13 of 13) sorted by relevance
/third_party/node/deps/v8/src/debug/wasm/gdb-server/ |
H A D | session.cc | 15 : io_(transport), connected_(true), ack_enabled_(true) {} in Session() 17 void Session::WaitForDebugStubEvent() { io_->WaitForDebugStubEvent(); } in WaitForDebugStubEvent() 19 bool Session::SignalThreadEvent() { return io_->SignalThreadEvent(); } in SignalThreadEvent() 21 bool Session::IsDataAvailable() const { return io_->IsDataAvailable(); } in IsDataAvailable() 26 io_->Disconnect(); in Disconnect() 31 if (!io_->Read(ch, 1)) { in GetChar() 47 if (!io_->Write(data.data(), static_cast<int32_t>(data.length()))) { in SendPacket() 132 return io_->Write(out, 3); in GetPacket() 134 return io_->Write(out, 1); in GetPacket() 139 io_ in GetPacket() [all...] |
H A D | session.h | 63 TransportBase* io_; // Transport object not owned by the Session. member in v8::internal::wasm::gdb_server::Session
|
/third_party/skia/third_party/externals/libwebp/src/dec/ |
H A D | idec_dec.c | 70 VP8Io io_; member 115 // note: for VP8, setting up idec->io_ is only really needed at the beginning in DoRemap() 117 idec->io_.data = new_base; in DoRemap() 118 idec->io_.data_size = MemDataSize(mem); in DoRemap() 291 VP8ExitCritical((VP8Decoder*)idec->dec_, &idec->io_); in IDecError() 303 idec->io_.data = mem->buf_ + mem->start_; in ChangeState() 304 idec->io_.data_size = MemDataSize(mem); in ChangeState() 364 idec->io_.data = data; in DecodeVP8FrameHeader() 365 idec->io_.data_size = curr_size; in DecodeVP8FrameHeader() 401 VP8Io* const io = &idec->io_; in DecodePartition0() [all...] |
H A D | vp8l_dec.c | 792 assert(row <= dec->io_->crop_bottom); in ProcessRows() 797 VP8Io* const io = dec->io_; in ProcessRows() 868 ALPHDecoder* const alph_dec = (ALPHDecoder*)dec->io_->opaque; in ExtractPalettedAlphaRows() 871 alph_dec->filter_ == WEBP_FILTER_HORIZONTAL) ? dec->io_->crop_top in ExtractPalettedAlphaRows() 874 assert(last_row <= dec->io_->crop_bottom); in ExtractPalettedAlphaRows() 877 const int width = dec->io_->width; in ExtractPalettedAlphaRows() 1553 assert(last_row <= dec->io_->crop_bottom); in ExtractAlphaRows() 1558 ALPHDecoder* const alph_dec = (ALPHDecoder*)dec->io_->opaque; in ExtractAlphaRows() 1560 const int width = dec->io_->width; // the final width (!= dec->width_) in ExtractAlphaRows() 1587 dec->io_ in VP8LDecodeAlphaHeader() [all...] |
H A D | alphai_dec.h | 34 VP8Io io_; member
|
H A D | alpha_dec.c | 55 VP8Io* const io = &dec->io_; in ALPHInit() 113 const int height = alph_dec->io_.crop_bottom; in ALPHDecode()
|
H A D | vp8li_dec.h | 61 VP8Io* io_; member
|
H A D | vp8i_dec.h | 171 VP8Io io_; // copy of the VP8Io to pass to put() member
|
H A D | frame_dec.c | 519 ctx->io_ = *io; in VP8ProcessRow() 650 worker->data2 = (void*)&dec->thread_ctx_.io_; in InitThreadContext()
|
/third_party/node/src/ |
H A D | inspector_agent.cc | 753 if (io_ != nullptr) in StartIoThread() 763 io_ = InspectorIo::Start(client_->getThreadHandle(), in StartIoThread() 767 if (io_ == nullptr) { in StartIoThread() 775 io_.reset(); in Stop() 828 if (io_ != nullptr) { in WaitForDisconnect() 829 io_->StopAcceptingNewConnections(); in WaitForDisconnect() 954 return io_ != nullptr || client_->IsActive(); in IsActive() 998 if (io_ == nullptr) in GetWsUrl() 1000 return io_->GetWsUrl(); in GetWsUrl()
|
H A D | inspector_agent.h | 48 // Create client_, may create io_ if option enabled 53 // Stop and destroy io_ 56 bool IsListening() { return io_ != nullptr; } in IsListening() 126 std::unique_ptr<InspectorIo> io_; member in node::inspector::Agent
|
H A D | js_native_api_v8_inspector.h | 72 // Create client_, may create io_ if option enabled 77 // Stop and destroy io_ 80 bool IsListening() { return io_ != nullptr; } in IsListening() 124 std::unique_ptr<InspectorIo> io_; member in v8impl::Agent
|
H A D | js_native_api_v8_inspector.cc | 1314 if (io_ != nullptr) in StartIoThread() 1324 io_ = InspectorIo::Start(client_->getThreadHandle(), in StartIoThread() 1328 if (io_ == nullptr) { in StartIoThread() 1335 io_.reset(); in Stop() 1368 if (io_ != nullptr) { in WaitForDisconnect() 1369 io_->StopAcceptingNewConnections(); in WaitForDisconnect() 1416 return io_ != nullptr || client_->IsActive(); in IsActive() 1430 if (io_ == nullptr) in GetWsUrl() 1432 return io_->GetWsUrl(); in GetWsUrl()
|
Completed in 12 milliseconds