HomeSort by relevance Sort by last modified time
    Searched defs:Write (Results 1 - 25 of 714) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/libbcc/bcinfo/Wrap/
wrapper_output.cpp 19 bool WrapperOutput::Write(const uint8_t* buffer, size_t buffer_size) {
20 // Default implementation that uses the byte write routine.
22 if (!Write(buffer[i])) return false;
file_wrapper_output.cpp 34 bool FileWrapperOutput::Write(uint8_t byte) {
38 bool FileWrapperOutput::Write(const uint8_t* buffer, size_t buffer_size) {
  /external/lzma/CPP/7zip/Archive/Common/
OutStreamWithCRC.cpp 7 STDMETHODIMP COutStreamWithCRC::Write(const void *data, UInt32 size, UInt32 *processedSize)
11 result = _stream->Write(data, size, &size);
DummyOutStream.cpp 7 STDMETHODIMP CDummyOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
12 res = _stream->Write(data, size, &realProcessedSize);
  /external/flatbuffers/python/flatbuffers/
encode.py 38 def Write(packer_type, buf, head, n):
39 """ Write encodes `n` at buf[head] using `packer_type`. """
  /prebuilts/go/darwin-x86/src/testing/iotest/
writer.go 20 func (t *truncateWriter) Write(p []byte) (n int, err error) {
24 // real write
29 n, err = t.w.Write(p[0:n])
  /prebuilts/go/linux-x86/src/testing/iotest/
writer.go 20 func (t *truncateWriter) Write(p []byte) (n int, err error) {
24 // real write
29 n, err = t.w.Write(p[0:n])
  /external/compiler-rt/test/asan/TestCases/Darwin/
segv_read_write.c 3 // RUN: not %run %t write 2>&1 | FileCheck %s --check-prefix=WRITE
10 __attribute__((noinline)) void Write(int *ptr) { *ptr = 0; }
21 Write((int *)p);
25 // WRITE: AddressSanitizer: SEGV on unknown address
26 // WRITE: The signal is caused by a WRITE memory access.
  /external/compiler-rt/test/asan/TestCases/Linux/
segv_read_write.c 3 // RUN: not %run %t write 2>&1 | FileCheck %s --check-prefix=WRITE
10 __attribute__((noinline)) void Write(int *ptr) { *ptr = 0; }
21 Write((int *)p);
25 // WRITE: AddressSanitizer: SEGV on unknown address
26 // WRITE: The signal is caused by a WRITE memory access.
  /prebuilts/go/darwin-x86/src/go/token/
serialize.go 49 // Write calls encode to serialize the file set s.
50 func (s *FileSet) Write(encode func(interface{}) error) error {
  /prebuilts/go/linux-x86/src/go/token/
serialize.go 49 // Write calls encode to serialize the file set s.
50 func (s *FileSet) Write(encode func(interface{}) error) error {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/Include/Ppi/
EcpPciCfg.h 27 A PCI read and write operation.
55 ECP_PEI_PCI_CFG_PPI_IO Write;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Ppi/EcpPciCfg/
EcpPciCfg.h 44 ECP_PEI_PCI_CFG_PPI_IO Write;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/FaultTolerantWriteLite/
FaultTolerantWriteLite.h 18 This is a simple fault tolerant write driver, based on PlatformFd library.
19 And it only supports write BufferSize <= SpareAreaLength.
52 Starts a target block update. This records information about the write
53 in fault tolerant storage and will complete the write in a recoverable
64 Length - The number of bytes to write to the target block.
65 Buffer - The data to write.
71 EFI_BAD_BUFFER_SIZE - The write would span a block boundary,
74 EFI_NOT_READY - The last write has not been completed.
83 EFI_FTW_LITE_WRITE Write;
  /external/bsdiff/
memory_file.cc 23 bool MemoryFile::Write(const void* buf, size_t count, size_t* bytes_written) {
sink_file.cc 16 bool SinkFile::Write(const void* buf, size_t count, size_t* bytes_written) {
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/
module.py 30 def Write(self):
31 """Write modifications to the file."""
39 f.write(string)
  /external/chromium-trace/catapult/devil/devil/android/
device_blacklist.py 45 def Write(self, blacklist):
49 blacklist: list of bad devices to write to the blacklist file.
73 self.Write(blacklist)
  /external/compiler-rt/test/asan/TestCases/Windows/
crash_read_write.cc 3 // RUN: not %run %t write 2>&1 | FileCheck %s --check-prefix=WRITE
10 __attribute__((noinline)) void Write(int *ptr) { *ptr = 0; }
24 Write((int *)p);
28 // WRITE: AddressSanitizer: access-violation on unknown address
29 // WRITE: The signal is caused by a WRITE memory access.
  /external/compiler-rt/test/profile/
instrprof-without-libc.c 33 int Write = __llvm_profile_write_buffer(Buffer);
34 if (Write)
35 return Write;
38 // Don't write it out. Since we're checking the symbols, we don't have libc
44 // Actually write it out so we can FileCheck the output.
  /external/google-breakpad/src/processor/
simple_serializer.h 53 // Write 'item' to memory location 'dest', and return to the "end" address of
55 static char *Write(const Type &item, char *dest) {
  /external/libmojo/ipc/
ipc_mojo_param_traits.cc 19 void ParamTraits<mojo::MessagePipeHandle>::Write(base::Pickle* m,
  /external/libmojo/third_party/catapult/devil/devil/android/
device_blacklist.py 36 def Write(self, blacklist):
40 blacklist: list of bad devices to write to the blacklist file.
64 self.Write(blacklist)
  /external/lzma/CPP/7zip/Common/
OffsetStream.cpp 16 STDMETHODIMP COffsetOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
18 return _stream->Write(data, size, processedSize);
  /external/sfntly/cpp/src/sfntly/port/
memory_output_stream.cc 27 void MemoryOutputStream::Write(ByteVector* buffer) {
31 void MemoryOutputStream::Write(ByteVector* buffer,
46 void MemoryOutputStream::Write(byte_t* buffer, int32_t offset, int32_t length) {
57 void MemoryOutputStream::Write(byte_t b) {

Completed in 489 milliseconds

1 2 3 4 5 6 7 8 91011>>