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

12

/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);
H A Dp2ptransportchannel.cc76 // pretending to be writable (the connection is not set to the unwritable
77 // state). On the passive side, the connection also remains writable even
80 // side: 1. the old, disconnected one that is pretending to be writable, and
81 // 2. the new, connected one that is maybe not yet writable. For purposes of
88 // one, even though it's writable. In the code below, we're doing so to make
89 // sure we treat a new writable connection as better than an old disconnected
94 // the new connection, when it becomes writable, should have higher priority.
117 // priority writable connections first.
160 // We prefer to switch to a writable and receiving connection over a
161 // non-writable o
1112 bool writable = best_connection_ && best_connection_->writable(); local
[all...]
H A Dport.h445 bool writable() const { return write_state_ == STATE_WRITABLE; } function in class:cricket::Connection
451 bool weak() const { return !(writable() && receiving() && connected()); }
/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/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.cc144 isolate->heap()->ToBoolean(writable()));
157 factory->ToBoolean(writable()));
232 // writable?
233 Handle<Object> writable; local
236 &writable)) {
239 // 15c. Set the [[Writable]] field of desc to writable.
240 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/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/chromium-trace/catapult/telemetry/third_party/tsproxy/
H A Dtsproxy.py260 def writable(self): member in class:TCPConnection
417 def writable(self): member in class:Socks5Connection
/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/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/telemetry/third_party/pyserial/serial/
H A Dserialutil.py528 def writable(self): return True member in class:SerialBase
/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);
H A Dchannel.cc292 true, rtcp_transport_channel() && rtcp_transport_channel()->writable());
323 // Update aggregate writable/ready-to-send state between RTP and RTCP upon
326 SetReadyToSend(false, new_tc && new_tc->writable());
359 // Update aggregate writable/ready-to-send state between RTP and RTCP upon
362 SetReadyToSend(true, new_tc && new_tc->writable());
523 // cover other scenarios like the whole channel is writable (not just this
581 if (!channel || !channel->writable()) {
808 if (transport_channel_ && transport_channel_->writable() &&
809 (!rtcp_transport_channel_ || rtcp_transport_channel_->writable())) {
822 LOG(LS_INFO) << "Channel writable (" << content_name
2305 OnDataChannelReadyToSend(bool writable) argument
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dutxttest.cpp1227 UBool writable = utext_isWritable(ut); local
1228 TEST_ASSERT(writable == FALSE);
1235 writable = utext_isWritable(ut);
1236 TEST_ASSERT(writable == FALSE);
1243 writable = utext_isWritable(ut);
1244 TEST_ASSERT(writable == TRUE);
1246 writable = utext_isWritable(ut);
1247 TEST_ASSERT(writable == FALSE);
1256 writable = utext_isWritable(ut2);
1257 TEST_ASSERT(writable
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_build.c276 unsigned writable,
285 dr.Writable = writable;
274 tgsi_build_declaration_resource(unsigned texture, unsigned raw, unsigned writable, struct tgsi_declaration *declaration, struct tgsi_header *header) argument
/external/elfutils/src/
H A Dunstrip.c2056 open_file (const char *file, bool writable)
2058 int fd = open (file, writable ? O_RDWR : O_RDONLY);
2054 open_file(const char *file, bool writable) argument
/external/harfbuzz_ng/src/
H A Dhb-open-type-private.hh196 writable (false), edit_count (0),
212 this->writable = false;
289 this->writable ? "GRANTED" : "DENIED");
291 return this->writable;
305 bool writable; member in struct:OT::hb_sanitize_context_t
351 if (edit_count && !c->writable) {
356 c->writable = true;
357 /* ok, we made it writable by relocating. try again */
/external/mesa3d/src/gallium/include/pipe/
H A Dp_state.h339 unsigned writable:1; /**< writable shader resource */ member in struct:pipe_surface

Completed in 2726 milliseconds

12