HomeSort by relevance Sort by last modified time
    Searched defs:write (Results 301 - 325 of 4398) sorted by null

<<11121314151617181920>>

  /external/smali/util/src/main/java/org/jf/util/
StringUtils.java 41 writer.write('\\');
43 writer.write(c);
47 case '\n': writer.write("\\n"); return;
48 case '\r': writer.write("\\r"); return;
49 case '\t': writer.write("\\t"); return;
53 writer.write("\\u");
54 writer.write(Character.forDigit(c >> 12, 16));
55 writer.write(Character.forDigit((c >> 8) & 0x0f, 16));
56 writer.write(Character.forDigit((c >> 4) & 0x0f, 16));
57 writer.write(Character.forDigit(c & 0x0f, 16))
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
InputOutputExceptionTest.java 76 public void write(char[] cbuf, int off, int len) throws IOException { method in class:InputOutputExceptionTest.BrokenWriter
  /external/syslinux/gpxe/src/interface/efi/
efi_io.c 15 * along with this program; if not, write to the Free Software
56 * they write. No-one should ever be able to make I/O this
100 * Write to device
102 * @v data Value to write
108 EFI_CPU_IO_PROTOCOL_IO_MEM write; local
111 write = ( IS_PORT_ADDRESS ( io_addr ) ?
112 cpu_io->Io.Write : cpu_io->Mem.Write );
114 if ( ( efirc = write ( cpu_io, efi_width ( size ),
117 DBG ( "EFI I/O write at %p failed: %s\n"
156 EFI_CPU_IO_PROTOCOL_IO_MEM write; local
    [all...]
  /external/tensorflow/tensorflow/python/lib/io/
tf_record.py 90 """A class to write records to a TFRecords file.
121 def write(self, record): member in class:TFRecordWriter
122 """Write a string record to the file.
  /frameworks/av/media/img_utils/src/
EndianUtils.cpp 48 status_t EndianOutput::write(const uint8_t* buf, size_t offset, size_t count) { function in class:android::img_utils::EndianOutput
50 if((res = mOutput->write(buf, offset, count)) == OK) {
56 status_t EndianOutput::write(const int8_t* buf, size_t offset, size_t count) { function in class:android::img_utils::EndianOutput
57 return write(reinterpret_cast<const uint8_t*>(buf), offset, count);
61 status_t EndianOutput::write(const _type_* buf, size_t offset, size_t count) { \
72 status_t EndianOutput::write(const float* buf, size_t offset, size_t count) { function in class:android::img_utils::EndianOutput
77 status_t EndianOutput::write(const double* buf, size_t offset, size_t count) { function in class:android::img_utils::EndianOutput
  /frameworks/av/media/libeffects/dynamicsproc/dsp/
SHCircularBuffer.h 39 inline void write(T value) { function in class:SHCircularBuffer
47 ALOGE("Error: SHCircularBuffer no space to write. allocated size %zu ", getSize());
  /frameworks/av/media/libnbaio/
AudioStreamOutSink.cpp 59 ssize_t AudioStreamOutSink::write(const void *buffer, size_t count) function in class:android::AudioStreamOutSink
66 status_t ret = mStream->write(buffer, count * mFrameSize, &written);
  /frameworks/av/media/mtp/
MtpDevHandle.cpp 47 int MtpDevHandle::write(const void *data, size_t len) { function in class:android::MtpDevHandle
48 return ::write(mFd, data, len);
MtpEventPacket.cpp 39 int MtpEventPacket::write(IMtpHandle *h) { function in class:android::MtpEventPacket
  /frameworks/base/cmds/statsd/tools/loadtest/src/com/android/statsd/loadtest/
SequencePusher.java 80 StatsLog.write(StatsLog.BATTERY_LEVEL_CHANGED, 50 + i /* battery_level */);
86 StatsLog.write(StatsLog.BLE_SCAN_RESULT_RECEIVED, i /* uid */,
92 StatsLog.write(StatsLog.CHARGING_STATE_CHANGED,
99 StatsLog.write(StatsLog.GPS_SCAN_STATE_CHANGED, i /* uid */,
105 StatsLog.write(StatsLog.CHARGING_STATE_CHANGED,
112 StatsLog.write(StatsLog.GPS_SCAN_STATE_CHANGED, i /* uid */,
117 StatsLog.write(StatsLog.SCREEN_STATE_CHANGED,
122 StatsLog.write(StatsLog.AUDIO_STATE_CHANGED, i /* uid */,
127 StatsLog.write(StatsLog.SCREEN_STATE_CHANGED,
132 StatsLog.write(StatsLog.AUDIO_STATE_CHANGED, i /* uid */
    [all...]
  /frameworks/base/core/java/android/util/
LogWriter.java 64 @Override public void write(char[] buf, int offset, int count) { method in class:LogWriter
  /frameworks/base/core/java/android/util/proto/
ProtoUtils.java 23 * This class contains a list of helper functions to write common proto in
35 proto.write(AggStats.MIN, min);
36 proto.write(AggStats.AVERAGE, average);
37 proto.write(AggStats.MAX, max);
47 proto.write(Duration.START_MS, startMs);
48 proto.write(Duration.END_MS, endMs);
53 * Helper function to write bit-wise flags to proto as repeated enums
65 proto.write(fieldId, protoEnums[i]);
69 proto.write(fieldId, protoEnums[i]);
  /frameworks/base/core/java/com/android/internal/util/dump/
DumpUtils.java 26 * Write a string to a proto if the string is not {@code null}.
28 * @param proto The proto to write to
31 * @param string The string to write
36 proto.write(idName, id, string);
41 * Write a {@link ComponentName} to a proto.
43 * @param proto The proto to write to
46 * @param component The component name to write
51 proto.write("package_name", ComponentNameProto.PACKAGE_NAME, component.getPackageName());
52 proto.write("class_name", ComponentNameProto.CLASS_NAME, component.getClassName());
  /frameworks/base/media/jni/soundpool/
SoundPoolThread.cpp 25 void SoundPoolThread::write(SoundPoolMsg msg) { function in class:android::SoundPoolThread
102 write(SoundPoolMsg(SoundPoolMsg::LOAD_SAMPLE, sampleID));
  /frameworks/layoutlib/create/src/com/android/tools/layoutlib/java/
UnsafeByteSequence.java 43 * Moves the write pointer back to the beginning of the sequence,
50 public void write(byte[] buffer, int offset, int length) { method in class:UnsafeByteSequence
60 public void write(int b) { method in class:UnsafeByteSequence
  /frameworks/layoutlib/remote/common/src/com/android/layout/remote/util/
SerializableImageImpl.java 42 ImageIO.write(mBufferedImage, "png", out);
  /frameworks/native/libs/sensor/
BitTube.cpp 105 ssize_t BitTube::write(void const* vaddr, size_t size) function in class:android::BitTube
147 ssize_t size = tube->write(vaddr, count*objSize);
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
CellularNetworkTestUtil.java 70 stream.write((byte) ieiType);
72 stream.write((byte) ((plmnsSize + 1) & CellularNetwork.IEI_CONTENT_LENGTH_MASK));
73 stream.write((byte) plmnList.length);
75 stream.write(plmn);
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
QuotedPrintable.java 58 buffer.write((char) ((u << 4) + l));
63 buffer.write(b);
  /frameworks/support/compat/src/main/java/androidx/core/util/
LogWriter.java 55 @Override public void write(char[] buf, int offset, int count) { method in class:LogWriter
  /hardware/libhardware/modules/sensors/dynamic_sensor/
RingBuffer.cpp 36 ssize_t RingBuffer::write(const sensors_event_t *ev, size_t size) { function in class:android::RingBuffer
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSSerializer.java 50 * <code>LSSerializer.write</code>, outputs the entity expansion but no
269 * <code>LSSerializer.write</code> for details on how to find the output
393 public boolean write(Node nodeArg, method in interface:LSSerializer
398 * A convenience method that acts as if <code>LSSerializer.write</code>
403 * @param uri The URI to write to.
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidOutputStreamWriterTest.java 33 a.write(str, 0, 4);
34 a.write('A');
  /libcore/ojluni/src/main/java/java/io/
DataOutput.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
40 * write bytes, it is generally true that if
60 void write(int b) throws IOException; method in interface:DataOutput
75 void write(byte b[]) throws IOException; method in interface:DataOutput
94 * @param len the number of bytes to write.
97 void write(byte b[], int off, int len) throws IOException; method in interface:DataOutput
121 * does exactly the same thing as <code>write</code>
FilterOutputStream.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
67 * The <code>write</code> method of <code>FilterOutputStream</code>
68 * calls the <code>write</code> method of its underlying output stream,
69 * that is, it performs <tt>out.write(b)</tt>.
71 * Implements the abstract <tt>write</tt> method of <tt>OutputStream</tt>.
76 public void write(int b) throws IOException { method in class:FilterOutputStream
77 out.write(b);
83 * The <code>write</code> method of <code>FilterOutputStream</code>
84 * calls its <code>write</code> method of three arguments with the
89 * <code>write</code> method of its underlying stream with the singl
96 public void write(byte b[]) throws IOException { method in class:FilterOutputStream
97 write(b, 0, b.length); method
120 public void write(byte b[], int off, int len) throws IOException { method in class:FilterOutputStream
    [all...]

Completed in 617 milliseconds

<<11121314151617181920>>