Searched defs:write (Results 1 - 25 of 117) sorted by last modified time

12345

/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/ ...
/frameworks/support/buildSrc/src/main/groovy/android/support/doclava/
H A DDoclavaJavadocOptionFileOption.java41 public void write(JavadocOptionFileWriterContext writerContext) throws IOException { method in class:DoclavaJavadocOptionFileOption
52 writerContext.write(" ");
H A DDoclavaMultilineJavadocOptionFileOption.java62 public void write(JavadocOptionFileWriterContext writerContext) throws IOException { method in class:DoclavaMultilineJavadocOptionFileOption
74 writerContext.write(" ");
/frameworks/support/compat/java/android/support/v4/util/
H A DLogWriter.java55 @Override public void write(char[] buf, int offset, int count) { method in class:LogWriter
/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/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
H A DMediaStoreSaver.java37 void write(OutputStream imageOut) throws IOException; method in interface:MediaStoreSaver.StreamWriter
46 public void write(OutputStream imageOut) {
77 source.write(imageOut);
/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
H A DMediaStoreSaver.java37 void write(OutputStream imageOut) throws IOException; method in interface:MediaStoreSaver.StreamWriter
46 public void write(OutputStream imageOut) {
77 source.write(imageOut);
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSimpleSessionDescription.java139 mFields.write(buffer);
141 media.write(buffer);
368 private void write(StringBuilder buffer) { method in class:SimpleSessionDescription.Media
378 super.write(buffer);
513 private void write(StringBuilder buffer) { method in class:SimpleSessionDescription.Fields
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiConfigStore.java111 * Flag to indicate if there is a buffered write pending.
123 Log.wtf(TAG, "Buffered write failed", e);
237 * API to write the data provided by registered store data to config stores.
241 * @param forceSync boolean to force write the config stores now. if false, the writes are
244 public void write(boolean forceSync) method in class:WifiConfigStore
246 // Serialize the provided data and send it to the respective stores. The actual write will
255 // Every write provides a new snapshot to be persisted, so |forceSync| flag overrides any
298 * Helper method to start a buffered write alarm if one doesn't already exist.
310 * Helper method to stop a buffered write alarm if one exists.
320 * Helper method to actually perform the writes to the file. This flushes out any write dat
[all...]
/frameworks/native/include/binder/
H A DParcel.h108 status_t write(const void* data, size_t len);
130 // Take a UTF8 encoded string, convert to UTF16, write it to the parcel.
175 status_t write(const Flattenable<T>& val);
178 status_t write(const LightFlattenable<T>& val);
540 status_t write(const FlattenableHelperInterface& val);
569 status_t Parcel::write(const Flattenable<T>& val) { function in class:android::Parcel
571 return write(helper);
575 status_t Parcel::write(const LightFlattenable<T>& val) { function in class:android::Parcel
H A DSafeInterface.h46 status_t write(Parcel* parcel, bool b) const { function in namespace:android::SafeInterface
58 typename std::enable_if<std::is_enum<E>::value, status_t>::type write(Parcel* parcel, function in namespace:android
60 return write(parcel, static_cast<typename std::underlying_type<E>::type>(e));
68 typename std::enable_if<std::is_base_of<Flattenable<T>, T>::value, status_t>::type write( function
70 return callParcel("write(Flattenable)", [&]() { return parcel->write(t); });
79 typename std::enable_if<std::is_base_of<Flattenable<T>, T>::value, status_t>::type write(
81 return callParcel("write(sp<Flattenable>)", [&]() { return parcel->write(*(t.get())); });
89 typename std::enable_if<std::is_base_of<LightFlattenable<T>, T>::value, status_t>::type write(
[all...]
/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/native/libs/binder/include/binder/
H A DParcel.h108 status_t write(const void* data, size_t len);
130 // Take a UTF8 encoded string, convert to UTF16, write it to the parcel.
175 status_t write(const Flattenable<T>& val);
178 status_t write(const LightFlattenable<T>& val);
540 status_t write(const FlattenableHelperInterface& val);
569 status_t Parcel::write(const Flattenable<T>& val) { function in class:android::Parcel
571 return write(helper);
575 status_t Parcel::write(const LightFlattenable<T>& val) { function in class:android::Parcel
H A DSafeInterface.h46 status_t write(Parcel* parcel, bool b) const { function in namespace:android::SafeInterface
58 typename std::enable_if<std::is_enum<E>::value, status_t>::type write(Parcel* parcel, function in namespace:android
60 return write(parcel, static_cast<typename std::underlying_type<E>::type>(e));
68 typename std::enable_if<std::is_base_of<Flattenable<T>, T>::value, status_t>::type write( function
70 return callParcel("write(Flattenable)", [&]() { return parcel->write(t); });
79 typename std::enable_if<std::is_base_of<Flattenable<T>, T>::value, status_t>::type write(
81 return callParcel("write(sp<Flattenable>)", [&]() { return parcel->write(*(t.get())); });
89 typename std::enable_if<std::is_base_of<LightFlattenable<T>, T>::value, status_t>::type write(
[all...]
/frameworks/native/libs/gui/
H A DBitTube.cpp89 ssize_t BitTube::write(void const* vaddr, size_t size) { function in class:android::gui::BitTube
134 ssize_t size = tube->write(vaddr, count * objSize);
H A DLayerState.cpp25 status_t layer_state_t::write(Parcel& output) const function in class:android::layer_state_t
40 output.write(crop);
41 output.write(finalCrop);
48 output.write(transparentRegion);
84 status_t ComposerState::write(Parcel& output) const { function in class:android::ComposerState
86 return state.write(output);
105 status_t DisplayState::write(Parcel& output) const { function in class:android::DisplayState
111 output.write(viewport);
112 output.write(frame);
/frameworks/native/libs/sensor/
H A DBitTube.cpp105 ssize_t BitTube::write(void const* vaddr, size_t size) function in class:android::BitTube
147 ssize_t size = tube->write(vaddr, count*objSize);
H A DSensorEventQueue.cpp60 ssize_t SensorEventQueue::write(const sp<BitTube>& tube, function in class:android::SensorEventQueue
/frameworks/native/opengl/tools/glgen2/registry/
H A Dreg.py27 def write( *args, **kwargs ): function
30 file.write( ' '.join([str(arg) for arg in args]) )
31 file.write( end )
211 # filename - name of file to generate, or None to write to stdout.
328 # errFile, warnFile, diagFile - file handles to write errors,
329 # warnings, diagnostics to. May be None to not write.
337 # beginFeature(interface, emit) - write interface for a feature
340 # emit - actually write to the header only when True
363 # logMsg - write a message of different categories to different
374 write('ERRO
[all...]
/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/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/compile/mclinker/lib/Support/
H A DFileHandle.cpp179 bool FileHandle::write(const void* pMemBuffer, function in class:mcld::FileHandle

Completed in 8661 milliseconds

12345