Searched defs:write (Results 101 - 117 of 117) sorted by relevance

12345

/frameworks/base/core/java/android/util/proto/
H A DProtoOutputStream.java30 * Class to write to a protobuf stream.
32 * Each write method takes an ID code from the protoc generated classes
33 * and the value to write. To make a nested object, call startObject
41 * TODO: Add a constructor that takes an OutputStream and write to that
55 * cache the size, and then write the size-prefixed buffers.
63 * So what we do here is to let the calling code write the data into a
79 * To accomplish the multiple passes, whenever we write a
80 * WIRE_TYPE_LENGTH_DELIMITED field, we write the size occupied in our
85 * write the negative of childRawSize, as a sentiel that we need to
271 public void write(lon method in class:ProtoOutputStream
406 public void write(long fieldId, float val) { method in class:ProtoOutputStream
541 public void write(long fieldId, int val) { method in class:ProtoOutputStream
676 public void write(long fieldId, long val) { method in class:ProtoOutputStream
809 public void write(long fieldId, boolean val) { method in class:ProtoOutputStream
838 public void write(long fieldId, String val) { method in class:ProtoOutputStream
867 public void write(long fieldId, byte[] val) { method in class:ProtoOutputStream
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java1868 @Override public void write(char[] buf, int offset, int count) { method in class:GLSurfaceView.LogWriter
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/store/
H A DSetterStore.java439 public void write(String projectPackage, ProcessingEnvironment processingEnvironment) method in class:SetterStore
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp379 ::write(fd, result.string(), result.size());
395 write(fd, result.string(), result.size());
402 write(fd, "\n", 1);
439 write(fd, result.string(), result.size());
538 write(fd, result.string(), result.size());
1884 ALOGV("can't chain callback and write");
2164 ssize_t MediaPlayerService::AudioOutput::write(const void* buffer, size_t size, bool blocking) function in class:android::MediaPlayerService::AudioOutput
2167 LOG_ALWAYS_FATAL_IF(mCallback != NULL, "Don't call write if supplying a callback.");
2169 //ALOGV("write(%p, %u)", buffer, size);
2171 return mTrack->write(buffe
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_DngCreator.cpp318 status_t write(const uint8_t* buf, size_t offset, size_t count);
347 status_t JniOutputStream::write(const uint8_t* buf, size_t offset, size_t count) { function in class:JniOutputStream
583 ALOGE("%s: Amount to write %u doesn't match image size %u", __FUNCTION__, count,
585 jniThrowException(mEnv, "java/lang/IllegalStateException", "Not enough data to write");
645 ALOGV("%s: Using stream per-row write for strip.", __FUNCTION__);
647 if (stream.write(rowBytes, 0, mBytesPerSample * mSamplesPerPixel * mWidth) != OK ||
650 jniThrowException(mEnv, "java/io/IOException", "Failed to write pixel data");
655 ALOGV("%s: Using stream per-pixel write for strip.", __FUNCTION__);
716 ALOGE("%s: Amount to write %u doesn't match image size %u", __FUNCTION__, count,
718 jniThrowException(mEnv, "java/lang/IllegalStateException", "Not enough data to write");
[all...]
/frameworks/base/media/java/android/media/
H A DAudioTrack.java49 * {@link #write(byte[], int, int)}, {@link #write(short[], int, int)},
50 * and {@link #write(float[], int, int, int)} methods.
54 * one of the {@code write()} methods. These are blocking and return when the data has been
201 * The write mode indicating the write operation will block until all data has been written,
203 * {@link #write(byte[], int, int, int)}, {@link #write(short[], int, int, int)},
204 * {@link #write(float[], int, int, int)}, {@link #write(ByteBuffe
2103 public int write(@NonNull byte[] audioData, int offsetInBytes, int sizeInBytes) { method in class:AudioTrack
2149 public int write(@NonNull byte[] audioData, int offsetInBytes, int sizeInBytes, method in class:AudioTrack
2214 public int write(@NonNull short[] audioData, int offsetInShorts, int sizeInShorts) { method in class:AudioTrack
2258 public int write(@NonNull short[] audioData, int offsetInShorts, int sizeInShorts, method in class:AudioTrack
2339 public int write(@NonNull float[] audioData, int offsetInFloats, int sizeInFloats, method in class:AudioTrack
2420 public int write(@NonNull ByteBuffer audioData, int sizeInBytes, method in class:AudioTrack
2493 public int write(@NonNull ByteBuffer audioData, int sizeInBytes, method in class:AudioTrack
[all...]
H A DExifInterface.java1762 * other. It's best to use {@link #setAttribute(String,String)} to set all attributes to write
2611 dataOutputStream.write(identifier);
2616 dataOutputStream.write(bytes, 0, read);
2642 dataOutputStream.write(bytes, 0, read);
3331 dataOutputStream.write(IDENTIFIER_EXIF_APP1);
3362 dataOutputStream.write(attribute.bytes);
3386 dataOutputStream.write(attribute.bytes, 0, attribute.bytes.length);
3394 dataOutputStream.write(getThumbnailBytes());
3397 // Reset the byte order to big endian in order to write remaining parts of the JPEG file.
3720 // An output stream to write EXI
3736 public void write(byte[] bytes) throws IOException { method in class:ExifInterface.ByteOrderedDataOutputStream
3740 public void write(byte[] bytes, int offset, int length) throws IOException { method in class:ExifInterface.ByteOrderedDataOutputStream
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DCall.java997 public void write(String input) throws IOException { method in class:Call.RttCall
998 mTransmitStream.write(input);
H A DConnection.java811 * Provides methods to read and write RTT data to/from the in-call app.
843 public void write(String input) throws IOException { method in class:Connection.RttTextStream
844 mPipeToInCall.write(input);
/frameworks/native/libs/binder/
H A DParcel.cpp667 //printf("Finish write of %d\n", len);
703 status_t Parcel::write(const void* data, size_t len) function in class:android::Parcel
955 ret = write(val, len * sizeof(*val));
971 ret = write(val, len * sizeof(*val));
1034 return write(str, strlen(str)+1);
1040 // only write string if its length is more than zero characters,
1044 err = write(str.string(), str.bytes()+1);
1145 ALOGD("write native handle, write dup fd failed");
1148 err = write(handl
1258 status_t Parcel::write(const FlattenableHelperInterface& val) function in class:android::Parcel
[all...]
/frameworks/av/media/libstagefright/
H A DMPEG4Writer.cpp133 // A helper class to handle faster write box with table entries
238 // @arg writer the writer to actual write to the storage
239 void write(MPEG4Writer *writer) const { function in struct:android::MPEG4Writer::Track::ListTableEntries
247 writer->write(*it, sizeof(TYPE) * ENTRY_SIZE, mElementCapacity);
250 writer->write(*it, sizeof(TYPE) * ENTRY_SIZE, nEntries);
498 ::write(fd, result.string(), result.size());
520 ::write(fd, result.string(), result.size());
805 * mWriteMoovBoxToMemory must be set to false to direct the write
834 write("free", 4);
843 write("
1296 size_t MPEG4Writer::write( function in class:MPEG4Writer
1506 void MPEG4Writer::write(const void *data, size_t size) { function in class:MPEG4Writer
[all...]
/frameworks/support/exifinterface/src/android/support/media/
H A DExifInterface.java1685 * other. It's best to use {@link #setAttribute(String,String)} to set all attributes to write
2553 dataOutputStream.write(identifier);
2558 dataOutputStream.write(bytes, 0, read);
2584 dataOutputStream.write(bytes, 0, read);
3294 dataOutputStream.write(IDENTIFIER_EXIF_APP1);
3324 dataOutputStream.write(attribute.bytes);
3348 dataOutputStream.write(attribute.bytes, 0, attribute.bytes.length);
3356 dataOutputStream.write(getThumbnailBytes());
3359 // Reset the byte order to big endian in order to write remaining parts of the JPEG file.
3688 // An output stream to write EXI
3705 public void write(byte[] bytes) throws IOException { method in class:ExifInterface.ByteOrderedDataOutputStream
3710 public void write(byte[] bytes, int offset, int length) throws IOException { method in class:ExifInterface.ByteOrderedDataOutputStream
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...

Completed in 1855 milliseconds

12345