Searched refs:bufSize (Results 1 – 6 of 6) sorted by relevance
| /RevoEX-2.3/build/demos/nwc24demo/src/MsgPrint/ |
| D | MsgPrint.c | 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() [all …]
|
| /RevoEX-2.3/build/demos/wddemo/src/ |
| D | scan.c | 94 static void AnalyzeScanResult( u16* buf, u16 bufSize ); 201 AnalyzeScanResult( u16* buf, u16 bufSize ) in AnalyzeScanResult() argument 217 if( size > bufSize ) in AnalyzeScanResult()
|
| /RevoEX-2.3/build/demos/nwc24demo/src/MsgList/ |
| D | MsgList.c | 134 u32 bufSize; in ListMessageBox() local 152 bufSize = OSRoundUp32B(numMsgs * sizeof(u32)); in ListMessageBox() 153 idListBuf = (u32*)MEMAllocFromAllocator(&Allocator, bufSize); in ListMessageBox()
|
| /RevoEX-2.3/include/revolution/nwc24/ |
| D | NWC24Msg.h | 353 NWC24Err NWC24ReadMsgFromAddr ( const NWC24MsgObj* obj, char* buffer, u32 bufSize ); 355 NWC24Err NWC24ReadMsgToAddr ( const NWC24MsgObj* obj, u32 index, char* buffer, u32 bufSize ); 356 NWC24Err NWC24ReadMsgSubject ( const NWC24MsgObj* obj, char* buffer, u32 bufSize ); 362 NWC24Err NWC24ReadMsgText ( const NWC24MsgObj* obj, char* buffer, u32 bufSize, 364 NWC24Err NWC24ReadMsgTextEx ( const NWC24MsgObj* obj, char* buffer, u32 bufSize, 371 NWC24Err NWC24ReadMsgAttached ( const NWC24MsgObj* obj, u32 index, char* buffer, u32 bufSize );
|
| /RevoEX-2.3/build/demos/nwc24demo/src/MsgSearch/ |
| D | MsgSearch.c | 368 u32 bufSize; in PrintSubject() local 371 err = NWC24GetMsgSubjectSize( msgObj, &bufSize ); in PrintSubject() 378 buffer = (char*)MEMAllocFromAllocator( &s_Allocator, OSRoundUp32B(bufSize) ); in PrintSubject() 379 err = NWC24ReadMsgSubject( msgObj, buffer, bufSize ); in PrintSubject() 386 for ( iBuf = 0; iBuf < bufSize; ++iBuf ) in PrintSubject()
|
| /RevoEX-2.3/build/demos/nwc24demo/src/MsgViewer/ |
| D | MsgViewer.c | 226 u32 bufSize; in GetMsgIdList() local 238 bufSize = OSRoundUp32B( g_numMsgs[mbType] * sizeof(u32) ); in GetMsgIdList() 239 g_idListBuf[mbType] = (u32*)MEMAllocFromAllocator( &DemoAllocator1, bufSize ); in GetMsgIdList()
|