Lines Matching full:pitem
63 NativeItem() : pItem(NULL), pInfo(NULL), bytes(NULL), swapped(NULL), length(0) {}
81 pItem=item;
84 pInfo=::getDataInfo(pItem->data, pItem->length, infoLength, itemHeaderLength, &errorCode);
88 length=pItem->length-itemHeaderLength;
91 bytes=pItem->data+itemHeaderLength;
96 pItem->name, u_errorName(errorCode));
103 swapped=new uint8_t[pItem->length];
105 fprintf(stderr, "icupkg: unable to allocate memory for swapping \"%s\"\n", pItem->name);
108 swap(ds, pItem->data, pItem->length, swapped, &errorCode);
109 pInfo=::getDataInfo(swapped, pItem->length, infoLength, itemHeaderLength, &errorCode);
116 const Item *pItem;
576 Package::enumDependencies(Item *pItem, void *context, CheckDependency check) {
579 const UDataInfo *pInfo=getDataInfo(pItem->data, pItem->length, infoLength, itemHeaderLength, &errorCode);
595 NativeItem nrb(pItem, ures_swap);
596 ures_enumDependencies(pItem->name, nrb.getDataInfo(), nrb.getBytes(), nrb.getLength(), check, context, this, &errorCode);
608 pItem->name, u_errorName(errorCode));
615 const uint8_t *inBytes=pItem->data+itemHeaderLength;
616 int32_t length=pItem->length-itemHeaderLength;
618 ucnv_enumDependencies(ds, pItem->name, pInfo, inBytes, length, check, context, &errorCode);