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

123456

/frameworks/support/compat/src/main/java/androidx/core/util/
H A DLogWriter.java55 @Override public void write(char[] buf, int offset, int count) { method in class:LogWriter
/frameworks/support/exifinterface/src/main/java/androidx/exifinterface/media/
H A DExifInterface.java690 * <p>A tag for Exif users to write keywords or comments on the image besides those in
4275 * other. It's best to use {@link #setAttribute(String,String)} to set all attributes to write
5192 dataOutputStream.write(identifier);
5197 dataOutputStream.write(bytes, 0, read);
5223 dataOutputStream.write(bytes, 0, read);
5938 dataOutputStream.write(IDENTIFIER_EXIF_APP1);
5968 dataOutputStream.write(attribute.bytes);
5992 dataOutputStream.write(attribute.bytes, 0, attribute.bytes.length);
6000 dataOutputStream.write(getThumbnailBytes());
6003 // Reset the byte order to big endian in order to write remainin
6349 public void write(byte[] bytes) throws IOException { method in class:ExifInterface.ByteOrderedDataOutputStream
6354 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/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsRttTextHandler.java32 void write(String s); method in interface:ImsRttTextHandler.NetworkWriter
133 mRttTextStream.write(messageToIncall);
169 mNetworkWriter.write(stringToSend);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
H A DImsRttTextHandlerTest.java52 public synchronized void write(String s) { method in class:ImsRttTextHandlerTest.MockNetworkWriter
110 mPipeToHandler.write("abcd");
133 mPipeToHandler.write("abcd");
148 mPipeToHandler.write("efgh");
152 // Wait for the handler to write to the mock network writer
176 mPipeToHandler.write(String.valueOf(c));
183 // Make sure that the ordering is correct and that there was only one write
194 mPipeToHandler.write(toSend);
/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.java115 * Flag to indicate if there is a buffered write pending.
127 Log.wtf(TAG, "Buffered write failed", e);
241 * API to write the data provided by registered store data to config stores.
245 * @param forceSync boolean to force write the config stores now. if false, the writes are
248 public void write(boolean forceSync) method in class:WifiConfigStore
250 // Serialize the provided data and send it to the respective stores. The actual write will
259 // Every write provides a new snapshot to be persisted, so |forceSync| flag overrides any
302 * Helper method to start a buffered write alarm if one doesn't already exist.
314 * Helper method to stop a buffered write alarm if one exists.
324 * Helper method to actually perform the writes to the file. This flushes out any write dat
[all...]
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/
H A DEthernetConfigStore.java58 public void write(String iface, IpConfiguration config) { method in class:EthernetConfigStore
/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);
542 status_t write(const FlattenableHelperInterface& val);
571 status_t Parcel::write(const Flattenable<T>& val) { function in class:android::Parcel
573 return write(helper);
577 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.cpp668 //printf("Finish write of %d\n", len);
704 status_t Parcel::write(const void* data, size_t len) function in class:android::Parcel
956 ret = write(val, len * sizeof(*val));
972 ret = write(val, len * sizeof(*val));
1035 return write(str, strlen(str)+1);
1041 // only write string if its length is more than zero characters,
1045 err = write(str.string(), str.bytes()+1);
1146 ALOGD("write native handle, write dup fd failed");
1149 err = write(handl
1259 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);
542 status_t write(const FlattenableHelperInterface& val);
571 status_t Parcel::write(const Flattenable<T>& val) { function in class:android::Parcel
573 return write(helper);
577 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);
52 output.write(transparentRegion);
92 status_t ComposerState::write(Parcel& output) const { function in class:android::ComposerState
94 return state.write(output);
113 status_t DisplayState::write(Parcel& output) const { function in class:android::DisplayState
119 output.write(viewport);
120 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/ml/nn/tools/
H A Dsync_enums_to_hal.py76 def write(self): member in class:HeaderReader
78 f.write(self.get_contents())
242 types10.write()
243 types11.write()
/frameworks/layoutlib/create/src/com/android/tools/layoutlib/java/
H A DUnsafeByteSequence.java43 * 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/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. ...

Completed in 393 milliseconds

123456