Searched defs:writable (Results 1 - 25 of 51) sorted by relevance

123

/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
H A DMethodProperty.java35 private final boolean writable; field in class:MethodProperty
43 this.writable = property.getWriteMethod() != null;
64 return writable;
/external/webrtc/webrtc/p2p/base/
H A Dtransportchannel.cc34 void TransportChannel::set_writable(bool writable) { argument
35 if (writable_ == writable) {
39 << writable; local
40 writable_ = writable;
H A Dtransportchannel.h75 bool writable() const { return writable_; } function in class:cricket::TransportChannel
161 // Sets the writable state, signaling if necessary.
162 void set_writable(bool writable);
H A Dtransport.h86 writable(false),
100 bool writable; // Has this connection received a STUN response? member in struct:cricket::ConnectionInfo
H A Dfaketransportcontroller.h145 void SetWritable(bool writable) { set_writable(writable); } argument
372 void SetWritable(bool writable) { argument
374 kv.second->SetWritable(writable);
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
H A DWritables.java71 static String writeToString(Writable writable) { argument
74 writable.write(builder, DEFAULT_CONTEXT);
/external/fio/oslib/
H A Dlibmtd.h75 * @writable: zero if the device is read-only
93 unsigned int writable:1; member in struct:mtd_dev_info
/external/python/cpython2/Include/
H A Dfileobject.h32 int writable; member in struct:__anon17384
/external/skia/include/core/
H A DSkTLazy.h118 * thing.writable()->modifyMe(); // makes a copy of constThing
124 * thing.writable()->changeMe(); // makes a copy of constThing if we didn't call modifyMe()
147 * Returns a writable T*. The first time this is called the initial object is cloned.
149 T* writable() { function in class:SkTCopyOnFirstWrite
/external/skia/src/core/
H A DSkRegionPriv.h111 RunHead* writable = this; local
116 writable = Alloc(fRunCount, fYSpanCount, fIntervalCount);
117 memcpy(writable->writable_runs(), this->readonly_runs(),
127 return writable;
/external/v8/src/
H A Dproperty-descriptor.cc151 isolate->heap()->ToBoolean(writable()));
164 factory->ToBoolean(writable()));
239 // writable?
240 Handle<Object> writable; local
243 &writable)) {
246 // 15c. Set the [[Writable]] field of desc to writable.
247 if (!writable.is_null()) desc->set_writable(writable->BooleanValue());
H A Dproperty-descriptor.h88 bool writable() const { return writable_; } function in class:v8::internal::PropertyDescriptor
89 void set_writable(bool writable) { argument
90 writable_ = writable;
110 (has_writable() && !writable() ? READ_ONLY : NONE));
/external/python/cpython2/Lib/
H A Dasynchat.py207 def writable (self): member in class:async_chat
208 "predicate for inclusion in the writable for select()"
H A Dgzip.py418 def writable(self): member in class:GzipFile
H A Dasyncore.py132 is_w = obj.writable()
135 # accepting sockets should not be writable
183 # accepting sockets should not be writable
184 if obj.writable() and not obj.accepting:
188 # or writable.
327 def writable(self): member in class:dispatcher
543 def writable(self): member in class:dispatcher_with_send
H A D_pyio.py281 arrays of bytes. In some cases, such as readinto, a writable object such
401 def writable(self): member in class:IOBase
409 """Internal: raise an IOError if file is not writable
411 if not self.writable():
412 raise IOError("File or stream is not writable."
755 def writable(self): member in class:_BufferedIOMixin
756 return self.raw.writable()
899 def writable(self): member in class:BytesIO
1074 if not raw.writable():
1075 raise IOError('"raw" argument must be writable
1212 def writable(self): member in class:BufferedRWPair
1578 def writable(self): member in class:TextIOWrapper
[all...]
/external/libmojo/mojo/public/java/system/src/org/chromium/mojo/system/
H A DCore.java58 * Change the writable bit of this signal.
60 * @param writable the new value of the writable bit.
63 public HandleSignals setWritable(boolean writable) { argument
64 return setFlag(FLAG_WRITABLE, writable);
/external/python/cpython2/Modules/_multiprocessing/
H A Dconnection.h41 BOOL readable = TRUE, writable = TRUE; local
43 static char *kwlist[] = {"handle", "readable", "writable", NULL};
46 &handle, &readable, &writable))
55 if (!readable && !writable) {
57 "either readable or writable must be true");
71 if (writable)
463 {"writable", (getter)connection_writable, NULL,
464 "True if the connection is writable", NULL},
474 " Connection(handle, readable=True, writable=True).\n\n"
/external/libchrome/base/memory/
H A Dshared_memory_unittest.cc344 // Make sure the writable instance is still writable.
362 // The "read-only" handle is still writable on Android:
371 void* writable = mmap(NULL, contents.size(), PROT_READ | PROT_WRITE, local
374 EXPECT_EQ(MAP_FAILED, writable)
375 << "It shouldn't be possible to re-mmap the descriptor writable.";
377 if (writable != MAP_FAILED)
378 EXPECT_EQ(0, munmap(writable, readonly_shmem.mapped_size()));
382 << "Shouldn't be able to map memory writable.";
389 << "Shouldn't be able to duplicate the handle into a writable on
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_poplib.py150 def writable(self): member in class:DummyPOP3Server
/external/webrtc/talk/app/webrtc/
H A Ddatachannel.cc408 void DataChannel::OnChannelReady(bool writable) { argument
409 writable_ = writable;
410 if (!writable) {
454 // If we have received buffers before the channel got writable.
/external/chromium-trace/catapult/third_party/pyserial/serial/
H A Dserialutil.py528 def writable(self): return True member in class:SerialBase
/external/python/cpython2/Modules/_io/
H A Dfileio.c49 unsigned int writable : 1; member in struct:__anon17523
127 self->writable = 0;
289 self->writable = 1;
296 self->writable = 1;
305 self->readable = self->writable = 1;
318 if (self->readable && self->writable)
453 return PyBool_FromLong((long) self->writable);
680 if (!self->writable)
810 if (!self->writable)
909 if (self->writable)
[all...]
/external/webrtc/talk/media/sctp/
H A Dsctpdataengine_unittest.cc151 void OnSignaled(bool writable) { argument
153 writable_ = writable;
156 bool IsSignaled(bool writable) { argument
157 return signaled_ && (writable_ == writable);
/external/webrtc/talk/session/media/
H A Dchannel.h116 bool writable() const { return writable_; } function in class:cricket::BaseChannel
559 // That occurs when the channel is enabled, the transport is writable,
633 void OnDataChannelReadyToSend(bool writable);

Completed in 683 milliseconds

123