Home
last modified time | relevance | path

Searched refs:writeio (Results 1 – 25 of 93) sorted by relevance

1234

/dports/www/trafficserver/trafficserver-9.1.1/example/plugins/c-api/passthru/
H A Dpassthru.cc126 PassthruIO writeio; member
133 PassthruIO writeio; member
198 sp->server.writeio.write(sp->server.vconn, sp->contp); in PassthruSessionEvent()
203 nbytes = sp->client.readio.transfer_to(sp->server.writeio); in PassthruSessionEvent()
208 TSVIOReenable(sp->server.writeio.vio); in PassthruSessionEvent()
211 nbytes = sp->server.readio.transfer_to(sp->client.writeio); in PassthruSessionEvent()
216 TSVIOReenable(sp->client.writeio.vio); in PassthruSessionEvent()
255 sp->server.readio.transfer_to(sp->client.writeio); in PassthruSessionEvent()
256 TSVIOReenable(sp->client.writeio.vio); in PassthruSessionEvent()
262 sp->server.writeio.clear(); in PassthruSessionEvent()
[all …]
/dports/www/trafficserver/trafficserver-9.1.1/example/plugins/c-api/intercept/
H A Dintercept.cc114 InterceptIOChannel writeio; member
123 this->readio.vio = this->writeio.vio = nullptr; in close()
349 istate->client.writeio.write(istate->client.vc, contp); in InterceptInterceptHook()
353 istate->server.writeio.write(istate->server.vc, contp); in InterceptInterceptHook()
411 TSVIO writeio = to->writeio.vio; in InterceptInterceptHook() local
412 …VIODEBUG(writeio, "WRITE VIO ndone=%" PRId64 " ntodo=%" PRId64, TSVIONDoneGet(writeio), TSVIONTodo… in InterceptInterceptHook()
435 TSIOBufferReaderAvail(to->writeio.reader)); in InterceptInterceptHook()
436 if (TSIOBufferReaderAvail(to->writeio.reader) == 0) { in InterceptInterceptHook()
466 TSIOBufferReaderAvail(from->writeio.reader)); in InterceptInterceptHook()
474 TSIOBufferReaderAvail(to->writeio.reader)); in InterceptInterceptHook()
[all …]
/dports/games/libretro-fbneo/FBNeo-bbe3c05/src/cpu/
H A Dtlcs90_intf.cpp7 static void (*writeio)(UINT16, UINT8) = NULL; variable
99 if (writeio) { in tlcs90_io_write_byte()
100 return writeio(port, data); in tlcs90_io_write_byte()
122 writeio = pwrite; in tlcs90SetWritePortHandler()
175 writeio = NULL; in tlcs90Init()
188 writeio = NULL; in tlcs90Exit()
/dports/games/libretro-fbalpha/fbalpha-84eb9d9/src/cpu/
H A Dtlcs90_intf.cpp7 static void (*writeio)(UINT16, UINT8) = NULL; variable
91 if (writeio) { in tlcs90_io_write_byte()
92 return writeio(port, data); in tlcs90_io_write_byte()
114 writeio = pwrite; in tlcs90SetWritePortHandler()
167 writeio = NULL; in tlcs90Init()
180 writeio = NULL; in tlcs90Exit()
/dports/www/trafficserver/trafficserver-9.1.1/plugins/experimental/fastcgi/src/
H A Dserver.cc116 if (server_connection->writeio.readEnable) { in handlePHPConnectionEvents()
117 …ContCall(TSVIOContGet(server_connection->writeio.vio), TS_EVENT_VCONN_WRITE_COMPLETE, server_conne… in handlePHPConnectionEvents()
129 if (!server_connection->writeio.readEnable) { in handlePHPConnectionEvents()
293 server_conn->writeio.phpWrite(server_conn->vc_, server_conn->contp(), clientReq, reqLen, endflag); in writeRequestHeader()
314 server_conn->writeio.phpWrite(server_conn->vc_, server_conn->contp(), clientReq, reqLen, endflag); in writeRequestBody()
335 server_conn->writeio.phpWrite(server_conn->vc_, server_conn->contp(), clientReq, reqLen, endflag); in writeRequestBodyComplete()
H A Dserver_connection.h107 InterceptIOChannel writeio; variable
H A Dconnection_pool.cc78 connection->writeio.readEnable = false; in reuseConnection()
/dports/www/trafficserver/trafficserver-9.1.1/plugins/experimental/statichit/
H A Dstatichit.cc162 IOChannel writeio; member
287 TSHttpHdrPrint(response.buffer, response.header, trq->writeio.iobuf); in WriteResponseHeader()
288 TSVIONBytesSet(trq->writeio.vio, hdrlen); in WriteResponseHeader()
289 TSVIOReenable(trq->writeio.vio); in WriteResponseHeader()
400 cdata.trq->writeio.write(TSVIOVConnGet(arg.vio), contp); in StaticHitInterceptHook()
401 TSVIONBytesSet(cdata.trq->writeio.vio, 0); in StaticHitInterceptHook()
430 nbytes = TSIOBufferWrite(cdata.trq->writeio.iobuf, cdata.trq->body.c_str(), nbytes); in StaticHitInterceptHook()
463 cdata.trq->writeio.write(TSVIOVConnGet(arg.vio), contp); in StaticHitInterceptHook()
464 TSVIONBytesSet(cdata.trq->writeio.vio, cdata.trq->nbytes); in StaticHitInterceptHook()
/dports/www/trafficserver/trafficserver-9.1.1/plugins/generator/
H A Dgenerator.cc171 IOChannel writeio; member
327 TSHttpHdrPrint(response.buffer, response.header, grq->writeio.iobuf); in GeneratorWriteResponseHeader()
328 TSVIONBytesSet(grq->writeio.vio, hdrlen); in GeneratorWriteResponseHeader()
329 TSVIOReenable(grq->writeio.vio); in GeneratorWriteResponseHeader()
517 cdata.grq->writeio.write(TSVIOVConnGet(arg.vio), contp); in GeneratorInterceptHook()
518 TSVIONBytesSet(cdata.grq->writeio.vio, 0); in GeneratorInterceptHook()
558 nbytes = TSIOBufferWrite(cdata.grq->writeio.iobuf, GeneratorData, nbytes); in GeneratorInterceptHook()
591 cdata.grq->writeio.write(TSVIOVConnGet(arg.vio), contp); in GeneratorInterceptHook()
592 TSVIONBytesSet(cdata.grq->writeio.vio, cdata.grq->nbytes); in GeneratorInterceptHook()
/dports/devel/9base/9base-6/sam/
H A Dio.c54 n = writeio(f); in writef()
141 writeio(File *f) in writeio() function
H A Dshell.c127 writeio(f); in plan9()
H A Derr23 io.c: In function `writeio':
H A Dsam.h340 Posn writeio(File*);
/dports/devel/plan9port/plan9port-1f098efb7370a0b28306d10681e21883fb1c1507/src/cmd/sam/
H A Dio.c54 n = writeio(f); in writef()
141 writeio(File *f) in writeio() function
H A Dshell.c128 writeio(f); in plan9()
H A Derr23 io.c: In function `writeio':
/dports/games/libretro-fbalpha/fbalpha-84eb9d9/src/burn/drv/snes/
H A Dsnes_io.cpp72 void writeio(unsigned short addr, unsigned char val) in writeio() function
H A Dsnes.h209 void writeio(unsigned short addr, unsigned char val);
H A Dsnes_main.cpp262 writeio(addr,val); in snes_writemem()
/dports/emulators/qemu5/qemu-5.2.0/roms/u-boot/include/linux/
H A Dfb.h443 void (*writeio)(struct fb_info *info, void *dst, void *src, unsigned int size); member
/dports/sysutils/u-boot-olimex-a20-som-evb/u-boot-2021.07/include/linux/
H A Dfb.h443 void (*writeio)(struct fb_info *info, void *dst, void *src, unsigned int size); member
/dports/sysutils/u-boot-olinuxino-lime2/u-boot-2021.07/include/linux/
H A Dfb.h443 void (*writeio)(struct fb_info *info, void *dst, void *src, unsigned int size); member
/dports/sysutils/u-boot-olinuxino-lime/u-boot-2021.07/include/linux/
H A Dfb.h443 void (*writeio)(struct fb_info *info, void *dst, void *src, unsigned int size); member
/dports/sysutils/u-boot-nanopi-r4s/u-boot-2021.07/include/linux/
H A Dfb.h443 void (*writeio)(struct fb_info *info, void *dst, void *src, unsigned int size); member
/dports/sysutils/u-boot-wandboard/u-boot-2021.07/include/linux/
H A Dfb.h443 void (*writeio)(struct fb_info *info, void *dst, void *src, unsigned int size); member

1234