Searched refs:RetVal (Results 1 – 8 of 8) sorted by relevance
| /trunk/main/vos/source/ |
| H A D | pipe.cxx | 354 sal_Int32 RetVal; in read() local 355 RetVal= osl_receivePipe((*m_pPipeRef)(), in read() 360 if(RetVal <= 0) in read() 365 BytesToRead -= RetVal; in read() 366 BytesRead += RetVal; in read() 367 pBuffer= (sal_Char*)pBuffer + RetVal; in read() 385 sal_Int32 RetVal; in write() local 387 RetVal= osl_sendPipe((*m_pPipeRef)(), in write() 392 if(RetVal <= 0) in write() 397 BytesToSend -= RetVal; in write() [all …]
|
| H A D | socket.cxx | 1420 sal_Int32 RetVal; in read() local 1421 RetVal= osl_receiveSocket((*m_pSockRef)(), in read() 1427 if(RetVal <= 0) in read() 1432 BytesToRead -= RetVal; in read() 1433 BytesRead += RetVal; in read() 1434 Ptr += RetVal; in read() 1467 sal_Int32 RetVal; in write() local 1469 RetVal= osl_sendSocket((*m_pSockRef)(), in write() 1475 if(RetVal <= 0) in write() 1480 BytesToSend -= RetVal; in write() [all …]
|
| /trunk/main/sal/osl/os2/ |
| H A D | pipe.cxx | 476 sal_Int32 RetVal; in osl_writePipe() local 478 RetVal= osl_sendPipe(pPipe, pBuffer, BytesToSend); in osl_writePipe() 481 if(RetVal <= 0) in osl_writePipe() 486 BytesToSend -= RetVal; in osl_writePipe() 487 BytesSend += RetVal; in osl_writePipe() 488 pBuffer= (sal_Char*)pBuffer + RetVal; in osl_writePipe() 503 sal_Int32 RetVal; in osl_readPipe() local 504 RetVal= osl_receivePipe(pPipe, pBuffer, BytesToRead); in osl_readPipe() 507 if(RetVal <= 0) in osl_readPipe() 512 BytesToRead -= RetVal; in osl_readPipe() [all …]
|
| H A D | socket.c | 2498 sal_Int32 RetVal; in osl_readSocket() local 2499 RetVal= osl_receiveSocket(pSocket, in osl_readSocket() 2505 if(RetVal <= 0) in osl_readSocket() 2510 BytesToRead -= RetVal; in osl_readSocket() 2511 BytesRead += RetVal; in osl_readSocket() 2512 Ptr += RetVal; in osl_readSocket() 2533 sal_Int32 RetVal; in osl_writeSocket() local 2535 RetVal= osl_sendSocket( pSocket,Ptr,BytesToSend,osl_Socket_MsgNormal); in osl_writeSocket() 2538 if(RetVal <= 0) in osl_writeSocket() 2543 BytesToSend -= RetVal; in osl_writeSocket() [all …]
|
| /trunk/main/sal/osl/unx/ |
| H A D | pipe.c | 547 sal_Int32 RetVal; in osl_writePipe() local 549 RetVal= osl_sendPipe(pPipe, pBuffer, BytesToSend); in osl_writePipe() 552 if(RetVal <= 0) in osl_writePipe() 557 BytesToSend -= RetVal; in osl_writePipe() 558 BytesSend += RetVal; in osl_writePipe() 559 pBuffer= (sal_Char*)pBuffer + RetVal; in osl_writePipe() 574 sal_Int32 RetVal; in osl_readPipe() local 575 RetVal= osl_receivePipe(pPipe, pBuffer, BytesToRead); in osl_readPipe() 578 if(RetVal <= 0) in osl_readPipe() 583 BytesToRead -= RetVal; in osl_readPipe() [all …]
|
| H A D | socket.c | 2460 sal_Int32 RetVal; in osl_readSocket() local 2461 RetVal= osl_receiveSocket(pSocket, in osl_readSocket() 2467 if(RetVal <= 0) in osl_readSocket() 2472 BytesToRead -= RetVal; in osl_readSocket() 2473 BytesRead += RetVal; in osl_readSocket() 2474 Ptr += RetVal; in osl_readSocket() 2495 sal_Int32 RetVal; in osl_writeSocket() local 2497 RetVal= osl_sendSocket( pSocket,Ptr,BytesToSend,osl_Socket_MsgNormal); in osl_writeSocket() 2500 if(RetVal <= 0) in osl_writeSocket() 2505 BytesToSend -= RetVal; in osl_writeSocket() [all …]
|
| /trunk/main/sal/osl/w32/ |
| H A D | pipe.c | 571 sal_Int32 RetVal; in osl_writePipe() local 573 RetVal= osl_sendPipe(pPipe, pBuffer, BytesToSend); in osl_writePipe() 576 if(RetVal <= 0) in osl_writePipe() 581 BytesToSend -= RetVal; in osl_writePipe() 582 BytesSend += RetVal; in osl_writePipe() 583 pBuffer= (sal_Char*)pBuffer + RetVal; in osl_writePipe() 598 sal_Int32 RetVal; in osl_readPipe() local 599 RetVal= osl_receivePipe(pPipe, pBuffer, BytesToRead); in osl_readPipe() 602 if(RetVal <= 0) in osl_readPipe() 607 BytesToRead -= RetVal; in osl_readPipe() [all …]
|
| H A D | socket.cxx | 1569 sal_Int32 RetVal; in osl_readSocket() local 1570 RetVal= osl_receiveSocket(pSocket, in osl_readSocket() 1576 if(RetVal <= 0) in osl_readSocket() 1581 BytesToRead -= RetVal; in osl_readSocket() 1582 BytesRead += RetVal; in osl_readSocket() 1583 Ptr += RetVal; in osl_readSocket() 1602 sal_Int32 RetVal; in osl_writeSocket() local 1604 RetVal= osl_sendSocket( pSocket,Ptr,BytesToSend,osl_Socket_MsgNormal); in osl_writeSocket() 1607 if(RetVal <= 0) in osl_writeSocket() 1612 BytesToSend -= RetVal; in osl_writeSocket() [all …]
|