Home
last modified time | relevance | path

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

/external/rust/crates/tokio/src/io/driver/
Dready.rs7 const WRITABLE: usize = 0b0_10; constant
26 pub const WRITABLE: Ready = Ready(WRITABLE); constant
35 pub const ALL: Ready = Ready(READABLE | WRITABLE | READ_CLOSED | WRITE_CLOSED);
46 ready |= Ready::WRITABLE; in from_mio()
103 self.contains(Ready::WRITABLE) || self.is_write_closed() in is_writable()
179 ready |= Ready::WRITABLE;
Dinterest.rs25 pub const WRITABLE: Interest = Interest(mio::Interest::WRITABLE); constant
86 Interest::WRITABLE => Ready::WRITABLE | Ready::WRITE_CLOSED, in mask()
Dmod.rs350 Direction::Write => Ready::WRITABLE | Ready::WRITE_CLOSED, in mask()
/external/python/cpython2/Modules/_multiprocessing/
Dconnection.h18 #define WRITABLE 2 macro
27 if (!(self->flags & WRITABLE)) { \
72 self->flags |= WRITABLE; in connection_new()
166 if ((self->flags & WRITABLE) == 0) { in connection_recvbytes()
172 self->flags = WRITABLE; in connection_recvbytes()
220 if ((self->flags & WRITABLE) == 0) { in connection_recvbytes_into()
226 self->flags = WRITABLE; in connection_recvbytes_into()
306 if ((self->flags & WRITABLE) == 0) { in connection_recv_obj()
312 self->flags = WRITABLE; in connection_recv_obj()
427 return PyBool_FromLong((long)(self->flags & WRITABLE)); in connection_writable()
/external/rust/crates/mio/src/
Dinterest.rs21 const WRITABLE: u8 = 0b0_010; constant
41 pub const WRITABLE: Interest = Interest(unsafe { NonZeroU8::new_unchecked(WRITABLE) }); constant
104 (self.0.get() & WRITABLE) != 0 in is_writable()
/external/rust/crates/vmm_vhost/src/vhost_user/
Dmaster.rs870 .set_config(0x100, VhostUserConfigFlags::WRITABLE, &buf[0..4]) in test_master_set_config_negative()
882 .set_config(0x100, VhostUserConfigFlags::WRITABLE, &buf[0..4]) in test_master_set_config_negative()
885 .set_config(0x0, VhostUserConfigFlags::WRITABLE, &buf[0..4]) in test_master_set_config_negative()
888 .set_config(0x1000, VhostUserConfigFlags::WRITABLE, &buf[0..4]) in test_master_set_config_negative()
898 .set_config(0x100, VhostUserConfigFlags::WRITABLE, &buf) in test_master_set_config_negative()
901 .set_config(0x100, VhostUserConfigFlags::WRITABLE, &[]) in test_master_set_config_negative()
932 .get_config(0x100, 4, VhostUserConfigFlags::WRITABLE, &buf[0..4]) in test_master_get_config_negative0()
939 .get_config(0x100, 4, VhostUserConfigFlags::WRITABLE, &buf[0..4]) in test_master_get_config_negative0()
954 .get_config(0x100, 4, VhostUserConfigFlags::WRITABLE, &buf[0..4]) in test_master_get_config_negative1()
961 .get_config(0x100, 4, VhostUserConfigFlags::WRITABLE, &buf[0..4]) in test_master_get_config_negative1()
[all …]
Dmessage.rs628 const WRITABLE = 0x1; constant
1003 VhostUserConfigFlags::WRITABLE, in check_user_config_msg()
Dmod.rs377 .set_config(0x100, VhostUserConfigFlags::WRITABLE, &[0xa5u8]) in test_master_slave_process()
/external/rust/crates/tokio/src/net/unix/datagram/
Dsocket.rs211 self.ready(Interest::WRITABLE).await?; in writable()
520 .async_io(Interest::WRITABLE, || self.io.send(buf)) in send()
565 .try_io(Interest::WRITABLE, || self.io.send(buf)) in try_send()
611 .try_io(Interest::WRITABLE, || self.io.send_to(buf, target)) in try_send_to()
860 .async_io(Interest::WRITABLE, || self.io.send_to(buf, target.as_ref())) in send_to()
/external/rust/crates/tokio/src/net/
Dudp.rs428 self.ready(Interest::WRITABLE).await?; in writable()
466 .async_io(Interest::WRITABLE, || self.io.send(buf)) in send()
550 .try_io(Interest::WRITABLE, || self.io.send(buf)) in try_send()
991 .try_io(Interest::WRITABLE, || self.io.send_to(buf, target)) in try_send_to()
997 .async_io(Interest::WRITABLE, || self.io.send_to(buf, target)) in send_to_addr()
/external/rust/crates/tokio/src/io/
Dasync_fd.rs166 const ALL_INTEREST: Interest = Interest::READABLE.add(Interest::WRITABLE);
447 self.readiness(Interest::WRITABLE).await in writable()
458 self.readiness_mut(Interest::WRITABLE).await in writable_mut()
Dpoll_evented.rs88 PollEvented::new_with_interest(io, Interest::READABLE | Interest::WRITABLE) in new()
/external/libwebsockets/lib/misc/threadpool/
DREADME.md125 LWS_TP_RETURN_SYNC|Task wants to trigger a WRITABLE callback and block until lws service thread res…
139 cause a WRITABLE callback on the associated wsi in the lws service thread
147 In the WRITABLE callback, in lws service thread context, the buffer can be
151 If the WRITABLE callback determines that the task should stop, it can just call
167 #### Protecting against WRITABLE and / or SYNC duplication
/external/libchrome/mojo/public/java/system/src/org/chromium/mojo/system/
DCore.java42 public static final HandleSignals WRITABLE = field in Core.HandleSignals
/external/rust/crates/tokio/src/net/unix/
Dstream.rs397 self.ready(Interest::WRITABLE).await?; in writable()
487 .try_io(Interest::WRITABLE, || (&*self.io).write(buf)) in try_write()
/external/rust/crates/tokio/src/net/tcp/
Dstream.rs685 self.ready(Interest::WRITABLE).await?; in writable()
775 .try_io(Interest::WRITABLE, || (&*self.io).write(buf)) in try_write()
/external/rust/crates/mio/examples/
Dtcp_server.rs71 Interest::READABLE.add(Interest::WRITABLE), in main()
/external/rust/crates/tokio/src/signal/unix/
Ddriver.rs79 Interest::READABLE | Interest::WRITABLE, in new()
/external/crosvm/devices/src/virtio/vhost/user/
Dhandler.rs106 VhostUserConfigFlags::WRITABLE, in read_config()
/external/rust/crates/mio/
DREADME.md70 .register(&mut client, CLIENT, Interest::READABLE | Interest::WRITABLE)?;
/external/python/cpython2/Doc/library/
Dtkinter.rst847 mask = Tkinter.READABLE | Tkinter.WRITABLE
880 WRITABLE
/external/python/cpython3/Doc/library/
Dtkinter.rst831 mask = tkinter.READABLE | tkinter.WRITABLE
864 WRITABLE
/external/python/cpython2/Modules/_ctypes/libffi/doc/
Dlibffi.info418 -- Function: void ffi_closure_free (void *WRITABLE)
/external/python/cpython2/Lib/lib-tk/
DTkinter.py52 WRITABLE = _tkinter.WRITABLE variable
/external/python/cpython3/Lib/tkinter/
D__init__.py48 WRITABLE = _tkinter.WRITABLE variable