Searched refs:PID (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.h152 // Keyed by PID
176 ABitReader *br, unsigned PID,
181 status_t parseAdaptationField(ABitReader *br, unsigned PID);
185 void updatePCR(unsigned PID, uint64_t PCR, uint64_t byteOffsetFromStart);
H A DATSParser.cpp341 // get the next PID for temp[i]->type() in the new PID map
344 // change the PID of the stream, and add it back
348 // removed the used PID
467 ALOGI("PID 0x%08x => type 0x%02x", stream->pid(), stream->type());
474 ALOGI("PID 0x%08x => type 0x%02x", info.mPID, info.mType);
641 ALOGV("new stream PID 0x%02x, type 0x%02x", elementaryPID, streamType);
1084 ALOGV("Stream PID 0x%08x of type 0x%02x now has data.",
1165 mPSISections.add(0 /* PID */, new PSISection);
1305 ABitReader *br, unsigned PID,
1304 parsePID( ABitReader *br, unsigned PID, unsigned continuity_counter, unsigned payload_unit_start_indicator, SyncEvent *event) argument
1397 parseAdaptationField(ABitReader *br, unsigned PID) argument
1475 unsigned PID = br->getBits(13); local
[all...]
/frameworks/av/media/libstagefright/wifi-display/source/
H A DTSPacketizer.cpp37 unsigned PID, unsigned streamType, unsigned streamID);
39 unsigned PID() const;
88 unsigned PID, unsigned streamType, unsigned streamID)
90 mPID(PID),
130 unsigned TSPacketizer::Track::PID() const { function in class:android::TSPacketizer::Track
419 unsigned PID = PIDStart; local
429 ++PID;
438 sp<Track> track = new Track(format, PID, streamType, streamID);
486 // PID
651 // PID
86 Track( const sp<AMessage> &format, unsigned PID, unsigned streamType, unsigned streamID) argument
[all...]
/frameworks/base/packages/Shell/tests/src/com/android/shell/
H A DBugreportReceiverTest.java116 private static final int PID = 42; field in class:BugreportReceiverTest
120 private static final String PROGRESS_PROPERTY = "dumpstate." + PID + ".progress";
121 private static final String MAX_PROPERTY = "dumpstate." + PID + ".max";
122 private static final String NAME_PROPERTY = "dumpstate." + PID + ".name";
219 assertActionSendMultiple(extras, BUGREPORT_CONTENT, SCREENSHOT_CONTENT, ID, PID, ZIP_FILE,
256 assertActionSendMultiple(extras, BUGREPORT_CONTENT, SCREENSHOT_CONTENT, ID, PID, ZIP_FILE,
275 assertActionSendMultiple(extras, BUGREPORT_CONTENT, NO_SCREENSHOT, ID, PID, ZIP_FILE,
320 assertActionSendMultiple(extras, BUGREPORT_CONTENT, SCREENSHOT_CONTENT, ID, PID, TITLE,
357 assertActionSendMultiple(extras, BUGREPORT_CONTENT, SCREENSHOT_CONTENT, ID, PID, TITLE,
384 assertActionSendMultiple(extras, BUGREPORT_CONTENT, SCREENSHOT_CONTENT, ID, PID, ZIP_FIL
[all...]
/frameworks/av/media/libstagefright/
H A DMPEG2TSWriter.cpp698 // PID = b0000000000000 (13 bits)
750 // PID = b0 0001 1110 0000 (13 bits) [0x1e0]
827 // PID = b0 0001 1110 ???? (13 bits) [0x1e0 + 1 + sourceIndex]
861 const unsigned PID = 0x1e0 + sourceIndex + 1; local
889 *ptr++ = 0x40 | (PID >> 8);
890 *ptr++ = PID & 0xff;
933 // PID = b0 0001 1110 ???? (13 bits) [0x1e0 + 1 + sourceIndex]
946 *ptr++ = 0x00 | (PID >> 8);
947 *ptr++ = PID & 0xff;

Completed in 173 milliseconds