Searched refs:write (Results 326 - 350 of 1003) sorted by relevance

<<11121314151617181920>>

/frameworks/av/media/libnbaio/
H A DMonoPipe.cpp66 ssize_t MonoPipe::write(const void *buffer, size_t count) function in class:android::MonoPipe
73 ssize_t actual = mFifoWriter.write(buffer, count);
128 // deduct the elapsed time since previous write() completed
151 // record the time that this write() completed
/frameworks/av/media/libstagefright/webm/
H A DWebmWriter.cpp302 // Do not write out movie header on error.
311 // perfectly, we still need to check if there is enough "extra space" to write an
315 cues->write(mFd, cuesSize);
319 cues->write(mFd, cuesSize);
321 space->write(mFd, spaceSize);
334 ::write(mFd, bary, sizeOf(kMkvUnknownLength));
343 ::write(mFd, bary, sizeof(double));
353 seekHead->write(mFd, metaSeekSize);
357 space->write(mFd, spaceSize);
508 e->write(mF
[all...]
/frameworks/av/services/audioflinger/
H A DAudioStreamOut.cpp205 ssize_t AudioStreamOut::write(const void *buffer, size_t numBytes) function in class:android::AudioStreamOut
208 status_t result = stream->write(buffer, numBytes, &bytesWritten);
/frameworks/av/soundtrigger/
H A DISoundTriggerHwService.cpp86 data.write(&handle, sizeof(sound_trigger_module_handle_t));
145 reply->write(modules,
/frameworks/base/cmds/statsd/src/
H A DStatsLogProcessor.cpp318 proto.write(FIELD_TYPE_INT32 | FIELD_ID_UID, key.GetUid());
319 proto.write(FIELD_TYPE_INT64 | FIELD_ID_ID, (long long)key.GetId());
397 proto->write(FIELD_TYPE_INT64 | FIELD_ID_LAST_REPORT_ELAPSED_NANOS,
399 proto->write(FIELD_TYPE_INT64 | FIELD_ID_CURRENT_REPORT_ELAPSED_NANOS,
401 proto->write(FIELD_TYPE_INT64 | FIELD_ID_LAST_REPORT_WALL_CLOCK_NANOS,
403 proto->write(FIELD_TYPE_INT64 | FIELD_ID_CURRENT_REPORT_WALL_CLOCK_NANOS,
406 proto->write(FIELD_TYPE_INT32 | FIELD_ID_DUMP_REPORT_REASON, dumpReportReason);
409 proto->write(FIELD_TYPE_STRING | FIELD_COUNT_REPEATED | FIELD_ID_STRINGS, str);
519 ALOGE("Attempt to write %s but failed", file_name.c_str());
523 // We were able to write th
[all...]
/frameworks/base/cmds/statsd/tests/metrics/
H A DCountMetricProducer_test.cpp165 event1.write("111"); // uid
172 event2.write("222"); // uid
220 event1.write("111"); // uid
250 event2.write("222"); // uid
259 event3.write("333"); // uid
279 event1.write("111"); // uid
302 event2.write("222"); // uid
309 event3.write("333"); // uid
/frameworks/base/core/java/android/provider/
H A DSettingsStringUtil.java172 public boolean write(String value) { method in class:SettingsStringUtil.SettingStringHelper
178 return write(change.apply(read()));
/frameworks/base/core/jni/android/graphics/pdf/
H A DPdfDocument.cpp90 void write(SkWStream* stream) { function in class:android::PdfDocument
142 document->write(skWStream);
/frameworks/base/core/tests/coretests/src/android/util/
H A DBase64Test.java435 // up the write(int) buffer of Base64OutputStream.
448 // one large write(byte[]) of the whole input
451 b64os.write(plain);
456 // many calls to write(int)
460 b64os.write(plain[i]);
466 // intermixed sequences of write(int) with
467 // write(byte[],int,int) of various lengths.
475 b64os.write(plain, p, l);
480 b64os.write(plain[p+i]);
491 // one large write(byt
[all...]
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreECDSASignatureSpi.java76 mInputBuffer.write(input, inputOffset, inputLength);
87 mInputBuffer.write(input, inputOffset, inputLength);
/frameworks/base/libs/common_time/
H A Dutils.cpp130 write(fd, buf, res);
160 write(fd, buf, res);
/frameworks/base/libs/protoutil/src/
H A DProtoOutputStream.cpp54 ProtoOutputStream::write(uint64_t fieldId, double val) function in class:android::util::ProtoOutputStream
80 ProtoOutputStream::write(uint64_t fieldId, float val) function in class:android::util::ProtoOutputStream
106 ProtoOutputStream::write(uint64_t fieldId, int val) function in class:android::util::ProtoOutputStream
134 ProtoOutputStream::write(uint64_t fieldId, long long val) function in class:android::util::ProtoOutputStream
162 ProtoOutputStream::write(uint64_t fieldId, bool val) function in class:android::util::ProtoOutputStream
178 ProtoOutputStream::write(uint64_t fieldId, std::string val) function in class:android::util::ProtoOutputStream
194 ProtoOutputStream::write(uint64_t fieldId, const char* val, size_t size) function in class:android::util::ProtoOutputStream
204 // can directly write valid format of message bytes into ProtoOutputStream without calling start/end
302 // If raw size is larger than 0, write the negative value here to indicate a compact is needed.
336 // reset both edit pointer and write pointe
[all...]
/frameworks/base/packages/SystemUI/scripts/
H A Dnew_merge.py144 fout.write(line.replace(replace, withText))
146 fout.write(line)
/frameworks/base/services/core/java/com/android/server/pm/
H A DSharedUserSetting.java67 proto.write(PackageServiceDumpProto.SharedUserProto.USER_ID, userId);
68 proto.write(PackageServiceDumpProto.SharedUserProto.NAME, name);
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppWindowThumbnail.java124 * @param proto Stream to write the AppWindowThumbnail object to.
130 proto.write(WIDTH, mWidth);
131 proto.write(HEIGHT, mHeight);
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbHostManager.java122 dump.write("device_address", UsbConnectionRecordProto.DEVICE_ADDRESS, mDeviceAddress);
123 dump.write("mode", UsbConnectionRecordProto.MODE, mMode);
124 dump.write("timestamp", UsbConnectionRecordProto.TIMESTAMP, mTimestamp);
131 dump.write("manufacturer", UsbConnectionRecordProto.MANUFACTURER,
133 dump.write("product", UsbConnectionRecordProto.PRODUCT,
136 dump.write("in", UsbIsHeadsetProto.IN, parser.isInputHeadset());
137 dump.write("out", UsbIsHeadsetProto.OUT, parser.isOutputHeadset());
482 dump.write("num_connects", UsbHostManagerProto.NUM_CONNECTS, mNumConnects);
/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.h242 status_t write(FILE* fp);
300 status_t write(FILE* fp);
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
H A DDataBinderWriter.kt20 fun write(brWriter : BRWriter) = kcode("") {
/frameworks/data-binding/compilerCommon/
H A Dbuild.gradle81 file(buildVersionFile).write(propText.toString())
/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);
/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);
/frameworks/opt/net/wifi/libwifi_hal/
H A Dwifi_hal_common.cpp104 if (TEMP_FAILURE_RETRY(write(fd, state, len)) != len) {
105 PLOG(ERROR) << "Failed to write driver state control param";
224 if (TEMP_FAILURE_RETRY(write(fd, fwpath, len)) != len) {
225 PLOG(ERROR) << "Failed to write wlan fw path param";
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
H A DRoamingConsortiumElementTest.java50 * @param stream The output stream to write to
51 * @param OI The OI to write to the output stream
54 stream.write(oi.first.byteValue());
57 stream.write((byte) ((oi.second.longValue() >> i * Byte.SIZE) & 0xFF));

Completed in 676 milliseconds

<<11121314151617181920>>