/frameworks/av/media/mtp/ |
D | MtpObjectInfo.cpp | 62 if (!packet.getUInt32(mStorageID)) return false; in read() 65 if (!packet.getUInt32(mCompressedSize)) return false; in read() 67 if (!packet.getUInt32(mThumbCompressedSize)) return false; in read() 68 if (!packet.getUInt32(mThumbPixWidth)) return false; in read() 69 if (!packet.getUInt32(mThumbPixHeight)) return false; in read() 70 if (!packet.getUInt32(mImagePixWidth)) return false; in read() 71 if (!packet.getUInt32(mImagePixHeight)) return false; in read() 72 if (!packet.getUInt32(mImagePixDepth)) return false; in read() 73 if (!packet.getUInt32(mParent)) return false; in read() 75 if (!packet.getUInt32(mAssociationDesc)) return false; in read() [all …]
|
D | MtpDataPacket.cpp | 91 bool MtpDataPacket::getUInt32(uint32_t& value) { in getUInt32() function in android::MtpDataPacket 114 return getUInt32(value[0]) && getUInt32(value[1]) && getUInt32(value[2]) && getUInt32(value[3]); in getUInt128() 124 if (!getUInt32(count)) in getAInt8() 140 if (!getUInt32(count)) in getAUInt8() 156 if (!getUInt32(count)) in getAInt16() 172 if (!getUInt32(count)) in getAUInt16() 188 if (!getUInt32(count)) in getAInt32() 204 if (!getUInt32(count)) in getAUInt32() 209 if (!getUInt32(value)) { in getAUInt32() 220 if (!getUInt32(count)) in getAInt64() [all …]
|
D | MtpDataPacket.h | 51 bool getUInt32(uint32_t& value); 52 inline bool getInt32(int32_t& value) { return getUInt32((uint32_t&)value); } in getInt32() 126 …inline uint32_t getContainerLength() const { return MtpPacket::getUInt32(MTP_CONTAINER_LENGTH_… in getContainerLength()
|
D | MtpPacket.cpp | 98 uint32_t MtpPacket::getUInt32(int offset) const { in getUInt32() function in android::MtpPacket 128 return getUInt32(MTP_CONTAINER_TRANSACTION_ID_OFFSET); in getTransactionID() 140 return getUInt32(MTP_CONTAINER_PARAMETER_OFFSET + (index - 1) * sizeof(uint32_t)); in getParameter()
|
D | MtpServer.cpp | 931 if (!mData.getUInt32(temp32)) return MTP_RESPONSE_INVALID_PARAMETER; // storage ID in doSendObjectInfo() 935 if (!mData.getUInt32(temp32)) return MTP_RESPONSE_INVALID_PARAMETER; in doSendObjectInfo() 938 if (!mData.getUInt32(temp32)) return MTP_RESPONSE_INVALID_PARAMETER; // thumb compressed size in doSendObjectInfo() 939 if (!mData.getUInt32(temp32)) return MTP_RESPONSE_INVALID_PARAMETER; // thumb pix width in doSendObjectInfo() 940 if (!mData.getUInt32(temp32)) return MTP_RESPONSE_INVALID_PARAMETER; // thumb pix height in doSendObjectInfo() 941 if (!mData.getUInt32(temp32)) return MTP_RESPONSE_INVALID_PARAMETER; // image pix width in doSendObjectInfo() 942 if (!mData.getUInt32(temp32)) return MTP_RESPONSE_INVALID_PARAMETER; // image pix height in doSendObjectInfo() 943 if (!mData.getUInt32(temp32)) return MTP_RESPONSE_INVALID_PARAMETER; // image bit depth in doSendObjectInfo() 944 if (!mData.getUInt32(temp32)) return MTP_RESPONSE_INVALID_PARAMETER; // parent in doSendObjectInfo() 946 if (!mData.getUInt32(temp32)) return MTP_RESPONSE_INVALID_PARAMETER; in doSendObjectInfo() [all …]
|
D | MtpPacket.h | 69 uint32_t getUInt32(int offset) const;
|
D | MtpStorageInfo.cpp | 57 if (!packet.getUInt32(mFreeSpaceObjects)) return false; in read()
|
D | MtpDeviceInfo.cpp | 67 if (!packet.getUInt32(mVendorExtensionID)) return false; in read()
|
D | MtpProperty.cpp | 163 if (!packet.getUInt32(mGroupCode)) return false; in read() 464 if (!packet.getUInt32(value.u.u32)) return false; in readValue() 549 if (!packet.getUInt32(length)) return NULL; in readArrayValues()
|
/frameworks/av/media/libstagefright/ |
D | DataSourceBase.cpp | 52 bool DataSourceBase::getUInt32(off64_t offset, uint32_t *x) { in getUInt32() function in android::DataSourceBase 94 return getUInt32(offset, x); in getUInt32Var() 112 if (getUInt32(offset, &tmp)) { in getUInt64Var()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/Tests/ |
D | GPBDictionaryTests+Int32.m | 97 XCTAssertFalse([dict getUInt32:NULL forKey:11]); 110 XCTAssertTrue([dict getUInt32:NULL forKey:11]); 111 XCTAssertTrue([dict getUInt32:&value forKey:11]); 113 XCTAssertFalse([dict getUInt32:NULL forKey:12]); 131 XCTAssertTrue([dict getUInt32:NULL forKey:11]); 132 XCTAssertTrue([dict getUInt32:&value forKey:11]); 134 XCTAssertTrue([dict getUInt32:NULL forKey:12]); 135 XCTAssertTrue([dict getUInt32:&value forKey:12]); 137 XCTAssertTrue([dict getUInt32:NULL forKey:13]); 138 XCTAssertTrue([dict getUInt32:&value forKey:13]); [all …]
|
D | GPBDictionaryTests+String.m | 97 XCTAssertFalse([dict getUInt32:NULL forKey:@"foo"]); 110 XCTAssertTrue([dict getUInt32:NULL forKey:@"foo"]); 111 XCTAssertTrue([dict getUInt32:&value forKey:@"foo"]); 113 XCTAssertFalse([dict getUInt32:NULL forKey:@"bar"]); 131 XCTAssertTrue([dict getUInt32:NULL forKey:@"foo"]); 132 XCTAssertTrue([dict getUInt32:&value forKey:@"foo"]); 134 XCTAssertTrue([dict getUInt32:NULL forKey:@"bar"]); 135 XCTAssertTrue([dict getUInt32:&value forKey:@"bar"]); 137 XCTAssertTrue([dict getUInt32:NULL forKey:@"baz"]); 138 XCTAssertTrue([dict getUInt32:&value forKey:@"baz"]); [all …]
|
D | GPBDictionaryTests+UInt64.m | 97 XCTAssertFalse([dict getUInt32:NULL forKey:31ULL]); 110 XCTAssertTrue([dict getUInt32:NULL forKey:31ULL]); 111 XCTAssertTrue([dict getUInt32:&value forKey:31ULL]); 113 XCTAssertFalse([dict getUInt32:NULL forKey:32ULL]); 131 XCTAssertTrue([dict getUInt32:NULL forKey:31ULL]); 132 XCTAssertTrue([dict getUInt32:&value forKey:31ULL]); 134 XCTAssertTrue([dict getUInt32:NULL forKey:32ULL]); 135 XCTAssertTrue([dict getUInt32:&value forKey:32ULL]); 137 XCTAssertTrue([dict getUInt32:NULL forKey:33ULL]); 138 XCTAssertTrue([dict getUInt32:&value forKey:33ULL]); [all …]
|
D | GPBDictionaryTests+Int64.m | 97 XCTAssertFalse([dict getUInt32:NULL forKey:21LL]); 110 XCTAssertTrue([dict getUInt32:NULL forKey:21LL]); 111 XCTAssertTrue([dict getUInt32:&value forKey:21LL]); 113 XCTAssertFalse([dict getUInt32:NULL forKey:22LL]); 131 XCTAssertTrue([dict getUInt32:NULL forKey:21LL]); 132 XCTAssertTrue([dict getUInt32:&value forKey:21LL]); 134 XCTAssertTrue([dict getUInt32:NULL forKey:22LL]); 135 XCTAssertTrue([dict getUInt32:&value forKey:22LL]); 137 XCTAssertTrue([dict getUInt32:NULL forKey:23LL]); 138 XCTAssertTrue([dict getUInt32:&value forKey:23LL]); [all …]
|
D | GPBDictionaryTests+UInt32.m | 97 XCTAssertFalse([dict getUInt32:NULL forKey:1U]); 110 XCTAssertTrue([dict getUInt32:NULL forKey:1U]); 111 XCTAssertTrue([dict getUInt32:&value forKey:1U]); 113 XCTAssertFalse([dict getUInt32:NULL forKey:2U]); 131 XCTAssertTrue([dict getUInt32:NULL forKey:1U]); 132 XCTAssertTrue([dict getUInt32:&value forKey:1U]); 134 XCTAssertTrue([dict getUInt32:NULL forKey:2U]); 135 XCTAssertTrue([dict getUInt32:&value forKey:2U]); 137 XCTAssertTrue([dict getUInt32:NULL forKey:3U]); 138 XCTAssertTrue([dict getUInt32:&value forKey:3U]); [all …]
|
D | GPBDictionaryTests+Bool.m | 57 XCTAssertFalse([dict getUInt32:NULL forKey:YES]); 70 XCTAssertTrue([dict getUInt32:NULL forKey:YES]); 71 XCTAssertTrue([dict getUInt32:&value forKey:YES]); 73 XCTAssertFalse([dict getUInt32:NULL forKey:NO]); 91 XCTAssertTrue([dict getUInt32:NULL forKey:YES]); 92 XCTAssertTrue([dict getUInt32:&value forKey:YES]); 94 XCTAssertTrue([dict getUInt32:NULL forKey:NO]); 95 XCTAssertTrue([dict getUInt32:&value forKey:NO]); 245 XCTAssertTrue([dict getUInt32:NULL forKey:YES]); 246 XCTAssertTrue([dict getUInt32:&value forKey:YES]); [all …]
|
/frameworks/av/media/extractors/mp4/ |
D | MPEG4Extractor.cpp | 1133 if (!mDataSource->getUInt32(data_offset + 4, &entry_count)) { in parseChunk() 1154 if (!mDataSource->getUInt32(entriesoffset, &sd) || in parseChunk() 1155 !mDataSource->getUInt32(entriesoffset + 4, (uint32_t*)&mt)) { in parseChunk() 2516 mDataSource->getUInt32(data_offset + 4, &d32); in parseChunk() 2590 if (!mDataSource->getUInt32(data_offset + 4, &trex.track_ID) || in parseChunk() 2591 !mDataSource->getUInt32(data_offset + 8, &trex.default_sample_description_index) || in parseChunk() 2592 !mDataSource->getUInt32(data_offset + 12, &trex.default_sample_duration) || in parseChunk() 2593 !mDataSource->getUInt32(data_offset + 16, &trex.default_sample_size) || in parseChunk() 2594 !mDataSource->getUInt32(data_offset + 20, &trex.default_sample_flags)) { in parseChunk() 2907 if (!mDataSource->getUInt32(offset, &size) || size < kAC4MinimumBoxSize) { in parseAC4SpecificBox() [all …]
|
D | ItemTable.cpp | 718 if (!source()->getUInt32(offset, &mWidth) in parse() 719 || !source()->getUInt32(offset + 4, &mHeight)) { in parse() 810 if (!source()->getUInt32(offset, &colour_type)) { in parse() 856 if (!source()->getUInt32(offset, &entryCount)) { in parse() 1085 if (!source()->getUInt32(offset, &item_type)) { in parse()
|
/frameworks/av/media/libstagefright/include/media/stagefright/ |
D | DataSourceBase.h | 50 bool getUInt32(off64_t offset, uint32_t *x);
|
/frameworks/av/include/media/ |
D | DataSourceBase.h | 50 bool getUInt32(off64_t offset, uint32_t *x);
|
D | MediaExtractorPluginHelper.h | 355 bool getUInt32(off64_t offset, uint32_t *x) { in getUInt32() function 398 return getUInt32(offset, x); in getUInt32Var() 416 if (getUInt32(offset, &tmp)) { in getUInt64Var()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/ |
D | GPBDictionary.h | 77 - (BOOL)getUInt32:(nullable uint32_t *)value forKey:(uint32_t)key; 441 - (BOOL)getUInt32:(nullable uint32_t *)value forKey:(int32_t)key; 805 - (BOOL)getUInt32:(nullable uint32_t *)value forKey:(uint64_t)key; 1169 - (BOOL)getUInt32:(nullable uint32_t *)value forKey:(int64_t)key; 1533 - (BOOL)getUInt32:(nullable uint32_t *)value forKey:(BOOL)key; 1897 - (BOOL)getUInt32:(nullable uint32_t *)value forKey:(NSString *)key;
|
D | GPBDictionary.m | 1697 - (BOOL)getUInt32:(nullable uint32_t *)value forKey:(uint32_t)key { 3670 - (BOOL)getUInt32:(nullable uint32_t *)value forKey:(int32_t)key { 5643 - (BOOL)getUInt32:(nullable uint32_t *)value forKey:(uint64_t)key { 7616 - (BOOL)getUInt32:(nullable uint32_t *)value forKey:(int64_t)key { 9593 - (BOOL)getUInt32:(nullable uint32_t *)value forKey:(NSString *)key { 11356 - (BOOL)getUInt32:(uint32_t *)value forKey:(BOOL)key {
|
/frameworks/base/media/jni/ |
D | android_mtp_MtpDatabase.cpp | 517 if (!packet.getUInt32(temp)) return false; in readLongValue()
|