Searched refs:write (Results 126 - 150 of 383) sorted by relevance

1234567891011>>

/frameworks/av/media/libmedia/
H A DIEffect.cpp78 data.write(pCmdData, size);
170 reply->write(resp, replySize);
/frameworks/base/core/jni/android/graphics/pdf/
H A DPdfDocument.cpp82 void write(SkWStream* stream) { function in class:android::PdfDocument
137 document->write(skWStream);
/frameworks/base/core/tests/coretests/src/android/util/
H A DBase64Test.java433 // up the write(int) buffer of Base64OutputStream.
446 // one large write(byte[]) of the whole input
449 b64os.write(plain);
454 // many calls to write(int)
458 b64os.write(plain[i]);
464 // intermixed sequences of write(int) with
465 // write(byte[],int,int) of various lengths.
473 b64os.write(plain, p, l);
478 b64os.write(plain[p+i]);
489 // one large write(byt
[all...]
/frameworks/base/packages/Keyguard/scripts/
H A Dnew_merge.py144 fout.write(line.replace(replace, withText))
146 fout.write(line)
/frameworks/base/services/common_time/
H A Dutils.cpp130 write(fd, buf, res);
160 write(fd, buf, res);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A DCSVWriterFilter.java117 csvWriter.write("FileName,Sharpness,OverExposure,UnderExposure,Colorfulness," +
129 Log.v(TAG,"about to write to file");
133 csvWriter.write(imageFileName + "," + sharpness + "," + overExposure + "," +
/frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/
H A DLowStorageTest.java87 fs.write(buf);
93 fs.write(buf);
/frameworks/base/tools/aapt/
H A DZipEntry.h241 status_t write(FILE* fp);
299 status_t write(FILE* fp);
/frameworks/native/libs/gui/
H A DBitTube.cpp102 ssize_t BitTube::write(void const* vaddr, size_t size) function in class:android::BitTube
144 ssize_t size = tube->write(vaddr, count*objSize);
H A DIGraphicBufferAlloc.cpp100 reply->write(*result);
H A DISensorServer.cpp87 reply->write(v[i]);
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DEncodedStringValue.java173 newTextString.write(mData);
174 newTextString.write(textString);
178 "appendTextString: failed when write a new Text-string");
/frameworks/av/include/media/stagefright/
H A DMPEG2TSWriter.h36 ssize_t (*write)(void *cookie, const void *data, size_t size));
/frameworks/av/media/mtp/
H A DMtpProperty.h87 void write(MtpDataPacket& packet);
/frameworks/base/core/java/com/android/internal/util/
H A DFileRotator.java76 public void write(OutputStream out) throws IOException; method in interface:FileRotator.Writer
118 // write failed with backup; recover last file
128 // write failed without backup; delete both
178 * writing modified data. Maintains a backup during write, which is restored
179 * if the write fails.
207 public void write(OutputStream out) throws IOException {
208 writer.write(out);
229 * writing modified data. Maintains a backup during write, which is restored
230 * if the write fails.
244 // skip when rewriter has nothing to write
[all...]
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabaseErrorHandlerTest.java67 // write junk into the database file
69 writer.write("blah");
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DInputStreamSource.java73 byteStream.write(buffer, 0, bytesRead);
/frameworks/base/services/java/com/android/server/
H A DRandomBlock.java82 // write is a character device, such as /dev/urandom, and
88 out.write(block);
/frameworks/base/services/java/com/android/server/net/
H A DNetworkStatsRecorder.java272 * with anything read from disk, and write combined set to disk. Clears the
298 public void write(OutputStream out) throws IOException { method in class:NetworkStatsRecorder.CombiningRewriter
299 mCollection.write(new DataOutputStream(out));
335 public void write(OutputStream out) throws IOException { method in class:NetworkStatsRecorder.RemoveUidRewriter
336 mTemp.write(new DataOutputStream(out));
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
H A DAudioTrackDecoder.java82 mAudioByteStream.write(data);
/frameworks/compile/mclinker/include/mcld/Support/
H A DFileHandle.h96 bool write(const void* pMemBuffer, size_t pStartOffset, size_t pLength);
/frameworks/volley/tests/src/com/android/volley/toolbox/
H A DImageRequestTest.java94 bytes.write(buffer, 0, count);
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.cpp1149 write(fd, result.string(), result.size());
1155 write(fd, result.string(), result.size());
1161 write(fd, result.string(), result.size());
1174 write(fd, result.string(), result.size());
1182 write(fd, result.string(), result.size());
1197 write(fd, result.string(), result.size());
1201 write(fd, result.string(), result.size());
1208 write(fd, result.string(), result.size());
1213 write(fd, result.string(), result.size());
1218 write(f
[all...]
/frameworks/base/core/java/android/os/
H A DFileUtils.java193 out.write(buffer, 0, bytesRead);
271 if (len > 0) contents.write(data, 0, len);
291 out.write(string);
H A DMemoryFile.java33 * After a file is purged, attempts to read or write the file will
92 * After this method has been called, read and write operations through this object
211 * @param buffer byte array to write bytes from.
212 * @param srcOffset offset into the byte array buffer to write from.
213 * @param destOffset offset into the memory file to write to.
214 * @param count number of bytes to write.
220 throw new IOException("Can't write to deactivated memory file.");
331 public void write(byte buffer[], int offset, int count) throws IOException { method in class:MemoryFile.MemoryOutputStream
337 public void write(int oneByte) throws IOException { method in class:MemoryFile.MemoryOutputStream
342 write(mSingleByt
[all...]

Completed in 1411 milliseconds

1234567891011>>