Lines Matching refs:pBytes
51 byte[] pBytes, in WriteBytesToStream() argument
74 xOutput.writeBytes( pBytes ); in WriteBytesToStream()
106 if ( nSize != pBytes.length ) in WriteBytesToStream()
148 byte[] pBytes, in WriteBytesToSubstream() argument
169 return WriteBytesToStream( xSubStream, sStreamName, sMediaType, bCompressed, pBytes, aRelations ); in WriteBytesToSubstream()
413 byte[] pBytes, in InternalCheckStream() argument
429 xInput.readBytes( pContents, pBytes.length + 1 ); in InternalCheckStream()
444 if ( pBytes.length != pContents[0].length ) in InternalCheckStream()
446 …+ sName + "' contains wrong amount of data! (" + pContents[0].length + "/" + pBytes.length + ")" ); in InternalCheckStream()
451 for ( int ind = 0; ind < pBytes.length; ind++ ) in InternalCheckStream()
453 if ( pBytes[ind] != pContents[0][ind] ) in InternalCheckStream()
456 + ind + " should be" + pBytes[ind] + " but it is " + pContents[0][ind] + ")" ); in InternalCheckStream()
482 if ( nPropSize != pBytes.length ) in InternalCheckStream()
532 byte[] pBytes, in checkStream() argument
553 boolean bResult = InternalCheckStream( xSubStream, sName, sMediaType, pBytes, aRelations ); in checkStream()