Home
last modified time | relevance | path

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

/external/icu4c/tools/toolutil/
Dpkgitems.cpp63 NativeItem() : pItem(NULL), pInfo(NULL), bytes(NULL), swapped(NULL), length(0) {} in NativeItem()
81 pItem=item; in setItem()
84 pInfo=::getDataInfo(pItem->data, pItem->length, infoLength, itemHeaderLength, &errorCode); in setItem()
88 length=pItem->length-itemHeaderLength; in setItem()
91 bytes=pItem->data+itemHeaderLength; in setItem()
96 pItem->name, u_errorName(errorCode)); in setItem()
103 swapped=new uint8_t[pItem->length]; in setItem()
105 … fprintf(stderr, "icupkg: unable to allocate memory for swapping \"%s\"\n", pItem->name); in setItem()
108 swap(ds, pItem->data, pItem->length, swapped, &errorCode); in setItem()
109 pInfo=::getDataInfo(swapped, pItem->length, infoLength, itemHeaderLength, &errorCode); in setItem()
[all …]
Dpackage.cpp647 Item *pItem; in writePackage() local
813 for(pItem=items, i=0; i<itemCount; ++pItem, ++i) { in writePackage()
814 int32_t type=makeTypeEnum(pItem->type); in writePackage()
819 pItem->data, pItem->length, pItem->data, in writePackage()
826 length=(int32_t)fwrite(pItem->data, 1, pItem->length, file); in writePackage()
827 if(length!=pItem->length) { in writePackage()
1025 const Item *pItem; in addItems() local
1028 for(pItem=listPkg.items, i=0; i<listPkg.itemCount; ++pItem, ++i) { in addItems()
1029 addItem(pItem->name, pItem->data, pItem->length, FALSE, pItem->type); in addItems()
1065 const Item *pItem; in removeItems() local
[all …]
Dpackage.h127 void enumDependencies(Item *pItem, void *context, CheckDependency check);
/external/sqlite/dist/
Dsqlite3.c20008 struct SrcList_item *pItem = &pSrc->a[k]; in sqlite3VXPrintf() local
20010 if( pItem->zDatabase ){ in sqlite3VXPrintf()
20011 sqlite3StrAccumAppend(pAccum, pItem->zDatabase, -1); in sqlite3VXPrintf()
20014 sqlite3StrAccumAppend(pAccum, pItem->zName, -1); in sqlite3VXPrintf()
73128 struct ExprList_item *pItem;
73130 for(i=p->nExpr, pItem=p->a; i>0; i--, pItem++){
73131 if( sqlite3WalkExpr(pWalker, pItem->pExpr) ) return WRC_Abort;
73164 struct SrcList_item *pItem;
73168 for(i=pSrc->nSrc, pItem=pSrc->a; i>0; i--, pItem++){
73169 if( sqlite3WalkSelect(pWalker, pItem->pSelect) ){
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c20008 struct SrcList_item *pItem = &pSrc->a[k]; in sqlite3VXPrintf() local
20010 if( pItem->zDatabase ){ in sqlite3VXPrintf()
20011 sqlite3StrAccumAppend(pAccum, pItem->zDatabase, -1); in sqlite3VXPrintf()
20014 sqlite3StrAccumAppend(pAccum, pItem->zName, -1); in sqlite3VXPrintf()
73092 struct ExprList_item *pItem;
73094 for(i=p->nExpr, pItem=p->a; i>0; i--, pItem++){
73095 if( sqlite3WalkExpr(pWalker, pItem->pExpr) ) return WRC_Abort;
73128 struct SrcList_item *pItem;
73132 for(i=pSrc->nSrc, pItem=pSrc->a; i>0; i--, pItem++){
73133 if( sqlite3WalkSelect(pWalker, pItem->pSelect) ){
[all …]