Home
last modified time | relevance | path

Searched refs:titleLength (Results 1 – 2 of 2) sorted by relevance

/packages/apps/TV/tuner/sampletunertvinput/src/com/android/tv/samples/sampletunertvinput/
DSampleTunerTvInputSectionParser.java114 int titleLength = data[19] & 0xff; in parseEitSection() local
115 String titleText = parseMultipleStringStructure(data, 20, 20 + titleLength); in parseEitSection()
/packages/apps/TV/tuner/src/com/android/tv/tuner/data/
DSectionParser.java994 int titleLength = (data[pos + 9] & 0xff); in parseEIT() local
995 if (data.length <= pos + 10 + titleLength + 1) { in parseEIT()
1000 if (titleLength > 0) { in parseEIT()
1003 if ((data[pos + 10 + titleLength] & 0xf0) != 0xf0) { in parseEIT()
1008 ((data[pos + 10 + titleLength] & 0x0f) << 8) in parseEIT()
1009 | (data[pos + 10 + titleLength + 1] & 0xff); in parseEIT()
1010 int descriptorsPos = pos + 10 + titleLength + 2; in parseEIT()
1025 pos += 10 + titleLength + 2 + descriptorsLength; in parseEIT()