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

123

/external/chromium_org/chrome/browser/chromeos/file_system_provider/
H A Dprovided_file_system_info.cc16 bool writable,
21 writable_(writable),
12 ProvidedFileSystemInfo( const std::string& extension_id, const std::string& file_system_id, const std::string& display_name, bool writable, const base::FilePath& mount_path) argument
H A Dprovided_file_system_info.h22 const bool writable,
30 bool writable() const { return writable_; } function in class:chromeos::file_system_provider::ProvidedFileSystemInfo
43 // Whether the file system is writable or just read-only.
H A Dservice.cc42 const char kPrefKeyWritable[] = "writable";
106 bool writable) {
156 // writable = false
159 extension_id, file_system_id, display_name, writable, mount_path);
338 file_system_info.writable());
405 bool writable; local
413 &writable) ||
421 MountFileSystem(extension_id, file_system_id, display_name, writable);
103 MountFileSystem(const std::string& extension_id, const std::string& file_system_id, const std::string& display_name, bool writable) argument
H A Dservice_unittest.cc107 bool writable) {
118 file_system->SetBooleanWithoutPathExpansion(kPrefKeyWritable, writable);
163 kExtensionId, kFileSystemId, kDisplayName, false /* writable */));
174 EXPECT_FALSE(observer.mounts[0].file_system_info().writable());
190 kExtensionId, kFileSystemId, kDisplayName, true /* writable */));
193 EXPECT_TRUE(observer.mounts[0].file_system_info().writable());
207 kExtensionId, kFileSystemId, kDisplayName, false /* writable */));
209 kExtensionId, kFileSystemId, kDisplayName, false /* writable */));
231 kExtensionId, file_system_id, kDisplayName, false /* writable */));
237 kExtensionId, kFileSystemId, kDisplayName, false /* writable */));
103 RememberFakeFileSystem(TestingProfile* profile, const std::string& extension_id, const std::string& file_system_id, const std::string& display_name, bool writable) argument
400 bool writable = false; local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dtransportchannel.cc50 void TransportChannel::set_writable(bool writable) { argument
51 if (writable_ != writable) {
52 writable_ = writable;
H A Dtransportchannel.h77 bool writable() const { return writable_; } function in class:cricket::TransportChannel
144 // Sets the writable state, signaling if necessary.
145 void set_writable(bool writable);
H A Ddtlstransportchannel_unittest.cc206 bool writable() const { return transport_->writable(); } function in class:DtlsTestClient
311 LOG(LS_INFO) << name_ << ": is writable";
317 << "' is writable";
432 EXPECT_TRUE_WAIT(client1_.writable() && client2_.writable(), 10000);
433 if (!client1_.writable() || !client2_.writable())
792 EXPECT_TRUE_WAIT(client1_.writable() && client2_.writable(), 1000
[all...]
H A Dtransport.h132 // For "writable" and "readable", we need to differentiate between
145 writable(false),
157 bool writable; // Has this connection received a STUN response? member in struct:cricket::ConnectionInfo
223 // TODO: Replace uses of readable() and writable() with
226 bool writable() const { return any_channels_writable(); } function in class:cricket::Transport
/external/chromium_org/v8/test/mjsunit/
H A Ddefine-property-gc.js38 var descElementNonWritable = { value: 'foofoo', writable: false };
H A Dobject-define-property.js111 var dataWritable = { value: 3000, writable: true};
134 assertFalse(desc.writable);
159 assertEquals(desc.writable, undefined);
174 assertEquals(desc.writable, undefined);
207 assertEquals(desc.writable, undefined);
225 assertEquals(desc.writable, undefined);
238 assertEquals(desc.writable, undefined);
253 assertEquals(desc.writable, undefined);
266 assertFalse(desc.writable);
270 //Try writing to non writable attribut
[all...]
/external/chromium_org/third_party/tlslite/tlslite/integration/
H A Dtlsasyncdispatchermixin.py105 def writable(self): member in class:TLSAsyncDispatcherMixIn
109 return self.siblingClass.writable(self)
/external/chromium_org/chrome/browser/ui/apps/
H A Ddirectory_access_confirmation_dialog.cc18 DirectoryAccessConfirmationDialog(bool writable,
41 bool writable,
49 writable_(writable),
90 void CreateDirectoryAccessConfirmationDialog(bool writable, argument
97 writable, app_name, web_contents, on_accept, on_cancel),
40 DirectoryAccessConfirmationDialog( bool writable, const base::string16& app_name, content::WebContents* web_contents, const base::Closure& on_accept, const base::Closure& on_cancel) argument
/external/chromium_org/third_party/skia/src/core/
H A DSkRegionPriv.h97 RunHead* writable = this; local
102 writable = Alloc(fRunCount, fYSpanCount, fIntervalCount);
103 memcpy(writable->writable_runs(), this->readonly_runs(),
113 return writable;
/external/skia/src/core/
H A DSkRegionPriv.h97 RunHead* writable = this; local
102 writable = Alloc(fRunCount, fYSpanCount, fIntervalCount);
103 memcpy(writable->writable_runs(), this->readonly_runs(),
113 return writable;
/external/chromium_org/third_party/skia/include/core/
H A DSkTLazy.h139 * thing.writable()->modifyMe(); // makes a copy of constThing
145 * thing.writable()->changeMe(); // makes a copy of constThing if we didn't call modifyMe()
166 * Returns a writable T*. The first time this is called the initial object is cloned.
168 T* writable() { function in class:SkTCopyOnFirstWrite
/external/skia/include/core/
H A DSkTLazy.h139 * thing.writable()->modifyMe(); // makes a copy of constThing
145 * thing.writable()->changeMe(); // makes a copy of constThing if we didn't call modifyMe()
166 * Returns a writable T*. The first time this is called the initial object is cloned.
168 T* writable() { function in class:SkTCopyOnFirstWrite
/external/chromium_org/mojo/public/java/system/src/org/chromium/mojo/system/
H A DCore.java57 * Change the writable bit of this signal.
59 * @param writable the new value of the writable bit.
62 public HandleSignals setWritable(boolean writable) { argument
63 return setFlag(FLAG_WRITABLE, writable);
/external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
H A Dstorage_api.py530 def writable(self): member in class:ReadBuffer
594 The API is a subset of the Python writable stream API sufficient to
864 def writable(self): member in class:StreamingBuffer
/external/chromium_org/base/memory/
H A Dshared_memory_unittest.cc395 // Make sure the writable instance is still writable.
413 // The "read-only" handle is still writable on Android:
421 void* writable = mmap( local
424 EXPECT_EQ(MAP_FAILED, writable)
425 << "It shouldn't be possible to re-mmap the descriptor writable.";
427 if (writable != MAP_FAILED)
428 EXPECT_EQ(0, munmap(writable, readonly_shmem.mapped_size()));
432 << "Shouldn't be able to map memory writable.";
443 << "Shouldn't be able to duplicate the handle into a writable on
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Ddatachannel.cc347 void DataChannel::OnChannelReady(bool writable) { argument
348 if (!writable) {
352 // is writable for the first time; otherwise it means the channel was blocked
404 // If we have received buffers before the channel got writable.
/external/chromium_org/third_party/libjingle/source/talk/media/sctp/
H A Dsctpdataengine_unittest.cc156 void OnSignaled(bool writable) { argument
158 writable_ = writable;
161 bool IsSignaled(bool writable) { argument
162 return signaled_ && (writable_ == writable);
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dchannel.h108 bool writable() const { return writable_; } function in class:cricket::BaseChannel
633 // That occurs when the channel is enabled, the transport is writable,
707 void OnDataChannelReadyToSend(bool writable);
/external/chromium_org/third_party/usrsctp/usrsctplib/
H A Duser_mbuf.c805 int writable; local
838 writable = 0;
841 writable = 1;
847 if ((off == 0 || offp) && len <= n->m_len - off && writable)
894 && writable) {
902 && writable) {
/external/chromium_org/tools/gyp/test/lib/
H A DTestCmd.py60 test.writable('dir', 1)
61 test.writable('dir', None)
989 self.writable(dir, 1)
1489 def writable(self, top, write=1): member in class:TestCmd
1490 """Make the specified directory tree writable (write == 1)
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/
H A Dserialutil.py528 def writable(self): return True member in class:SerialBase

Completed in 3582 milliseconds

123