HomeSort by relevance Sort by last modified time
    Searched refs:Write (Results 251 - 275 of 2248) sorted by null

<<11121314151617181920>>

  /external/webrtc/webrtc/system_wrappers/source/
file_impl.h 47 bool Write(const void* buf, size_t length) override;
  /frameworks/base/core/java/android/annotation/
RequiresPermission.java 51 * Example of requiring separate read and write permissions for a content provider:
54 * {@literal @}RequiresPermission.Write(@RequiresPermission(WRITE_HISTORY_BOOKMARKS))
126 * Specifies that the given permission is required for write operations.
134 @interface Write {
  /frameworks/base/tools/aapt2/format/
Archive.h 52 // Starts a new entry and allows caller to write bytes to it sequentially.
53 // Only use StartEntry if code you do not control needs to write to a CopyingOutputStream.
63 virtual bool Write(const void* buffer, int size) = 0;
  /frameworks/support/annotations/src/main/java/androidx/annotation/
RequiresPermission.java 49 * Example of requiring separate read and write permissions for a content provider:
52 * &#64;RequiresPermission.Write(@RequiresPermission(WRITE_HISTORY_BOOKMARKS))
122 * Specifies that the given permission is required for write operations.
130 @interface Write {
  /prebuilts/go/darwin-x86/doc/progs/
interface.go 28 // Writer is the interface that wraps the basic Write method.
30 Write(p []byte) (n int, err error)
  /prebuilts/go/darwin-x86/src/cmd/internal/bio/
must.go 29 func (w mustWriter) Write(b []byte) (int, error) {
30 n, err := w.w.Write(b)
  /prebuilts/go/darwin-x86/src/testing/iotest/
logger.go 17 func (l *writeLogger) Write(p []byte) (n int, err error) {
18 n, err = l.w.Write(p)
28 // that it logs (using log.Printf) each write to standard error,
  /prebuilts/go/darwin-x86/test/bench/go1/
gzip_test.go 25 c.Write(jsongunz)
32 if _, err := c.Write(jsongunz); err != nil {
  /prebuilts/go/linux-x86/doc/progs/
interface.go 28 // Writer is the interface that wraps the basic Write method.
30 Write(p []byte) (n int, err error)
  /prebuilts/go/linux-x86/src/cmd/internal/bio/
must.go 29 func (w mustWriter) Write(b []byte) (int, error) {
30 n, err := w.w.Write(b)
  /prebuilts/go/linux-x86/src/testing/iotest/
logger.go 17 func (l *writeLogger) Write(p []byte) (n int, err error) {
18 n, err = l.w.Write(p)
28 // that it logs (using log.Printf) each write to standard error,
  /prebuilts/go/linux-x86/test/bench/go1/
gzip_test.go 25 c.Write(jsongunz)
32 if _, err := c.Write(jsongunz); err != nil {
  /system/connectivity/wifilogd/
os.h 96 virtual std::tuple<size_t, Errno> Write(int fd, NONNULL const void* buf,
raw_os.cpp 50 ssize_t RawOs::Write(int fd, const void* buf, size_t buflen) {
51 return write(fd, buf, buflen);
  /system/core/adb/
shell_service.h 100 bool Write(Id id, size_t length);
shell_service_protocol.cpp 56 bool ShellProtocol::Write(Id id, size_t length) {
transport.h 69 // Read/Write a packet. These functions are concurrently called from a transport's reader/writer
72 virtual bool Write(apacket* packet) = 0;
84 bool Write(apacket* packet) override final;
97 bool Write(apacket* packet) override final;
121 int Write(apacket* p);
  /system/tools/aidl/
ast_java_unittest.cpp 57 a_class.Write(writer.get());
  /system/tpm/attestation/server/
key_store.h 43 virtual bool Write(const std::string& username,
  /system/update_engine/
fake_file_writer.h 28 // calls to Open(), Close(), but not do any work. All calls to Write()
44 virtual ssize_t Write(const void* bytes, size_t count) {
  /system/update_engine/payload_consumer/
fake_extent_writer.h 42 bool Write(const void* bytes, size_t count) override {
file_writer.cc 31 bool DirectFileWriter::Write(const void* bytes, size_t count) {
37 ssize_t rc = write(fd_, char_bytes + bytes_written,
  /tools/metalava/stub-annotations/src/main/java/androidx/annotation/
RequiresPermission.java 78 * Specifies that the given permission is required for write operations.
86 @interface Write {
  /device/google/cuttlefish_common/common/vsoc/lib/
circqueue_test.cpp 61 return layout->byte_queue.Write(region, buffer_in, bytes);
73 return layout->packet_queue.Write(region, buffer_in, packet_size);
87 total_read += layout->byte_queue.Write(region, buffer_out, remaining);
98 int ret = layout->byte_queue.Write(region, buffer_in, chuck_size);
103 total_write += layout->byte_queue.Write(region, buffer_in, remaining);
127 int ret = layout->packet_queue.Write(region, buffer_in, packet_size);
157 // Write expected bytes in so that we can clean up properly.
170 // Now the queue is full, any further write would block.
188 layout->byte_queue.Write(&this->region_, buffer_in, num_bytes);
205 // Test multiple bytes read/write
    [all...]
  /device/google/cuttlefish_common/common/vsoc/shm/
circqueue.h 112 * may return less data than requested. Writes will always write all of the
126 * Write all of the given bytes into the queue. If non_blocking isn't set the
130 * write. -EWOULDBLOCK: If non_blocking is true and there is not enough free
133 intptr_t Write(RegionSignalingInterface* r, const char* buffer_in,
148 * Each return from read corresponds to a call to write and returns all of the
149 * data from that corresponding Write().
170 * write all the data -EWOULDBLOCK will be returned.
172 intptr_t Write(RegionSignalingInterface* r, const char* buffer_in,
181 * write all the data -EWOULDBLOCK will be returned.

Completed in 753 milliseconds

<<11121314151617181920>>