Searched defs:hdr (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/libs/rs/
H A DrsThreadIO.cpp60 CoreCmdHeader hdr; local
61 hdr.bytes = dataLen;
62 hdr.cmdID = cmdID;
63 mToCoreSocket.writeAsync(&hdr, sizeof(hdr));
209 ClientCmdHeader hdr;
210 hdr.bytes = dataLen;
211 hdr.cmdID = cmdID;
212 hdr.userID = usrID;
214 mToClientSocket.writeAsync(&hdr, sizeo
[all...]
/frameworks/base/media/libstagefright/
H A DMPEG4Extractor.cpp603 uint32_t hdr[2]; local
604 if (mDataSource->readAt(*offset, hdr, 8) < 8) {
607 uint64_t chunk_size = ntohl(hdr[0]);
608 uint32_t chunk_type = ntohl(hdr[1]);
2320 uint32_t hdr[2]; local
2321 if (source->readAt(offset, hdr, 8) < 8) {
2325 uint64_t chunkSize = ntohl(hdr[0]);
2326 uint32_t chunkType = ntohl(hdr[1]);

Completed in 145 milliseconds