Searched refs:write (Results 51 - 75 of 577) sorted by relevance

1234567891011>>

/frameworks/native/opengl/tools/glgen2/registry/
H A Dgenheaders.py53 write('Enabling debug (-debug)', file=sys.stderr)
56 write('Enabling dump (-dump)', file=sys.stderr)
59 write('Disabling inclusion protection in output headers', file=sys.stderr)
62 write('Enabling profiling (-profile)', file=sys.stderr)
67 write('Using registry ', regFilename, file=sys.stderr)
69 write('Enabling timing (-time)', file=sys.stderr)
72 write('Enabling group validation (-validate)', file=sys.stderr)
75 write('Unrecognized argument:', arg, file=sys.stderr)
79 write('Using target', target, file=sys.stderr)
90 write(ms
[all...]
/frameworks/av/media/img_utils/include/img_utils/
H A DEndianUtils.h58 * Wrap the given Output. Calling write methods will result in
91 // TODO: switch write methods to uint32_t instead of size_t,
95 * The following methods will write elements from given input buffer to the output.
102 virtual status_t write(const uint8_t* buf, size_t offset, size_t count);
104 virtual status_t write(const int8_t* buf, size_t offset, size_t count);
106 virtual status_t write(const uint16_t* buf, size_t offset, size_t count);
108 virtual status_t write(const int16_t* buf, size_t offset, size_t count);
110 virtual status_t write(const uint32_t* buf, size_t offset, size_t count);
112 virtual status_t write(const int32_t* buf, size_t offset, size_t count);
114 virtual status_t write(cons
[all...]
H A DTiffEntryImpl.h126 BAIL_ON_FAIL(out->write(&mTag, 0, 1), ret);
127 BAIL_ON_FAIL(out->write(&mType, 0, 1), ret);
128 BAIL_ON_FAIL(out->write(&mCount, 0, 1), ret);
132 BAIL_ON_FAIL(out->write(&offset, 0, 1), ret);
143 BAIL_ON_FAIL(out->write(mData.array(), 0, count), ret);
170 BAIL_ON_FAIL(out->write(mData.array(), 0, count), ret);
186 BAIL_ON_FAIL(out->write(&mTag, 0, 1), ret);
187 BAIL_ON_FAIL(out->write(&mType, 0, 1), ret);
188 BAIL_ON_FAIL(out->write(&mCount, 0, 1), ret);
190 BAIL_ON_FAIL(out->write(
[all...]
H A DByteArrayOutput.h55 virtual status_t write(const uint8_t* buf, size_t offset, size_t count);
71 * open, write, or close is called after this method.
H A DFileOutput.h35 virtual status_t write(const uint8_t* buf, size_t offset, size_t count);
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioSourceDescriptor.cpp42 write(fd, result.string(), result.size());
54 write(fd, buffer, strlen(buffer));
57 write(fd, buffer, strlen(buffer));
/frameworks/base/services/core/java/com/android/server/net/
H A DDelayedDiskWrite.java40 public void write(final String filePath, final Writer w) { method in class:DelayedDiskWrite
41 write(filePath, w, true);
44 public void write(final String filePath, final Writer w, final boolean open) { method in class:DelayedDiskWrite
49 /* Do a delayed write to disk on a separate handler thread */
/frameworks/base/tools/preload/
H A DWritePreloadedClassFile.java61 out.write("# Classes which are preloaded by"
63 out.write("# Automatically generated by frameworks/base/tools/preload/"
65 out.write("# MIN_LOAD_TIME_MICROS=" + MIN_LOAD_TIME_MICROS + "\n");
66 out.write("# MIN_PROCESSES=" + MIN_PROCESSES + "\n");
121 out.write(loadedClass.name + "\n");
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatService.java553 buf.write(tag);
554 buf.write(0x03); // length
555 buf.write(cmdDet.commandNumber);
556 buf.write(cmdDet.typeOfCommand);
557 buf.write(cmdDet.commandQualifier);
567 buf.write(tag);
568 buf.write(0x02); // length
569 buf.write(DEV_ID_TERMINAL); // source device id
570 buf.write(DEV_ID_UICC); // destination device id
577 buf.write(ta
[all...]
/frameworks/base/core/java/android/util/jar/
H A DStrictJarManifest.java173 public void write(OutputStream os) throws IOException { method in class:StrictJarManifest
174 write(this, os);
249 * the manifest to write out.
251 * The {@code OutputStream} to write to.
255 static void write(StrictJarManifest manifest, OutputStream out) throws IOException { method in class:StrictJarManifest
275 out.write(LINE_SEPARATOR);
286 out.write(LINE_SEPARATOR);
293 os.write(nameString.getBytes(StandardCharsets.US_ASCII));
294 os.write(VALUE_SEPARATOR);
306 os.write(bBu
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DCameraStressTest.java90 mOutput.write(this.getName() + "\n");
106 mOutput.write("\n\n");
139 mOutput.write("Total number of loops: " +
142 mOutput.write("No of loop: ");
159 mOutput.write(Integer.toString(j + i * NUMBER_OF_SCENE_MODE_LOOPS));
161 mOutput.write(", " + (j + i * NUMBER_OF_SCENE_MODE_LOOPS));
187 mOutput.write("Total number of loops: " + NUMBER_OF_ZOOM_LOOPS + "\n");
188 mOutput.write("No of loops: ");
218 mOutput.write(Integer.toString(i));
220 mOutput.write(", "
[all...]
/frameworks/native/libs/gui/
H A DSensor.cpp444 FlattenableUtils::write(buffer, size, mVersion);
445 FlattenableUtils::write(buffer, size, mHandle);
446 FlattenableUtils::write(buffer, size, mType);
447 FlattenableUtils::write(buffer, size, mMinValue);
448 FlattenableUtils::write(buffer, size, mMaxValue);
449 FlattenableUtils::write(buffer, size, mResolution);
450 FlattenableUtils::write(buffer, size, mPower);
451 FlattenableUtils::write(buffer, size, mMinDelay);
452 FlattenableUtils::write(buffer, size, mFifoReservedEventCount);
453 FlattenableUtils::write(buffe
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DLineBreakBufferedWriter.java65 * @param out The writer to write to.
75 * @param out The writer to write to.
98 public void write(int c) { method in class:LineBreakBufferedWriter
108 write(new char[] { (char)c }, 0 ,1);
114 write(lineSeparator);
118 public void write(char[] buf, int off, int len) { method in class:LineBreakBufferedWriter
172 public void write(String s, int off, int len) { method in class:LineBreakBufferedWriter
285 * Helper method, write the given part of the buffer, [start,length), to the output.
290 super.write(buffer, 0, length);
/frameworks/av/services/audioflinger/
H A DSpdifStreamOut.cpp119 return AudioStreamOut::write(buffer, bytes);
122 ssize_t SpdifStreamOut::write(const void* buffer, size_t numBytes) function in class:android::SpdifStreamOut
125 return mSpdifEncoder.write(buffer, numBytes);
/frameworks/base/core/java/android/util/
H A DBase64OutputStream.java40 * @param out the OutputStream to write the encoded data to
53 * @param out the OutputStream to write the encoded data to
70 public void write(int b) throws IOException { method in class:Base64OutputStream
72 // bytes, we buffer up calls to write(int) in an internal
80 // internal buffer full; write it out.
88 * Flush any buffered data from calls to write(int). Needed
89 * before doing a write(byte[], int, int) or a close().
98 public void write(byte[] b, int off, int len) throws IOException { method in class:Base64OutputStream
141 out.write(coder.output, 0, coder.op);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
H A DDurableUtils.java34 d.write(new DataOutputStream(out));
55 Log.w(TAG, "Failed to write", e);
87 out.write(1);
90 out.write(0);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DOMAConstants.java44 out.write(prefix);
45 out.write(octets);
49 out.write(INDENT, 0, level);
/frameworks/av/include/media/nbaio/
H A DAudioStreamOutSink.h44 // This is an over-estimate, and could dupe the caller into making a blocking write()
48 virtual ssize_t write(const void *buffer, size_t count);
/frameworks/av/media/img_utils/src/
H A DByteArrayOutput.cpp32 status_t ByteArrayOutput::write(const uint8_t* buf, size_t offset, size_t count) { function in class:android::img_utils::ByteArrayOutput
34 ALOGE("%s: Failed to write to ByteArrayOutput.", __FUNCTION__);
/frameworks/av/media/libnbaio/
H A DLibsndfileSink.cpp37 ssize_t LibsndfileSink::write(const void *buffer, size_t count) function in class:android::LibsndfileSink
/frameworks/base/cmds/interrupter/
H A Dinterrupter.c51 DEFINE_INTERCEPT(write, ssize_t, int, const void*, size_t);
/frameworks/base/core/java/android/content/res/
H A DAssetFileDescriptor.java300 public void write(byte[] buffer, int offset, int count) throws IOException { method in class:AssetFileDescriptor.AutoCloseOutputStream
304 super.write(buffer, offset, count);
309 super.write(buffer, offset, count);
313 public void write(byte[] buffer) throws IOException { method in class:AssetFileDescriptor.AutoCloseOutputStream
318 super.write(buffer);
323 super.write(buffer);
327 public void write(int oneByte) throws IOException { method in class:AssetFileDescriptor.AutoCloseOutputStream
330 super.write(oneByte);
335 super.write(oneByte);
/frameworks/base/core/tests/utiltests/src/com/android/internal/util/
H A DBitwiseStreamsTest.java39 for (int i = 0; i < inBuf.length; i++) outStream.write(8, inBuf[i]);
54 for (int i = 0; i < inBuf.length; i++) outStream.write(8, inBuf[i]);
68 for (int i = 0; i < inBuf.length; i++) outStream.write(8, inBuf[i]);
83 outStream.write(5, inBuf[i] >>> 3);
84 outStream.write(3, inBuf[i] & 0x07);
106 outStream.write(size, value);
124 outStream.write(5, inBuf[i] >>> 3);
125 outStream.write(3, inBuf[i] & 0x07);
150 outStream.write(size, value);
/frameworks/base/drm/java/android/drm/
H A DDrmOutputStream.java76 IoBridge.write(mFd, status.convertedData, 0, status.convertedData.length);
93 public void write(byte[] buffer, int offset, int count) throws IOException { method in class:DrmOutputStream
106 IoBridge.write(mFd, status.convertedData, 0, status.convertedData.length);
113 public void write(int oneByte) throws IOException { method in class:DrmOutputStream
/frameworks/base/packages/DocumentsUI/
H A Dwrap_alpha.py45 xml.write("""<?xml version="1.0" encoding="utf-8"?>

Completed in 802 milliseconds

1234567891011>>