Home
last modified time | relevance | path

Searched refs:packets (Results 1 – 10 of 10) sorted by relevance

/frameworks/av/media/libstagefright/rtsp/
DARTPAssembler.cpp123 const List<sp<ABuffer> > &packets) { in MakeCompoundFromPackets()
125 for (List<sp<ABuffer> >::const_iterator it = packets.begin(); in MakeCompoundFromPackets()
126 it != packets.end(); ++it) { in MakeCompoundFromPackets()
132 for (List<sp<ABuffer> >::const_iterator it = packets.begin(); in MakeCompoundFromPackets()
133 it != packets.end(); ++it) { in MakeCompoundFromPackets()
139 CopyTimes(accessUnit, *packets.begin()); in MakeCompoundFromPackets()
/frameworks/av/media/libstagefright/wifi-display/rtp/
DRTPSender.cpp316 List<sp<ABuffer> > packets; in queueAVCBuffer() local
350 packets.push_back(out); in queueAVCBuffer()
408 packets.push_back(out); in queueAVCBuffer()
416 packets.push_back(out); in queueAVCBuffer()
419 while (!packets.empty()) { in queueAVCBuffer()
420 sp<ABuffer> out = *packets.begin(); in queueAVCBuffer()
421 packets.erase(packets.begin()); in queueAVCBuffer()
425 bool last = packets.empty(); in queueAVCBuffer()
/frameworks/base/core/java/com/android/internal/os/
DBatterySipper.java138 long packets = mobileRxPackets + mobileTxPackets; in computeMobilemspp() local
139 mobilemspp = packets > 0 ? (mobileActive / (double) packets) : 0; in computeMobilemspp()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DEventLogTags.logtags12 # Radio restart - timed out with no incoming packets.
15 # PDP context reset - timed out with no incoming packets.
18 # Reregister to data network - timed out with no incoming packets.
/frameworks/av/media/libstagefright/wifi-display/source/
DTSPacketizer.h52 sp<ABuffer> *packets,
DTSPacketizer.cpp456 sp<ABuffer> *packets, in packetize() argument
465 packets->clear(); in packetize()
1009 *packets = buffer; in packetize()
/frameworks/av/media/libmediaplayerservice/nuplayer/
DGenericSource.h283 int32_t curGen, const sp<AnotherPacketSource>& packets, const sp<AMessage>& msg);
291 int32_t curGen, const sp<AnotherPacketSource>& packets, const sp<AMessage>& msg);
DGenericSource.cpp715 const sp<AnotherPacketSource>& packets, in fetchTextData() argument
725 if (packets->hasBufferAvailable(&avail)) { in fetchTextData()
749 const sp<AnotherPacketSource>& packets, in sendTextData() argument
759 if (packets->nextBufferTime(&subTimeUs) != OK) { in sendTextData()
767 status_t dequeueStatus = packets->dequeueAccessUnit(&buffer); in sendTextData()
/frameworks/wilhelm/tests/sandbox/
Dxaplay.c43 MPEG2TS_Packet *packets; variable
207 result = (*caller)->Enqueue(caller, NULL, &packets[curPacket], in bufferQueueCallback()
344 packets = (MPEG2TS_Packet *) ptr; in main()
484 &packets[curPacket], MPEG2TS_PACKET_SIZE * packetsThisBuffer, NULL, 0); in main()
/frameworks/base/core/java/android/os/
DBatteryStats.java4589 long packets = mobileRxPackets + mobileTxPackets; in dumpLocked() local
4590 if (packets == 0) { in dumpLocked()
4591 packets = 1; in dumpLocked()
4594 sb.append(BatteryStatsHelper.makemAh(uidMobileActiveTime / 1000 / (double)packets)); in dumpLocked()