Searched refs:lost (Results 1 - 11 of 11) sorted by relevance

/system/media/audio_utils/include/audio_utils/
H A Dfifo.h86 * \param lost If non-NULL, set to the approximate number of frames lost before
87 * re-synchronization when -EOVERFLOW occurs, or set to zero when no frames lost.
92 * \retval -EOVERFLOW reader doesn't throttle writer, and frames were lost because reader
93 * isn't keeping up with writer; see \p lost
95 int32_t diff(uint32_t rear, uint32_t front, size_t *lost = NULL, bool flush = false) const;
258 * \retval -EOVERFLOW reader doesn't throttle writer, and frames were lost because reader
259 * isn't keeping up with writer; see \p lost
292 * \retval -EOVERFLOW reader doesn't throttle writer, and frames were lost because reader
307 * For a reader, this includes lost an
[all...]
/system/media/audio_utils/
H A Dfifo.cpp68 int32_t audio_utils_fifo_base::diff(uint32_t rear, uint32_t front, size_t *lost, bool flush) const argument
72 if (lost != NULL) {
73 *lost = 0;
93 // but reader has lost frames if writer is further than one generation beyond.
95 if (lost != NULL) {
96 // Calculate the number of lost frames as the raw difference,
98 // less the wasted indices that don't count as true lost frames.
99 *lost = diff - (flush ? 0 : mFrameCount) - mFudgeFactor * (genDiff/mFrameCountP2);
113 if (lost != NULL) {
114 *lost
434 read(void *buffer, size_t count, const struct timespec *timeout, size_t *lost) argument
513 obtain(audio_utils_iovec iovec[2], size_t count, const struct timespec *timeout, size_t *lost) argument
618 available(size_t *lost) argument
624 flush(size_t *lost) argument
[all...]
/system/extras/perfprofd/quipper/kernel-headers/tools/perf/util/
H A Devent.h14 *** Any manual change here will be lost the next time this script will
65 u64 lost; member in struct:lost_event
187 struct lost_event lost; member in union:perf_event
/system/extras/simpleperf/
H A Dcmd_report_sample.cpp298 auto& lost = proto_record.lost(); local
301 lost.sample_count());
303 lost.lost_count());
350 lost_count_ += static_cast<const LostRecord*>(record.get())->lost;
449 proto::LostSituation* lost = proto_record.mutable_lost(); local
450 lost->set_sample_count(sample_count_);
451 lost->set_lost_count(lost_count_);
454 LOG(ERROR) << "failed to write lost situation to protobuf";
H A Drecord.h356 uint64_t lost; member in struct:LostRecord
H A Drecord.cpp34 {PERF_RECORD_LOST, "lost"},
369 MoveFromBinaryFormat(lost, p);
375 PrintIndented(indent, "id %" PRIu64 ", lost %" PRIu64 "\n", id, lost);
H A Dcmd_record.cpp348 << ". Samples lost: " << lost_record_count_ << ".";
796 lost_record_count_ += static_cast<LostRecord*>(record)->lost;
/system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/
H A Devent.h49 u64 lost; member in struct:lost_event
178 struct lost_event lost; member in union:perf_event
/system/extras/perfprofd/quipper/
H A Dperf_utils.cc135 offset = sizeof(event.lost);
H A Dperf_reader.cc1506 ByteSwap(&event_copy->lost.id);
1507 ByteSwap(&event_copy->lost.lost);
/system/sepolicy/private/
H A Dfile_contexts25 /lost\+found u:object_r:rootfs:s0

Completed in 103 milliseconds