Home
last modified time | relevance | path

Searched refs:infoLength (Results 1 – 5 of 5) sorted by relevance

/external/icu4c/tools/toolutil/
Dpkgitems.cpp82 int32_t infoLength, itemHeaderLength; in setItem() local
84 pInfo=::getDataInfo(pItem->data, pItem->length, infoLength, itemHeaderLength, &errorCode); in setItem()
109 pInfo=::getDataInfo(swapped, pItem->length, infoLength, itemHeaderLength, &errorCode); in setItem()
577 int32_t infoLength, itemHeaderLength; in enumDependencies() local
579 …const UDataInfo *pInfo=getDataInfo(pItem->data, pItem->length, infoLength, itemHeaderLength, &erro… in enumDependencies()
Dpkg_imp.h32 int32_t &infoLength, int32_t &headerLength,
Dpackage.cpp113 int32_t &infoLength, int32_t &headerLength, in getDataInfo() argument
141 infoLength=pInfo->size; in getDataInfo()
144 infoLength=readSwapUInt16(pInfo->size); in getDataInfo()
148 infoLength<(int32_t)sizeof(UDataInfo) || in getDataInfo()
149 headerLength<(int32_t)(sizeof(pHeader->dataHeader)+infoLength) || in getDataInfo()
163 int32_t infoLength, headerLength; in getTypeEnumForInputData() local
166 pInfo=getDataInfo(data, length, infoLength, headerLength, pErrorCode); in getTypeEnumForInputData()
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
DNetscapePluginHostProxy.mm864 …port_t clientPort, uint64_t serverIdentifier, data_t* infoData, mach_msg_type_number_t* infoLength)
880 *infoLength = [data.get() length];
881 mig_allocate(reinterpret_cast<vm_address_t*>(infoData), *infoLength);
883 memcpy(*infoData, [data.get() bytes], *infoLength);
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
DProgram.cpp2371 size_t infoLength = strlen(info); in appendToInfoLog() local
2375 mInfoLog = new char[infoLength + 1]; in appendToInfoLog()
2381 char *newLog = new char[logLength + infoLength + 1]; in appendToInfoLog()