Lines Matching refs:bufSize
158 u32 bufSize; in GetIdList() local
182 bufSize = OSRoundUp32B(NumMsgs * sizeof(u32)); in GetIdList()
183 IdListBuf = (u32*)MEMAllocFromAllocator(&Allocator, bufSize); in GetIdList()
391 u32 bufSize; in ViewSubject() local
395 err = NWC24GetMsgSubjectSize(msgObj, &bufSize); in ViewSubject()
402 buffer = (char*)MEMAllocFromAllocator(&Allocator, OSRoundUp32B(bufSize)); in ViewSubject()
403 err = NWC24ReadMsgSubject(msgObj, buffer, bufSize); in ViewSubject()
411 for ( i = 0 ; i < bufSize ; ++i ) in ViewSubject()
461 u32 bufSize; in ViewBodyText() local
467 err = NWC24GetMsgTextSize(msgObj, &bufSize); in ViewBodyText()
474 buffer = (char*)MEMAllocFromAllocator(&Allocator, OSRoundUp32B(bufSize)); in ViewBodyText()
475 err = NWC24ReadMsgText(msgObj, buffer, bufSize, &charset, &encoding); in ViewBodyText()
485 for ( i = 0 ; i < bufSize ; ++i ) in ViewBodyText()
503 u32 bufSize; in ViewAttachment() local
518 err = NWC24GetMsgAttachedSize(msgObj, j, &bufSize); in ViewAttachment()
525 buffer = (char*)MEMAllocFromAllocator(&Allocator, OSRoundUp32B(bufSize)); in ViewAttachment()
526 err = NWC24ReadMsgAttached(msgObj, j, buffer, bufSize); in ViewAttachment()
529 OSReport("bufsize = %d\n", bufSize); in ViewAttachment()
544 for ( i = 0 ; i < bufSize ; ++i ) in ViewAttachment()